Home
last modified time | relevance | path

Searched refs:maLines (Results 1 – 8 of 8) sorted by relevance

/trunk/main/ooxml/source/framework/OOXMLViewer/src/org/apache/openoffice/ooxml/viewer/tokenview/
H A DLineContainer.java30 maLines = new Vector<>(); in LineContainer()
59 int nMax = maLines.size()-1; in GetLineForY()
65 if (nY < maLines.get(nMed).GetTop()) in GetLineForY()
71 if (maLines.get(nIndex).Contains(nY)) in GetLineForY()
72 return maLines.get(nIndex); in GetLineForY()
86 return maLines.get(nLineIndex); in GetLineForOffset()
104 aLines.add(maLines.get(nStartLineIndex)); in GetLinesForOffsets()
107 aLines.add(maLines.get(nIndex)); in GetLinesForOffsets()
117 return maLines.size(); in GetLineCount()
125 return maLines.get(nIndex); in GetLine()
[all …]
H A DTokenView.java55 maLines = new LineContainer<TokenType>(); in TokenView()
74 synchronized(maLines) in paintComponent()
76 aState = maFormatter.FormatText(aG2, maLines); in paintComponent()
140 if (maLines.IsLineInGroup(aLine, maHighlightedGroup0)) in PaintLineHighlight()
142 else if (maLines.IsLineInGroup(aLine, maHighlightedGroup1)) in PaintLineHighlight()
144 else if (maLines.IsLineInGroup(aLine, maHighlightedGroup2)) in PaintLineHighlight()
198 final Line<TokenType> aLine = maLines.GetLineForY(aEvent.getY()); in mouseMoved()
239 return new DocumentFactory<TokenType>(maLines, this); in GetDocumentFactory()
294 UpdateHighlightedLine(maLines.GetLineForY(aPoint.y)); in componentMoved()
318 final Line<TokenType> aLine = maLines.GetLineForOffset(nOffset); in GetRun()
[all …]
H A DDocumentFactory.java41 maLines = aLines; in DocumentFactory()
60 synchronized(maLines) in AddText()
113 maLines.AddLine(maCurrentLine); in StartNewLine()
120 private final LineContainer<TokenType> maLines; field in DocumentFactory
/trunk/main/sw/source/core/doc/
H A Dtblcpy.cxx89 LineStructure maLines; member in __anon076eecfb0111::TableStructure
104 { return maLines.size(); } in getLineCount()
179 maLines( rTable.GetTabLines().Count() ), mnStartCol(USHRT_MAX), in TableStructure()
229 maLines.resize( nEndLn - nStartLn + 1 ); in TableStructure()
242 BoxStructure::iterator pC = maLines[0].begin(); in TableStructure()
243 BoxStructure::iterator pEnd = maLines[0].end(); in TableStructure()
277 maLines.resize( maLines.size() + nSize - 1 ); in addLine()
283 maLines[rLine].reserve( pStartLn->size() ); in addLine()
284 BoxStructure::iterator pSel = maLines[rLine].end(); in addLine()
304 maLines[rLine].reserve( rBoxes.Count() ); in addLine()
[all …]
/trunk/main/svtools/source/edit/
H A Dtextdata.cxx200 for ( sal_uInt16 nLine = 0; nLine < maLines.Count(); nLine++ ) in GetLineNumber()
202 TextLine* pLine = maLines.GetObject( nLine ); in GetLineNumber()
211 DBG_ASSERT( nChar == maLines[ maLines.Count() - 1 ]->GetEnd(), "Index voll daneben!" ); in GetLineNumber()
213 return ( maLines.Count() - 1 ); in GetLineNumber()
219 sal_uInt16 nLines = maLines.Count(); in CorrectValuesBehindLastFormattedLine()
223 const TextLine* pLastFormatted = maLines[ nLastFormattedLine ]; in CorrectValuesBehindLastFormattedLine()
224 const TextLine* pUnformatted = maLines[ nLastFormattedLine+1 ]; in CorrectValuesBehindLastFormattedLine()
239 TextLine* pLine = maLines[ nL ]; in CorrectValuesBehindLastFormattedLine()
H A Dtextdat2.hxx199 TextLines maLines; member in TEParaPortion
230 TextLines& GetLines() { return maLines; } in GetLines()
/trunk/main/sdext/source/presenter/
H A DPresenterTextView.cxx614 maLines(), in PresenterTextParagraph()
674 maLines(), in PresenterTextParagraph()
714 for (sal_Int32 nIndex=0,nCount=maLines.size(); in Paint()
718 Line& rLine (maLines[nIndex]); in Paint()
723 for (sal_Int32 nIndex=0,nCount=maLines.size(); in Paint()
727 Line& rLine (maLines[nIndex]); in Paint()
769 maLines.clear(); in Format()
915 if ( ! maLines.empty()) in AddWord()
948 if (maLines.size() > 0) in AddLine()
950 aLine.mnLineStartCellIndex = maLines.back().mnLineEndCellIndex; in AddLine()
[all …]
H A DPresenterTextView.hxx204 ::std::vector<Line> maLines;