HomeSort by relevance Sort by last modified time
    Searched refs:fLeftChild (Results 1 - 25 of 27) sorted by null

1 2

  /external/icu/icu4c/source/common/
rbbinode.cpp 56 fLeftChild = NULL;
86 fLeftChild = NULL;
126 delete fLeftChild;
127 fLeftChild = NULL;
155 n = fLeftChild->cloneTree();
162 if (fLeftChild != NULL) {
163 n->fLeftChild = fLeftChild->cloneTree();
164 n->fLeftChild->fParent = n;
197 RBBINode *retNode = fLeftChild->cloneTree()
    [all...]
rbbistbl.cpp 87 exprNode = varRefNode->fLeftChild; // Root node of expression for variable
92 usetNode = exprNode->fLeftChild;
217 delete val->fLeftChild;
218 val->fLeftChild = NULL;
245 RBBIDebugPrintf(" %s\n", CStr(s->val->fLeftChild->fText)());
258 RBBINode::printTree(s->val->fLeftChild, FALSE);
rbbitblb.cpp 104 bofTop->fLeftChild = bofLeaf;
122 cn->fLeftChild = fTree;
223 calcNullable(n->fLeftChild);
228 n->fNullable = n->fLeftChild->fNullable || n->fRightChild->fNullable;
231 n->fNullable = n->fLeftChild->fNullable && n->fRightChild->fNullable;
267 calcFirstPos(n->fLeftChild);
272 setAdd(n->fFirstPosSet, n->fLeftChild->fFirstPosSet);
276 setAdd(n->fFirstPosSet, n->fLeftChild->fFirstPosSet);
277 if (n->fLeftChild->fNullable) {
284 setAdd(n->fFirstPosSet, n->fLeftChild->fFirstPosSet)
    [all...]
rbbisetb.cpp 334 if (usetNode->fLeftChild == NULL) {
335 usetNode->fLeftChild = leafNode;
346 orNode->fLeftChild = usetNode->fLeftChild;
348 orNode->fLeftChild->fParent = orNode;
350 usetNode->fLeftChild = orNode;
516 if (usetNode->fLeftChild != NULL) {
517 RBBINode::printTree(usetNode->fLeftChild, TRUE);
rbbinode.h 59 RBBINode *fLeftChild;
rbbiscan.cpp 228 orNode->fLeftChild = operandNode;
245 catNode->fLeftChild = operandNode;
304 varRefNode->fLeftChild = RHSExprNode;
344 catNode->fLeftChild = thisRule;
389 orNode->fLeftChild = prevRules;
433 plusNode->fLeftChild = operandNode;
445 qNode->fLeftChild = operandNode;
457 starNode->fLeftChild = operandNode;
596 n->fLeftChild = fSymbolTable->lookupNode(n->fText);
601 if (n->fLeftChild == NULL)
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
RBBINode.java 71 RBBINode fLeftChild;
162 n = fLeftChild.cloneTree();
167 if (fLeftChild != null) {
168 n.fLeftChild = fLeftChild.cloneTree();
169 n.fLeftChild.fParent = n;
201 RBBINode retNode = fLeftChild.cloneTree();
207 if (fLeftChild != null) {
208 fLeftChild = fLeftChild.flattenVariables()
    [all...]
RBBISymbolTable.java 64 while (varRefNode.fLeftChild.fType == RBBINode.varRef) {
65 varRefNode = varRefNode.fLeftChild;
68 exprNode = varRefNode.fLeftChild; // Root node of expression for variable
73 usetNode = exprNode.fLeftChild;
188 System.out.print(s.val.fLeftChild.fText);
196 s.val.fLeftChild.printTree(true);
RBBISetBuilder.java 349 if (usetNode.fLeftChild == null) {
350 usetNode.fLeftChild = leafNode;
357 orNode.fLeftChild = usetNode.fLeftChild;
359 orNode.fLeftChild.fParent = orNode;
361 usetNode.fLeftChild = orNode;
527 if (usetNode.fLeftChild != null) {
528 usetNode.fLeftChild.printTree(true);
RBBIRuleScanner.java 156 orNode.fLeftChild = operandNode;
171 catNode.fLeftChild = operandNode;
235 varRefNode.fLeftChild = RHSExprNode;
262 catNode.fLeftChild = thisRule;
306 orNode.fLeftChild = prevRules;
341 plusNode.fLeftChild = operandNode;
349 qNode.fLeftChild = operandNode;
357 starNode.fLeftChild = operandNode;
485 n.fLeftChild = fSymbolTable.lookupNode(n.fText);
490 if (n.fLeftChild == null)
    [all...]
RBBITableBuilder.java 123 bofTop.fLeftChild = bofLeaf;
136 cn.fLeftChild = fRB.fTreeRoots[fRootIx];
229 calcNullable(n.fLeftChild);
234 n.fNullable = n.fLeftChild.fNullable || n.fRightChild.fNullable;
237 n.fNullable = n.fLeftChild.fNullable && n.fRightChild.fNullable;
270 calcFirstPos(n.fLeftChild);
275 n.fFirstPosSet.addAll(n.fLeftChild.fFirstPosSet);
279 n.fFirstPosSet.addAll(n.fLeftChild.fFirstPosSet);
280 if (n.fLeftChild.fNullable) {
287 n.fFirstPosSet.addAll(n.fLeftChild.fFirstPosSet)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
RBBINode.java 70 RBBINode fLeftChild;
161 n = fLeftChild.cloneTree();
166 if (fLeftChild != null) {
167 n.fLeftChild = fLeftChild.cloneTree();
168 n.fLeftChild.fParent = n;
200 RBBINode retNode = fLeftChild.cloneTree();
206 if (fLeftChild != null) {
207 fLeftChild = fLeftChild.flattenVariables()
    [all...]
RBBISymbolTable.java 63 while (varRefNode.fLeftChild.fType == RBBINode.varRef) {
64 varRefNode = varRefNode.fLeftChild;
67 exprNode = varRefNode.fLeftChild; // Root node of expression for variable
72 usetNode = exprNode.fLeftChild;
187 System.out.print(s.val.fLeftChild.fText);
195 s.val.fLeftChild.printTree(true);
RBBISetBuilder.java 348 if (usetNode.fLeftChild == null) {
349 usetNode.fLeftChild = leafNode;
356 orNode.fLeftChild = usetNode.fLeftChild;
358 orNode.fLeftChild.fParent = orNode;
360 usetNode.fLeftChild = orNode;
526 if (usetNode.fLeftChild != null) {
527 usetNode.fLeftChild.printTree(true);
RBBIRuleScanner.java 155 orNode.fLeftChild = operandNode;
170 catNode.fLeftChild = operandNode;
234 varRefNode.fLeftChild = RHSExprNode;
261 catNode.fLeftChild = thisRule;
305 orNode.fLeftChild = prevRules;
340 plusNode.fLeftChild = operandNode;
348 qNode.fLeftChild = operandNode;
356 starNode.fLeftChild = operandNode;
484 n.fLeftChild = fSymbolTable.lookupNode(n.fText);
489 if (n.fLeftChild == null)
    [all...]
RBBITableBuilder.java 122 bofTop.fLeftChild = bofLeaf;
135 cn.fLeftChild = fRB.fTreeRoots[fRootIx];
228 calcNullable(n.fLeftChild);
233 n.fNullable = n.fLeftChild.fNullable || n.fRightChild.fNullable;
236 n.fNullable = n.fLeftChild.fNullable && n.fRightChild.fNullable;
269 calcFirstPos(n.fLeftChild);
274 n.fFirstPosSet.addAll(n.fLeftChild.fFirstPosSet);
278 n.fFirstPosSet.addAll(n.fLeftChild.fFirstPosSet);
279 if (n.fLeftChild.fNullable) {
286 n.fFirstPosSet.addAll(n.fLeftChild.fFirstPosSet)
    [all...]
  /prebuilts/tools/common/m2/repository/xerces/xercesImpl/2.6.2/
xercesImpl-2.6.2.jar 
  /prebuilts/tools/common/m2/repository/xerces/xercesImpl/2.9.1/
xercesImpl-2.9.1.jar 
  /external/guice/lib/build/jdiff/
xerces.jar 
  /prebuilts/tools/common/m2/repository/xerces/xercesImpl/2.11.0/
xercesImpl-2.11.0.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
icu4j-53.1.jar 
  /prebuilts/misc/common/robolectric/3.4.2/lib/
icu4j-53.1.jar 
  /prebuilts/misc/common/robolectric/3.5.1/lib/
icu4j-53.1.jar 
  /prebuilts/misc/common/robolectric/3.6.1/lib/
icu4j-53.1.jar 

Completed in 248 milliseconds

1 2