Searched refs:thisRule (Results 1 – 6 of 6) sorted by relevance
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/ |
D | RBBIMonkeyTest.java | 192 BreakRule thisRule = new BreakRule(); in addRule() local 194 thisRule.fName = name; in addRule() 195 thisRule.fRule = definition; in addRule() 230 thisRule.fInitialMatchOnly = true; in addRule() 289 thisRule.fExpandedRule = ruleWithFlattenedSets.toString(); in addRule() 295 thisRule.fExpandedRule = thisRule.fExpandedRule.replace("÷", "()"); in addRule() 296 if (thisRule.fExpandedRule.indexOf("÷") != -1) { in addRule() 306 thisRule.fExpandedRule = thisRule.fExpandedRule.replace("[]", "[a&&[^a]]"); in addRule() 312 … thisRule.fExpandedRule = thisRule.fExpandedRule.replaceAll("\\\\u([0-9A-Fa-f]{4})", "\\\\x{$1}"); in addRule() 313 …thisRule.fExpandedRule = thisRule.fExpandedRule.replaceAll("\\\\U00([0-9A-Fa-f]{6})", "\\\\x{$1}"); in addRule() [all …]
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/ |
D | RBBIMonkeyTest.java | 189 BreakRule thisRule = new BreakRule(); in addRule() local 191 thisRule.fName = name; in addRule() 192 thisRule.fRule = definition; in addRule() 227 thisRule.fInitialMatchOnly = true; in addRule() 286 thisRule.fExpandedRule = ruleWithFlattenedSets.toString(); in addRule() 292 thisRule.fExpandedRule = thisRule.fExpandedRule.replace("÷", "()"); in addRule() 293 if (thisRule.fExpandedRule.indexOf("÷") != -1) { in addRule() 303 thisRule.fExpandedRule = thisRule.fExpandedRule.replace("[]", "[a&&[^a]]"); in addRule() 309 … thisRule.fExpandedRule = thisRule.fExpandedRule.replaceAll("\\\\u([0-9A-Fa-f]{4})", "\\\\x{$1}"); in addRule() 310 …thisRule.fExpandedRule = thisRule.fExpandedRule.replaceAll("\\\\U00([0-9A-Fa-f]{6})", "\\\\x{$1}"); 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() 189 if (thisRule->fExpandedRule.charAt(0) == u'^') { in addRule() 190 thisRule->fInitialMatchOnly = true; in addRule() 191 thisRule->fExpandedRule.remove(0, 1); in addRule() 192 thisRule->fExpandedRule.trim(); in addRule() [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | RBBIRuleScanner.java | 255 RBBINode thisRule = fNodeStack[fNodeStackPtr]; in doParseActions() local 263 catNode.fLeftChild = thisRule; in doParseActions() 268 thisRule = catNode; in doParseActions() 276 thisRule.fRuleRoot = true; in doParseActions() 282 thisRule.fChainIn = true; in doParseActions() 304 thisRule = fNodeStack[fNodeStackPtr]; in doParseActions() 309 orNode.fRightChild = thisRule; in doParseActions() 310 thisRule.fParent = orNode; in doParseActions()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/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/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 thisRule = fNodeStack[fNodeStackPtr]; in doParseActions() 391 orNode->fRightChild = thisRule; in doParseActions() 392 thisRule->fParent = orNode; in doParseActions()
|