Searched refs:CountChars (Results 1 – 16 of 16) sorted by relevance
/external/pdfium/fpdfsdk/ |
D | fpdftext.cpp | 77 return textpage->CountChars(); in FPDFText_CountChars() 86 if (index < 0 || index >= textpage->CountChars()) in FPDFText_GetUnicode() 100 if (index < 0 || index >= textpage->CountChars()) in FPDFText_GetFontSize() 118 if (index >= textpage->CountChars()) in FPDFText_GetCharBox() 139 if (index < 0 || index >= textpage->CountChars()) in FPDFText_GetCharOrigin() 173 int char_available = textpage->CountChars() - char_start; in FPDFText_GetText()
|
/external/pdfium/core/fpdftext/ |
D | cpdf_textpage.h | 101 int CountChars() const; 111 WideString GetAllPageText() const { return GetPageText(0, CountChars()); } in GetAllPageText()
|
D | cpdf_textpage.cpp | 207 int CPDF_TextPage::CountChars() const { in CountChars() function in CPDF_TextPage 440 if (start < 0 || start >= CountChars() || count <= 0 || !m_bIsParsed || in GetPageText() 449 count = std::min(count, CountChars() - start); in GetPageText() 978 if (pTextObj->CountChars() == 1) { in ProcessTextObject() 1166 size_t nChars = pTextObj->CountChars(); in GetTextObjectWritingMode() 1332 if (pObj->CountChars() == 1 && (0x2D == curChar || 0xAD == curChar) && in ProcessInsertObject()
|
D | cpdf_linkextract.cpp | 127 int nTotalChar = m_pTextPage->CountChars(); in ParseLink()
|
D | cpdf_textpagefind.cpp | 45 int nCount = pTextPage->CountChars(); in CPDF_TextPageFind()
|
/external/pdfium/xfa/fgas/layout/ |
D | cfx_rtfbreak.cpp | 86 int32_t iCount = m_pCurLine->CountChars(); in AppendChar() 264 int32_t iCount = m_pCurLine->CountChars(); in EndBreak() 297 const CFX_Char* tc = m_pCurLine->GetChar(m_pCurLine->CountChars() - 1); in EndBreak_SplitLine() 323 int32_t iLast = m_pCurLine->CountChars() - 1; in EndBreak_SplitLine() 365 int32_t iCount = m_pCurLine->CountChars(); in EndBreak_BidiLine() 631 int32_t iCount = pCurLine->CountChars(); in SplitTextLine()
|
D | cfx_breakline.h | 20 int32_t CountChars() const;
|
D | cfx_breakline.cpp | 15 int32_t CFX_BreakLine::CountChars() const { in CountChars() function in CFX_BreakLine
|
D | cfx_txtbreak.cpp | 219 int32_t iCount = m_pCurLine->CountChars(); in AppendChar() 263 int32_t iCount = m_pCurLine->CountChars(); in EndBreak_SplitLine() 280 iCount = m_pCurLine->CountChars(); in EndBreak_SplitLine() 295 int32_t iCount = m_pCurLine->CountChars(); in EndBreak_BidiLine() 486 int32_t iCount = m_pCurLine->CountChars(); in EndBreak() 602 int32_t iCount = pCurLine->CountChars(); in SplitTextLine()
|
D | cfx_break.cpp | 98 int32_t iCount = m_pCurLine->CountChars(); in SetBreakStatus()
|
/external/pdfium/core/fpdfapi/page/ |
D | cpdf_textobject.h | 43 size_t CountChars() const;
|
D | cpdf_textobject.cpp | 58 size_t CPDF_TextObject::CountChars() const { in CountChars() function in CPDF_TextObject
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/Windows/ |
D | Path.inc | 353 DWORD CountChars = ::GetFinalPathNameByHandleW( 355 if (CountChars > Buffer.capacity()) { 358 Buffer.reserve(CountChars); 359 CountChars = ::GetFinalPathNameByHandleW( 362 if (CountChars == 0) 364 Buffer.set_size(CountChars); 376 DWORD CountChars = Buffer.size(); 377 if (CountChars >= 4) { 379 CountChars -= 4; 385 return UTF16ToUTF8(Data, CountChars, RealPath);
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/Windows/ |
D | Path.inc | 738 DWORD CountChars = 741 if (CountChars > 0 && CountChars < MAX_PATH) { 744 if (!UTF16ToUTF8(RealPathUTF16, CountChars, RealPathUTF8))
|
/external/llvm/lib/Support/Windows/ |
D | Path.inc | 744 DWORD CountChars = 747 if (CountChars > 0 && CountChars < MAX_PATH) { 750 if (!UTF16ToUTF8(RealPathUTF16, CountChars, RealPathUTF8))
|
/external/pdfium/fxjs/ |
D | cjs_document.cpp | 1336 for (size_t i = 0, sz = pTextObj->CountChars(); i < sz; ++i) { in CountWords() 1368 for (size_t i = 0, sz = pTextObj->CountChars(); i < sz; ++i) { in GetObjWordStr()
|