Home
last modified time | relevance | path

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

/external/pdfium/core/fpdfdoc/
Dcline.cpp9 CLine::CLine() {} in CLine() function in CLine
11 CLine::~CLine() {} in ~CLine()
13 CPVT_WordPlace CLine::GetBeginWordPlace() const { in GetBeginWordPlace()
17 CPVT_WordPlace CLine::GetEndWordPlace() const { in GetEndWordPlace()
22 CPVT_WordPlace CLine::GetPrevWordPlace(const CPVT_WordPlace& place) const { in GetPrevWordPlace()
31 CPVT_WordPlace CLine::GetNextWordPlace(const CPVT_WordPlace& place) const { in GetNextWordPlace()
Dcsection.cpp38 if (CLine* pLine = m_LineArray.GetAt(i)) { in ResetLinePlace()
73 if (CLine* pLine = m_LineArray.GetAt(0)) { in GetBeginWordPlace()
80 if (CLine* pLine = m_LineArray.GetAt(m_LineArray.GetSize() - 1)) { in GetEndWordPlace()
93 if (CLine* pLine = m_LineArray.GetAt(place.nLineIndex)) { in GetPrevWordPlace()
98 if (CLine* pPrevLine = m_LineArray.GetAt(place.nLineIndex - 1)) { in GetPrevWordPlace()
115 if (CLine* pLine = m_LineArray.GetAt(place.nLineIndex)) { in GetNextWordPlace()
117 if (CLine* pNextLine = m_LineArray.GetAt(place.nLineIndex + 1)) { in GetNextWordPlace()
132 if (CLine* pLine = m_LineArray.GetAt(nMid)) { in UpdateWordPlace()
160 if (CLine* pLine = m_LineArray.GetAt(nMid)) { in SearchWordPlace()
200 if (CLine* pLine = m_LineArray.GetAt(lineplace.nLineIndex)) { in SearchWordPlace()
Dclines.cpp21 CLine* CLines::GetAt(int32_t nIndex) const { in GetAt()
38 CLine* pLine = new CLine; in Add()
41 } else if (CLine* pLine = GetAt(m_nTotal)) { in Add()
Dcline.h13 class CLine final {
15 CLine();
16 ~CLine();
Dclines.h15 class CLine; variable
23 CLine* GetAt(int32_t nIndex) const;
31 CPVT_ArrayTemplate<CLine*> m_Lines;
Dctypeset.cpp193 if (CLine* pLine = m_pSection->m_LineArray.GetAt(0)) { in CharArray()
446 if (CLine* pLine = m_pSection->m_LineArray.GetAt(l)) { in OutputLines()
Dcpdf_variabletext.cpp207 if (CLine* pLine = pSection->m_LineArray.GetAt(m_CurPos.nLineIndex)) { in GetLine()
643 if (CLine* pLine = pSection->m_LineArray.GetAt(place.nLineIndex)) in GetLineEndPlace()
743 if (CLine* pLine = pSection->m_LineArray.GetAt(place.nLineIndex)) { in GetLineInfo()
/external/clang/unittests/Tooling/
DCommentHandlerTest.cpp46 unsigned CLine = SM.getSpellingLineNumber(Start, &Invalid); in HandleComment() local
52 Comments.push_back(Comment(C, CLine, CCol)); in HandleComment()