Searched refs:fRB (Results 1 – 12 of 12) sorted by relevance
/external/icu/icu4c/source/common/ |
D | rbbiscan.cpp | 91 fRB = rb; in RBBIRuleScanner() 224 if (U_FAILURE(*fRB->fStatus)) { in doParseActions() 241 if (U_FAILURE(*fRB->fStatus)) { in doParseActions() 300 … fRB->fRules.extractBetween(RHSExprNode->fFirstPos, RHSExprNode->fLastPos, RHSExprNode->fText); in doParseActions() 307 fSymbolTable->addEntry(varRefNode->fText, varRefNode, *fRB->fStatus); in doParseActions() 308 if (U_FAILURE(*fRB->fStatus)) { in doParseActions() 311 UErrorCode t = *fRB->fStatus; in doParseActions() 312 *fRB->fStatus = U_ZERO_ERROR; in doParseActions() 325 if (U_FAILURE(*fRB->fStatus)) { // parse tree rooted in TOS node. in doParseActions() 329 if (fRB->fDebugEnv && uprv_strstr(fRB->fDebugEnv, "rtree")) {printNodeStack("end of rule");} in doParseActions() [all …]
|
D | rbbitblb.cpp | 31 fRB = rb; in RBBITableBuilder() 32 fStatus = fRB->fStatus; in RBBITableBuilder() 82 if (fRB->fDebugEnv && uprv_strstr(fRB->fDebugEnv, "ftree")) { in build() 94 if (fRB->fSetBuilder->sawBOF()) { in build() 140 if (fRB->fDebugEnv && uprv_strstr(fRB->fDebugEnv, "stree")) { in build() 158 if (fRB->fDebugEnv && uprv_strstr(fRB->fDebugEnv, "pos")) { in build() 166 if (fRB->fChainRules) { in build() 173 if (fRB->fSetBuilder->sawBOF()) { in build() 192 if (fRB->fDebugEnv && uprv_strstr(fRB->fDebugEnv, "states")) {printStates();}; in build() 469 if (fRB->fLBCMNoChain) { in calcChainedFollowPos() [all …]
|
D | rbbisetb.cpp | 93 fRB = rb; in RBBISetBuilder() 135 if (fRB->fDebugEnv && uprv_strstr(fRB->fDebugEnv, "usets")) {printSets();} in build() 158 usetNode = (RBBINode *)this->fRB->fUSetNodes->elementAt(ni); in build() 224 if (fRB->fDebugEnv && uprv_strstr(fRB->fDebugEnv, "range")) { printRanges();} in build() 268 usetNode = (RBBINode *)this->fRB->fUSetNodes->elementAt(ni); in build() 283 if (fRB->fDebugEnv && uprv_strstr(fRB->fDebugEnv, "rgroup")) {printRangeGroups();} in build() 284 if (fRB->fDebugEnv && uprv_strstr(fRB->fDebugEnv, "esets")) {printSets();} in build() 532 usetNode = (RBBINode *)fRB->fUSetNodes->elementAt(i); in printSets()
|
D | rbbisetb.h | 107 RBBIRuleBuilder *fRB; // The RBBI Rule Compiler that owns us. variable
|
D | rbbiscan.h | 97 RBBIRuleBuilder *fRB; // The rule builder that we are part of. variable
|
D | rbbitblb.h | 87 RBBIRuleBuilder *fRB;
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | RBBITableBuilder.java | 66 private RBBIRuleBuilder fRB; field in RBBITableBuilder 84 fRB = rb; in RBBITableBuilder() 100 if (fRB.fTreeRoots[fRootIx]==null) { in build() 108 fRB.fTreeRoots[fRootIx] = fRB.fTreeRoots[fRootIx].flattenVariables(); in build() 109 if (fRB.fDebugEnv!=null && fRB.fDebugEnv.indexOf("ftree")>=0) { in build() 111 fRB.fTreeRoots[fRootIx].printTree(true); in build() 120 if (fRB.fSetBuilder.sawBOF()) { in build() 124 bofTop.fRightChild = fRB.fTreeRoots[fRootIx]; in build() 127 fRB.fTreeRoots[fRootIx] = bofTop; in build() 136 cn.fLeftChild = fRB.fTreeRoots[fRootIx]; in build() [all …]
|
D | RBBIRuleScanner.java | 38 RBBIRuleBuilder fRB; // The rule builder that we are part of. field in RBBIRuleScanner 110 fRB = rb; in RBBIRuleScanner() 230 RHSExprNode.fText = fRB.fRules.substring(RHSExprNode.fFirstPos, in doParseActions() 250 if (fRB.fDebugEnv != null && fRB.fDebugEnv.indexOf("rtree") >= 0) { in doParseActions() 279 if (fRB.fChainRules && // If rule chaining is enabled globally via !!chain in doParseActions() 295 int destRules = (fReverseRule ? RBBIRuleBuilder.fReverseTree : fRB.fDefaultTree); in doParseActions() 297 if (fRB.fTreeRoots[destRules] != null) { in doParseActions() 304 RBBINode prevRules = fRB.fTreeRoots[destRules]; in doParseActions() 310 fRB.fTreeRoots[destRules] = orNode; in doParseActions() 314 fRB.fTreeRoots[destRules] = fNodeStack[fNodeStackPtr]; in doParseActions() [all …]
|
D | RBBISetBuilder.java | 124 RBBIRuleBuilder fRB; // The RBBI Rule Compiler that owns us. field in RBBISetBuilder 148 fRB = rb; in RBBISetBuilder() 161 if (fRB.fDebugEnv!=null && fRB.fDebugEnv.indexOf("usets")>=0) {printSets();} in build() 173 for (RBBINode usetNode : fRB.fUSetNodes) { in build() 226 if (fRB.fDebugEnv!=null && fRB.fDebugEnv.indexOf("range")>=0) { printRanges();} in build() 268 for (RBBINode usetNode : fRB.fUSetNodes) { in build() 280 if (fRB.fDebugEnv!=null && fRB.fDebugEnv.indexOf("rgroup")>=0) {printRangeGroups();} in build() 281 if (fRB.fDebugEnv!=null && fRB.fDebugEnv.indexOf("esets")>=0) {printSets();} in build() 535 for (i=0; i<fRB.fUSetNodes.size(); i++) { in printSets() 541 usetNode = fRB.fUSetNodes.get(i); in printSets()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | RBBITableBuilder.java | 65 private RBBIRuleBuilder fRB; field in RBBITableBuilder 83 fRB = rb; in RBBITableBuilder() 99 if (fRB.fTreeRoots[fRootIx]==null) { in build() 107 fRB.fTreeRoots[fRootIx] = fRB.fTreeRoots[fRootIx].flattenVariables(); in build() 108 if (fRB.fDebugEnv!=null && fRB.fDebugEnv.indexOf("ftree")>=0) { in build() 110 fRB.fTreeRoots[fRootIx].printTree(true); in build() 119 if (fRB.fSetBuilder.sawBOF()) { in build() 123 bofTop.fRightChild = fRB.fTreeRoots[fRootIx]; in build() 126 fRB.fTreeRoots[fRootIx] = bofTop; in build() 135 cn.fLeftChild = fRB.fTreeRoots[fRootIx]; in build() [all …]
|
D | RBBIRuleScanner.java | 37 RBBIRuleBuilder fRB; // The rule builder that we are part of. field in RBBIRuleScanner 109 fRB = rb; in RBBIRuleScanner() 229 RHSExprNode.fText = fRB.fRules.substring(RHSExprNode.fFirstPos, in doParseActions() 249 if (fRB.fDebugEnv != null && fRB.fDebugEnv.indexOf("rtree") >= 0) { in doParseActions() 278 if (fRB.fChainRules && // If rule chaining is enabled globally via !!chain in doParseActions() 294 int destRules = (fReverseRule ? RBBIRuleBuilder.fReverseTree : fRB.fDefaultTree); in doParseActions() 296 if (fRB.fTreeRoots[destRules] != null) { in doParseActions() 303 RBBINode prevRules = fRB.fTreeRoots[destRules]; in doParseActions() 309 fRB.fTreeRoots[destRules] = orNode; in doParseActions() 313 fRB.fTreeRoots[destRules] = fNodeStack[fNodeStackPtr]; in doParseActions() [all …]
|
D | RBBISetBuilder.java | 123 RBBIRuleBuilder fRB; // The RBBI Rule Compiler that owns us. field in RBBISetBuilder 147 fRB = rb; in RBBISetBuilder() 160 if (fRB.fDebugEnv!=null && fRB.fDebugEnv.indexOf("usets")>=0) {printSets();} in build() 172 for (RBBINode usetNode : fRB.fUSetNodes) { in build() 225 if (fRB.fDebugEnv!=null && fRB.fDebugEnv.indexOf("range")>=0) { printRanges();} in build() 267 for (RBBINode usetNode : fRB.fUSetNodes) { in build() 279 if (fRB.fDebugEnv!=null && fRB.fDebugEnv.indexOf("rgroup")>=0) {printRangeGroups();} in build() 280 if (fRB.fDebugEnv!=null && fRB.fDebugEnv.indexOf("esets")>=0) {printSets();} in build() 534 for (i=0; i<fRB.fUSetNodes.size(); i++) { in printSets() 540 usetNode = fRB.fUSetNodes.get(i); in printSets()
|