Home
last modified time | relevance | path

Searched refs:rbbi (Results 1 - 25 of 25) sorted by relevance

/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/rbbi/
H A DRBBITest.java10 package ohos.global.icu.dev.test.rbbi;
223 RuleBasedBreakIterator rbbi = new RuleBasedBreakIterator(".;"); in TestClone()
225 rbbi.setText((CharacterIterator) null); in TestClone()
226 if (((RuleBasedBreakIterator) rbbi.clone()).getText() != null) in TestClone()
239 RuleBasedBreakIterator rbbi = new RuleBasedBreakIterator(".;"); in TestEquals()
245 rbbi.setText((CharacterIterator) null); in TestEquals()
246 if (rbbi.equals(rbbi1)) { in TestEquals()
253 if (!rbbi.equals(rbbi1)) { in TestEquals()
259 if (rbbi.equals(0)) { in TestEquals()
262 if (rbbi in TestEquals()
[all...]
H A DBreakIteratorRules_en_US_TEST.java10 package ohos.global.icu.dev.test.rbbi;
23 private static final String DATA_NAME = "/ohos/global/icu/dev/data/rbbi/english.dict";
H A DAbstractBreakIteratorTests.java4 package ohos.global.icu.dev.test.rbbi;
H A DBreakIteratorRegTest.java10 package ohos.global.icu.dev.test.rbbi;
H A DRBBITestExtended.java11 package ohos.global.icu.dev.test.rbbi;
H A DBreakIteratorTest.java10 package ohos.global.icu.dev.test.rbbi;
H A DRBBIAPITest.java12 * Port From: ICU4C v1.8.1 : rbbi : RBBIAPITest
16 package ohos.global.icu.dev.test.rbbi;
H A DRBBIMonkeyTest.java5 package ohos.global.icu.dev.test.rbbi;
H A DRBBITestMonkey.java10 package ohos.global.icu.dev.test.rbbi;
2152 // a data item that can be included in the rbbi test data file. in RunMonkey()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
H A DRBBITest.java9 package com.ibm.icu.dev.test.rbbi;
226 RuleBasedBreakIterator rbbi = new RuleBasedBreakIterator(".;"); in TestClone()
228 rbbi.setText((CharacterIterator) null); in TestClone()
229 if (((RuleBasedBreakIterator) rbbi.clone()).getText() != null) in TestClone()
242 RuleBasedBreakIterator rbbi = new RuleBasedBreakIterator(".;"); in TestEquals()
248 rbbi.setText((CharacterIterator) null); in TestEquals()
249 if (rbbi.equals(rbbi1)) { in TestEquals()
256 if (!rbbi.equals(rbbi1)) { in TestEquals()
262 if (rbbi.equals(0)) { in TestEquals()
265 if (rbbi in TestEquals()
[all...]
H A DBreakIteratorRules_en_US_TEST.java9 package com.ibm.icu.dev.test.rbbi;
20 private static final String DATA_NAME = "/com/ibm/icu/dev/data/rbbi/english.dict";
H A DAbstractBreakIteratorTests.java3 package com.ibm.icu.dev.test.rbbi;
H A DLSTMBreakEngineTest.java3 package com.ibm.icu.dev.test.rbbi;
62 InputStream is = LSTMBreakEngineTest.class.getResourceAsStream("/com/ibm/icu/dev/test/rbbi/" + filename); in runTestFromFile()
H A DRBBILSTMTest.java3 package com.ibm.icu.dev.test.rbbi;
50 InputStream is = RBBILSTMTest.class.getResourceAsStream("/com/ibm/icu/dev/test/rbbi/" + filename); in runTestFromFile()
H A DBreakIteratorRegTest.java9 package com.ibm.icu.dev.test.rbbi;
H A DBreakIteratorTest.java9 package com.ibm.icu.dev.test.rbbi;
H A DRBBITestExtended.java10 package com.ibm.icu.dev.test.rbbi;
H A DRBBIAPITest.java11 * Port From: ICU4C v1.8.1 : rbbi : RBBIAPITest
15 package com.ibm.icu.dev.test.rbbi;
H A DRBBIMonkeyTest.java4 package com.ibm.icu.dev.test.rbbi;
H A DRBBITestMonkey.java9 package com.ibm.icu.dev.test.rbbi;
2159 // a data item that can be included in the rbbi test data file. in RunMonkey()
/third_party/icu/icu4c/source/common/
H A Dubrk.cpp20 #include "unicode/rbbi.h"
338 RuleBasedBreakIterator* rbbi; in ubrk_getBinaryRules() local
339 if ((rbbi = dynamic_cast<RuleBasedBreakIterator*>(reinterpret_cast<BreakIterator*>(bi))) == NULL) { in ubrk_getBinaryRules()
344 const uint8_t * returnedRules = rbbi->getBinaryRules(rulesLength); in ubrk_getBinaryRules()
/third_party/node/deps/icu-small/source/common/
H A Dubrk.cpp20 #include "unicode/rbbi.h"
338 RuleBasedBreakIterator* rbbi; in ubrk_getBinaryRules() local
339 if ((rbbi = dynamic_cast<RuleBasedBreakIterator*>(reinterpret_cast<BreakIterator*>(bi))) == nullptr) { in ubrk_getBinaryRules()
344 const uint8_t * returnedRules = rbbi->getBinaryRules(rulesLength); in ubrk_getBinaryRules()
/third_party/skia/third_party/externals/icu/source/common/
H A Dubrk.cpp20 #include "unicode/rbbi.h"
346 RuleBasedBreakIterator* rbbi; in ubrk_getBinaryRules() local
347 if ((rbbi = dynamic_cast<RuleBasedBreakIterator*>(reinterpret_cast<BreakIterator*>(bi))) == NULL) { in ubrk_getBinaryRules()
352 const uint8_t * returnedRules = rbbi->getBinaryRules(rulesLength); in ubrk_getBinaryRules()
/third_party/icu/icu4c/source/test/intltest/
H A Drbbiapts.cpp18 #include "unicode/rbbi.h"
1080 RuleBasedBreakIterator *rbbi = dynamic_cast<RuleBasedBreakIterator *>(bi.getAlias()); in TestGetBinaryRules() local
1081 if (rbbi == NULL) { in TestGetBinaryRules()
1088 rbbi->setText(helloWorld); in TestGetBinaryRules()
1097 const uint8_t *binRules = rbbi->getBinaryRules(ruleLength); in TestGetBinaryRules()
H A Drbbitst.cpp28 #include "unicode/rbbi.h"
3395 // intltest rbbi/RBBITest/TestMonkey@"type=line loop=-1"
4146 // a data item that can be included in the rbbi test data file. in RunMonkey()
4404 RuleBasedBreakIterator rbbi(ruleStr, parseError, status); in TestBug12932()
4930 // Test that both compact (8 bit) and full sized (16 bit) rbbi tables work, and

Completed in 29 milliseconds