Home
last modified time | relevance | path

Searched refs:gotoffset (Results 1 – 4 of 4) sorted by relevance

/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
DRBBIAPITest.java462 …private void doTest(String testString, int start, int gotoffset, int expectedOffset, String expect… in doTest() argument
465 if (gotoffset != expectedOffset) in doTest()
466 errln("ERROR:****returned #" + gotoffset + " instead of #" + expectedOffset); in doTest()
467 if (start <= gotoffset) { in doTest()
468 selected = testString.substring(start, gotoffset); in doTest()
470 selected = testString.substring(gotoffset, start); in doTest()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/
DRBBIAPITest.java463 …private void doTest(String testString, int start, int gotoffset, int expectedOffset, String expect… in doTest() argument
466 if (gotoffset != expectedOffset) in doTest()
467 errln("ERROR:****returned #" + gotoffset + " instead of #" + expectedOffset); in doTest()
468 if (start <= gotoffset) { in doTest()
469 selected = testString.substring(start, gotoffset); in doTest()
471 selected = testString.substring(gotoffset, start); in doTest()
/external/icu/icu4c/source/test/intltest/
Drbbiapts.h100 …void doTest(UnicodeString& testString, int32_t start, int32_t gotoffset, int32_t expectedOffset, c…
Drbbiapts.cpp1456 void RBBIAPITest::doTest(UnicodeString& testString, int32_t start, int32_t gotoffset, int32_t expec… in doTest() argument
1460 if(gotoffset != expectedOffset) in doTest()
1461 …errln((UnicodeString)"ERROR:****returned #" + gotoffset + (UnicodeString)" instead of #" + expecte… in doTest()
1462 if(start <= gotoffset){ in doTest()
1463 testString.extractBetween(start, gotoffset, selected); in doTest()
1466 testString.extractBetween(gotoffset, start, selected); in doTest()