Searched refs:rBreaks (Results 1 – 7 of 7) sorted by relevance
/trunk/main/sc/source/core/data/ |
H A D | table5.cxx | 325 void ScTable::SetRowManualBreaks( const ::std::set<SCROW>& rBreaks ) in SetRowManualBreaks() argument 327 maRowManualBreaks = rBreaks; in SetRowManualBreaks() 333 void ScTable::SetColManualBreaks( const ::std::set<SCCOL>& rBreaks ) in SetColManualBreaks() argument 335 maColManualBreaks = rBreaks; in SetColManualBreaks() 341 void ScTable::GetAllRowBreaks(set<SCROW>& rBreaks, bool bPage, bool bManual) const in GetAllRowBreaks() argument 344 rBreaks = maRowPageBreaks; in GetAllRowBreaks() 349 … copy(maRowManualBreaks.begin(), maRowManualBreaks.end(), inserter(rBreaks, rBreaks.begin())); in GetAllRowBreaks() 353 void ScTable::GetAllColBreaks(set<SCCOL>& rBreaks, bool bPage, bool bManual) const in GetAllColBreaks() argument 356 rBreaks = maColPageBreaks; in GetAllColBreaks() 361 … copy(maColManualBreaks.begin(), maColManualBreaks.end(), inserter(rBreaks, rBreaks.begin())); in GetAllColBreaks()
|
H A D | dociter.cxx | 2309 ScRowBreakIterator::ScRowBreakIterator(set<SCROW>& rBreaks) : in ScRowBreakIterator() argument 2310 mrBreaks(rBreaks), in ScRowBreakIterator() 2311 maItr(rBreaks.begin()), maEnd(rBreaks.end()) in ScRowBreakIterator()
|
H A D | document.cxx | 3520 void ScDocument::GetAllRowBreaks(set<SCROW>& rBreaks, SCTAB nTab, bool bPage, bool bManual) const in GetAllRowBreaks() argument 3525 pTab[nTab]->GetAllRowBreaks(rBreaks, bPage, bManual); in GetAllRowBreaks() 3528 void ScDocument::GetAllColBreaks(set<SCCOL>& rBreaks, SCTAB nTab, bool bPage, bool bManual) const in GetAllColBreaks() argument 3533 pTab[nTab]->GetAllColBreaks(rBreaks, bPage, bManual); in GetAllColBreaks()
|
/trunk/main/sc/inc/ |
H A D | table.hxx | 707 void SetRowManualBreaks( const ::std::set<SCROW>& rBreaks ); 708 void SetColManualBreaks( const ::std::set<SCCOL>& rBreaks ); 710 void GetAllRowBreaks(::std::set<SCROW>& rBreaks, bool bPage, bool bManual) const; 711 void GetAllColBreaks(::std::set<SCCOL>& rBreaks, bool bPage, bool bManual) const;
|
H A D | dociter.hxx | 555 explicit ScRowBreakIterator(::std::set<SCROW>& rBreaks);
|
H A D | document.hxx | 1380 …SC_DLLPUBLIC void GetAllRowBreaks(::std::set<SCROW>& rBreaks, SCTAB nTab, bool bPage, bo… 1381 …SC_DLLPUBLIC void GetAllColBreaks(::std::set<SCCOL>& rBreaks, SCTAB nTab, bool bPage, bo…
|
/trunk/main/sw/source/core/doc/ |
H A D | docedt.cxx | 1487 lcl_CalcBreaks( ::std::vector<xub_StrLen> & rBreaks, SwPaM const & rPam ) in lcl_CalcBreaks() argument 1508 rBreaks.push_back(i); in lcl_CalcBreaks()
|
Completed in 79 milliseconds