Searched refs:CountChars (Results 1 – 10 of 10) sorted by relevance
/external/pdfium/core/fpdftext/ |
D | cpdf_textpage.h | 67 int CountChars() const; 82 WideString GetAllPageText() const { return GetPageText(0, CountChars()); } in GetAllPageText()
|
D | cpdf_textpage.cpp | 254 const int nCount = CountChars(); in Init() 284 int CPDF_TextPage::CountChars() const { in CountChars() function in CPDF_TextPage 316 const int nCharListSize = CountChars(); in GetRectArray() 361 const int nCount = CountChars(); in GetIndexAtPos() 450 if (start < 0 || start >= CountChars() || count <= 0 || m_CharList.empty() || in GetPageText() 455 const int count_chars = CountChars(); in GetPageText() 953 if (pTextObj->CountChars() == 1) { in ProcessTextObject() 1133 size_t nChars = pTextObj->CountChars(); in GetTextObjectWritingMode() 1285 if (pObj->CountChars() == 1 && IsHyphenCode(curChar) && IsHyphen(curChar)) in ProcessInsertObject()
|
D | cpdf_linkextract.cpp | 119 const int nTotalChar = m_pTextPage->CountChars(); in ExtractLinks()
|
/external/pdfium/core/fpdfapi/page/ |
D | cpdf_textobject.cpp | 61 size_t CPDF_TextObject::CountChars() const { in CountChars() function in CPDF_TextObject 108 for (size_t i = 0, sz = CountChars(); i < sz; ++i) { in CountWords() 135 for (size_t i = 0, sz = CountChars(); i < sz; ++i) { in GetWordString()
|
D | cpdf_textobject.h | 45 size_t CountChars() const;
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Windows/ |
D | Path.inc | 352 DWORD CountChars = ::GetFinalPathNameByHandleW( 354 if (CountChars > Buffer.capacity()) { 357 Buffer.reserve(CountChars); 358 CountChars = ::GetFinalPathNameByHandleW( 361 if (CountChars == 0) 363 Buffer.set_size(CountChars); 377 DWORD CountChars = Buffer.size(); 378 if (CountChars >= 8 && ::memcmp(Data, L"\\\\?\\UNC\\", 16) == 0) { 380 CountChars -= 6; 383 } else if (CountChars >= 4 && ::memcmp(Data, L"\\\\?\\", 8) == 0) { [all …]
|
/external/llvm-project/llvm/lib/Support/Windows/ |
D | Path.inc | 353 DWORD CountChars = ::GetFinalPathNameByHandleW( 355 if (CountChars && CountChars >= Buffer.capacity()) { 358 Buffer.reserve(CountChars); 359 CountChars = ::GetFinalPathNameByHandleW( 362 if (CountChars == 0) 364 Buffer.set_size(CountChars); 378 DWORD CountChars = Buffer.size(); 379 if (CountChars >= 8 && ::memcmp(Data, L"\\\\?\\UNC\\", 16) == 0) { 381 CountChars -= 6; 384 } else if (CountChars >= 4 && ::memcmp(Data, L"\\\\?\\", 8) == 0) { [all …]
|
/external/pdfium/fpdfsdk/ |
D | fpdf_text.cpp | 69 return textpage->CountChars(); in FPDFText_CountChars() 340 int char_available = textpage->CountChars() - start_index; in FPDFText_GetText()
|
/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))
|