Searched refs:thisRule (Results 1 – 6 of 6) sorted by relevance
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/ |
D | RBBIMonkeyTest.java | 188 BreakRule thisRule = new BreakRule(); in addRule() local 190 thisRule.fName = name; in addRule() 191 thisRule.fRule = definition; in addRule() 277 thisRule.fExpandedRule = ruleWithFlattenedSets.toString(); in addRule() 283 thisRule.fExpandedRule = thisRule.fExpandedRule.replace("÷", "()"); in addRule() 284 if (thisRule.fExpandedRule.indexOf("÷") != -1) { in addRule() 294 thisRule.fExpandedRule = thisRule.fExpandedRule.replace("[]", "[a&&[^a]]"); in addRule() 305 StringBuilder sb = new StringBuilder(thisRule.fExpandedRule); in addRule() 314 thisRule.fExpandedRule = sb.toString(); in addRule() 319 thisRule.fExpandedRule = thisRule.fExpandedRule.replace("#", "\\#"); in addRule() [all …]
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/ |
D | RBBIMonkeyTest.java | 191 BreakRule thisRule = new BreakRule(); in addRule() local 193 thisRule.fName = name; in addRule() 194 thisRule.fRule = definition; in addRule() 280 thisRule.fExpandedRule = ruleWithFlattenedSets.toString(); in addRule() 286 thisRule.fExpandedRule = thisRule.fExpandedRule.replace("÷", "()"); in addRule() 287 if (thisRule.fExpandedRule.indexOf("÷") != -1) { in addRule() 297 thisRule.fExpandedRule = thisRule.fExpandedRule.replace("[]", "[a&&[^a]]"); in addRule() 308 StringBuilder sb = new StringBuilder(thisRule.fExpandedRule); in addRule() 317 thisRule.fExpandedRule = sb.toString(); in addRule() 322 thisRule.fExpandedRule = thisRule.fExpandedRule.replace("#", "\\#"); in addRule() [all …]
|
/external/icu/icu4c/source/test/intltest/ |
D | rbbimonkeytest.cpp | 162 LocalPointer<BreakRule> thisRule(new BreakRule); in addRule() local 163 thisRule->fName = name; in addRule() 164 thisRule->fRule = definition; in addRule() 182 fSetRefsMatcher->appendReplacement(thisRule->fExpandedRule, emptyString, status); in addRule() 183 thisRule->fExpandedRule.append(expansionForName); in addRule() 185 fSetRefsMatcher->appendTail(thisRule->fExpandedRule); in addRule() 190 int32_t dividePos = thisRule->fExpandedRule.indexOf((UChar)0x00f7); in addRule() 192 thisRule->fExpandedRule.replace(dividePos, 1, UnicodeString("(?<BreakPosition>)")); in addRule() 194 if (thisRule->fExpandedRule.indexOf((UChar)0x00f7) != -1) { in addRule() 204 while ((where = thisRule->fExpandedRule.indexOf(emptySet, 2, 0)) >= 0) { in addRule() [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | RBBIRuleScanner.java | 254 RBBINode thisRule = fNodeStack[fNodeStackPtr]; in doParseActions() local 262 catNode.fLeftChild = thisRule; in doParseActions() 267 thisRule = catNode; in doParseActions() 275 thisRule.fRuleRoot = true; in doParseActions() 281 thisRule.fChainIn = true; in doParseActions() 303 thisRule = fNodeStack[fNodeStackPtr]; in doParseActions() 308 orNode.fRightChild = thisRule; in doParseActions() 309 thisRule.fParent = orNode; in doParseActions()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | RBBIRuleScanner.java | 253 RBBINode thisRule = fNodeStack[fNodeStackPtr]; in doParseActions() local 261 catNode.fLeftChild = thisRule; in doParseActions() 266 thisRule = catNode; in doParseActions() 274 thisRule.fRuleRoot = true; in doParseActions() 280 thisRule.fChainIn = true; in doParseActions() 302 thisRule = fNodeStack[fNodeStackPtr]; in doParseActions() 307 orNode.fRightChild = thisRule; in doParseActions() 308 thisRule.fParent = orNode; in doParseActions()
|
/external/icu/icu4c/source/common/ |
D | rbbiscan.cpp | 333 RBBINode *thisRule = fNodeStack[fNodeStackPtr]; in doParseActions() local 344 catNode->fLeftChild = thisRule; in doParseActions() 349 thisRule = catNode; in doParseActions() 357 thisRule->fRuleRoot = TRUE; in doParseActions() 363 thisRule->fChainIn = TRUE; in doParseActions() 383 RBBINode *thisRule = fNodeStack[fNodeStackPtr]; in doParseActions() local 391 orNode->fRightChild = thisRule; in doParseActions() 392 thisRule->fParent = orNode; in doParseActions()
|