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.java464 …private void doTest(String testString, int start, int gotoffset, int expectedOffset, String expect… in doTest() argument
467 if (gotoffset != expectedOffset) in doTest()
468 errln("ERROR:****returned #" + gotoffset + " instead of #" + expectedOffset); in doTest()
469 if (start <= gotoffset) { in doTest()
470 selected = testString.substring(start, gotoffset); in doTest()
472 selected = testString.substring(gotoffset, start); in doTest()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/
DRBBIAPITest.java467 …private void doTest(String testString, int start, int gotoffset, int expectedOffset, String expect… in doTest() argument
470 if (gotoffset != expectedOffset) in doTest()
471 errln("ERROR:****returned #" + gotoffset + " instead of #" + expectedOffset); in doTest()
472 if (start <= gotoffset) { in doTest()
473 selected = testString.substring(start, gotoffset); in doTest()
475 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.cpp1462 void RBBIAPITest::doTest(UnicodeString& testString, int32_t start, int32_t gotoffset, int32_t expec… in doTest() argument
1466 if(gotoffset != expectedOffset) in doTest()
1467 …errln((UnicodeString)"ERROR:****returned #" + gotoffset + (UnicodeString)" instead of #" + expecte… in doTest()
1468 if(start <= gotoffset){ in doTest()
1469 testString.extractBetween(start, gotoffset, selected); in doTest()
1472 testString.extractBetween(gotoffset, start, selected); in doTest()