Searched refs:iCharPos (Results 1 - 3 of 3) sorted by relevance
/external/pdfium/xfa/fgas/layout/ |
H A D | cfx_rtfbreak.cpp | 637 int32_t iCharPos = GetBreakPos(curChars, iEndPos, bAllChars, false); local 638 if (iCharPos < 0) 639 iCharPos = 0; 641 ++iCharPos; 642 if (iCharPos >= iCount) { 644 curChars[iCharPos - 1].m_nBreakType = FX_LBT_UNKNOWN; 649 std::vector<CFX_Char>(curChars.begin() + iCharPos, curChars.end()); 650 curChars.erase(curChars.begin() + iCharPos, curChars.end()); 654 curChars[iCharPos - 1].m_nBreakType = FX_LBT_UNKNOWN;
|
H A D | cfx_txtbreak.cpp | 608 int32_t iCharPos = GetBreakPos(curChars, iEndPos, bAllChars, false); local 609 if (iCharPos < 0) 610 iCharPos = 0; 612 iCharPos++; 613 if (iCharPos >= iCount) { 615 CFX_Char* pTC = &curChars[iCharPos - 1]; 621 std::vector<CFX_Char>(curChars.begin() + iCharPos, curChars.end()); 622 curChars.erase(curChars.begin() + iCharPos, curChars.end()); 624 CFX_Char* pTC = &curChars[iCharPos - 1];
|
/external/harfbuzz_ng/src/ |
H A D | hb-uniscribe.cc | 860 unsigned int chars_offset = items[i].iCharPos; 861 unsigned int item_chars_len = items[i + 1].iCharPos - chars_offset;
|
Completed in 97 milliseconds