Home
last modified time | relevance | path

Searched refs:breakType (Results 1 – 10 of 10) sorted by relevance

/third_party/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/
DBreakIteratorPerformanceTest.java124 final String breakType) { in createTestICU() argument
132 … throw new RuntimeException("ICU4J BreakIterator gave the wrong answer for " + breakType + " " in createTestICU()
135 … throw new RuntimeException("ICU4J BreakIterator gave the wrong number of " + breakType in createTestICU()
145 …eateTestJava(final java.text.BreakIterator jIter, final String[] correct, final String breakType) {
152 … throw new RuntimeException("Java BreakIterator gave the wrong answer for " + breakType + " "
155 … throw new RuntimeException("Java BreakIterator gave the wrong number of " + breakType
/third_party/skia/modules/skunicode/include/
DSkUnicode.h107 LineBreakBefore(Position pos, LineBreakType breakType) in LineBreakBefore()
108 : pos(pos), breakType(breakType) { } in LineBreakBefore()
110 LineBreakType breakType; member
126 (const char locale[], BreakType breakType) = 0;
/third_party/skia/modules/skunicode/src/
DSkUnicode_icu.cpp428 BreakType breakType) override { in makeBreakIterator() argument
430 ICUBreakIterator iterator(sk_ubrk_open(convertType(breakType), locale, nullptr, 0, in makeBreakIterator()
438 std::unique_ptr<SkBreakIterator> makeBreakIterator(BreakType breakType) override { in makeBreakIterator() argument
439 return makeBreakIterator(sk_uloc_getDefault(), breakType); in makeBreakIterator()
/third_party/icu/icu4c/source/test/intltest/
Drbbitst.cpp3922 UnicodeString breakType = "all"; in TestMonkey() local
3937 breakType = m.group(1, status); in TestMonkey()
3963 if (breakType == "char" || breakType == "all") { in TestMonkey()
3968 if (breakType == "all" && useUText==FALSE) { in TestMonkey()
3979 if (breakType == "word" || breakType == "all") { in TestMonkey()
3992 if (breakType == "line" || breakType == "all") { in TestMonkey()
4008 if (breakType == "sent" || breakType == "all" ) { in TestMonkey()
Dssearch.cpp1424 UnicodeString breakType = m.group(1, status); in monkeyTest() local
1427 if (breakType == strengthNames[s]) { in monkeyTest()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/lang/
DUCharacterCaseTest.java338 int breakType = Integer.parseInt(TITLE_DATA_[i++]); in TestTitle() local
341 breakType >= 0 ? in TestTitle()
342 BreakIterator.getBreakInstance(locale, breakType) : in TestTitle()
343 breakType == -2 ? in TestTitle()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
DUCharacterCaseTest.java335 int breakType = Integer.parseInt(TITLE_DATA_[i++]); in TestTitle() local
338 breakType >= 0 ? in TestTitle()
339 BreakIterator.getBreakInstance(locale, breakType) : in TestTitle()
340 breakType == -2 ? in TestTitle()
/third_party/node/lib/internal/debugger/
Dinspect_repl.js846 const breakType = reason === 'other' ? 'break' : reason;
850 const header = `${breakType} in ${scriptUrl}:${lineNumber + 1}`;
/third_party/icu/docs/userguide/boundaryanalysis/
Dindex.md390 int breakType = bi.getRuleStatus();
391 if (breakType != UBRK_WORD_NONE) {
/third_party/skia/modules/skparagraph/src/
DParagraphImpl.cpp289 …fCodeUnitProperties[lineBreak.pos] |= lineBreak.breakType == SkUnicode::LineBreakType::kHardLineBr… in computeCodeUnitProperties()