HomeSort by relevance Sort by last modified time
    Searched refs:baseTree (Results 1 - 7 of 7) sorted by null

  /external/antlr/runtime/C/src/
antlr3commontree.c 117 factory->unTruc.baseTree.strFactory = strFactory;
182 // It is the basetree pointer that is placed on the stack of course
215 tree->baseTree.strFactory = factory->unTruc.baseTree.strFactory;
222 tree->baseTree.super = tree;
227 return &(tree->baseTree);
246 newTree->u = tree->baseTree.u; // Copy any user pointer
312 antlr3BaseTreeNew(&(tree->baseTree));
318 tree->baseTree.super = tree;
322 tree->baseTree.isNilNode = isNilNode
    [all...]
antlr3commontreenodestream.c 555 return &(tns->ctns->INVALID_NODE.baseTree);
560 return &(tns->ctns->INVALID_NODE.baseTree);
590 return &(tns->ctns->INVALID_NODE.baseTree);
597 return &(tns->ctns->EOF_NODE.baseTree);
766 node = &(ctns->DOWN.baseTree);
777 node = &(ctns->UP.baseTree);
900 return &(dNode->baseTree);
914 return &(uNode->baseTree);
antlr3treeparser.c 225 if (current == &ctns->EOF_NODE.baseTree)
  /external/antlr/runtime/C/include/
antlr3parsetree.h 60 ANTLR3_BASE_TREE baseTree;
antlr3commontree.h 86 /// as you always have a baseTree pointer in the top structure
104 ANTLR3_BASE_TREE baseTree;
  /external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
BaseTree.cs 50 public abstract class BaseTree : ITree
54 public BaseTree()
59 * Create a new node from an existing node does nothing for BaseTree
64 public BaseTree( ITree node )
99 /** <summary>BaseTree doesn't track parent pointers.</summary> */
111 /** <summary>BaseTree doesn't track child indexes.</summary> */
210 BaseTree childTree = t as BaseTree;
236 // no children for this but t is a BaseTree with children;
350 " with "+((BaseTree)t).toStringTree())
    [all...]
  /external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
BaseTree.cs 48 public abstract class BaseTree : ITree {
51 public BaseTree() {
55 * Create a new node from an existing node does nothing for BaseTree
60 public BaseTree(ITree node) {
85 /** <summary>BaseTree doesn't track parent pointers.</summary> */
94 /** <summary>BaseTree doesn't track child indexes.</summary> */
176 BaseTree childTree = t as BaseTree;
196 // no children for this but t is a BaseTree with children;
276 " with "+((BaseTree)t).toStringTree())
    [all...]

Completed in 224 milliseconds