Searched refs:BreakType (Results 1 – 8 of 8) sorted by relevance
/external/skia/modules/skshaper/src/ |
D | SkUnicode_icu.cpp | 53 static UBreakIteratorType convertType(SkUnicode::BreakType type) { in convertType() 55 case SkUnicode::BreakType::kLines: return UBRK_LINE; in convertType() 56 case SkUnicode::BreakType::kGraphemes: return UBRK_CHARACTER; in convertType() 57 case SkUnicode::BreakType::kWords: return UBRK_WORD; in convertType() 189 SkTHashMap<SkUnicode::BreakType, ICUBreakIterator> fBreakCache; 198 ICUBreakIterator makeBreakIterator(SkUnicode::BreakType type) { in makeBreakIterator() 305 … ICUBreakIterator iterator = SkIcuBreakIteratorCache::get().makeBreakIterator(BreakType::kWords); in extractWords() 335 (const char utf8[], int utf8Units, BreakType type, std::function<void(int, int)> setBreak) { in extractPositions() 360 auto status = type == SkUnicode::BreakType::kLines in extractPositions() 367 if (type == SkUnicode::BreakType::kLines) { in extractPositions() [all …]
|
D | SkUnicode.h | 100 enum class BreakType { enum 125 (const char locale[], BreakType breakType) = 0;
|
D | SkShaper_harfbuzz.cpp | 758 auto lineIter = unicode->makeBreakIterator("th", SkUnicode::BreakType::kLines); in MakeHarfBuzz() 762 auto graphIter = unicode->makeBreakIterator("th", SkUnicode::BreakType::kGraphemes); in MakeHarfBuzz()
|
/external/libchrome/base/i18n/ |
D | break_iterator.h | 63 enum BreakType { enum 90 BreakIterator(const StringPiece16& str, BreakType break_type); 171 BreakType break_type_;
|
D | break_iterator.cc | 19 BreakIterator::BreakIterator(const StringPiece16& str, BreakType break_type) in BreakIterator()
|
/external/mesa3d/src/gallium/auxiliary/tgsi/ |
D | tgsi_exec.h | 399 enum tgsi_break_type BreakType; member
|
D | tgsi_exec.c | 3518 if (mach->BreakType == TGSI_EXEC_BREAK_INSIDE_LOOP) { in exec_break() 3524 assert(mach->BreakType == TGSI_EXEC_BREAK_INSIDE_SWITCH); in exec_break() 3544 mach->BreakStack[mach->BreakStackTop++] = mach->BreakType; in exec_switch() 3545 mach->BreakType = TGSI_EXEC_BREAK_INSIDE_SWITCH; in exec_switch() 3595 mach->BreakType = mach->BreakStack[--mach->BreakStackTop]; in exec_endswitch() 5517 mach->BreakStack[mach->BreakStackTop++] = mach->BreakType; in exec_instruction() 5564 mach->BreakType = mach->BreakStack[mach->BreakStackTop]; in exec_instruction() 5724 mach->BreakStack[mach->BreakStackTop++] = mach->BreakType; in exec_instruction() 5725 mach->BreakType = TGSI_EXEC_BREAK_INSIDE_LOOP; in exec_instruction() 5748 mach->BreakType = mach->BreakStack[--mach->BreakStackTop]; in exec_instruction() [all …]
|
/external/skia/modules/skparagraph/src/ |
D | Run.h | 253 enum BreakType { enum
|