Home
last modified time | relevance | path

Searched refs:CountChars (Results 1 – 16 of 16) sorted by relevance

/external/pdfium/fpdfsdk/
Dfpdftext.cpp77 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/
Dcpdf_textpage.h101 int CountChars() const;
111 WideString GetAllPageText() const { return GetPageText(0, CountChars()); } in GetAllPageText()
Dcpdf_textpage.cpp207 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()
Dcpdf_linkextract.cpp127 int nTotalChar = m_pTextPage->CountChars(); in ParseLink()
Dcpdf_textpagefind.cpp45 int nCount = pTextPage->CountChars(); in CPDF_TextPageFind()
/external/pdfium/xfa/fgas/layout/
Dcfx_rtfbreak.cpp86 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()
Dcfx_breakline.h20 int32_t CountChars() const;
Dcfx_breakline.cpp15 int32_t CFX_BreakLine::CountChars() const { in CountChars() function in CFX_BreakLine
Dcfx_txtbreak.cpp219 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()
Dcfx_break.cpp98 int32_t iCount = m_pCurLine->CountChars(); in SetBreakStatus()
/external/pdfium/core/fpdfapi/page/
Dcpdf_textobject.h43 size_t CountChars() const;
Dcpdf_textobject.cpp58 size_t CPDF_TextObject::CountChars() const { in CountChars() function in CPDF_TextObject
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/Windows/
DPath.inc353 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/
DPath.inc738 DWORD CountChars =
741 if (CountChars > 0 && CountChars < MAX_PATH) {
744 if (!UTF16ToUTF8(RealPathUTF16, CountChars, RealPathUTF8))
/external/llvm/lib/Support/Windows/
DPath.inc744 DWORD CountChars =
747 if (CountChars > 0 && CountChars < MAX_PATH) {
750 if (!UTF16ToUTF8(RealPathUTF16, CountChars, RealPathUTF8))
/external/pdfium/fxjs/
Dcjs_document.cpp1336 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()