Searched defs:child (Results 1 - 25 of 802) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3basetree.c44 static void addChild (pANTLR3_BASE_TREE tree, pANTLR3_BASE_TREE child);
51 static void setChild (pANTLR3_BASE_TREE tree, ANTLR3_UINT32 i, void * child);
144 addChild (pANTLR3_BASE_TREE tree, pANTLR3_BASE_TREE child) argument
149 if (child == NULL)
154 if (child->isNilNode(child) == ANTLR3_TRUE)
156 if (child->children != NULL && child->children == tree->children)
160 ANTLR3_FPRINTF(stderr, "ANTLR3: An attempt was made to add a child list to itself!\n");
166 if (child
236 setChild(pANTLR3_BASE_TREE tree, ANTLR3_UINT32 i, void * child) argument
390 pANTLR3_BASE_TREE child; local
481 pANTLR3_BASE_TREE child; local
[all...]
H A Dantlr3basetreeadaptor.c49 static void addChild (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE t, pANTLR3_BASE_TREE child);
50 static void dbgAddChild (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE t, pANTLR3_BASE_TREE child);
54 static void addChildToken (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE t, pANTLR3_COMMON_TOKEN child);
55 static void dbgAddChildToken (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE t, pANTLR3_COMMON_TOKEN child);
166 pANTLR3_BASE_TREE child; local
181 // This will already have been included as a child of another node
187 // For each child of the current tree, define a node using the
193 // Pick up a pointer for the child
195 child = adaptor->getChild(adaptor, t, i);
199 sprintf(buff, "\tn%p[label=\"", child);
271 pANTLR3_BASE_TREE child; local
470 pANTLR3_BASE_TREE child; local
504 pANTLR3_BASE_TREE child; local
548 addChild(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE t, pANTLR3_BASE_TREE child) argument
556 dbgAddChild(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE t, pANTLR3_BASE_TREE child) argument
567 addChildToken(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE t, pANTLR3_COMMON_TOKEN child) argument
575 dbgAddChildToken(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE t, pANTLR3_COMMON_TOKEN child) argument
[all...]
H A Dantlr3commontree.c77 // Install a vector factory to create, track and free() any child
165 // whatever put it back on the stack (for instance if it had a child vector,
256 // First close the vector factory that supplied all the child pointer
370 /// Create a new vector for holding child nodes using the inbuilt
458 pANTLR3_BASE_TREE child; local
460 child = (pANTLR3_BASE_TREE)tree->getChild(tree, 0);
461 return child->getLine(child);
478 pANTLR3_BASE_TREE child; local
480 child
[all...]
H A Dantlr3commontreeadaptor.c60 static void setParent (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE child, pANTLR3_BASE_TREE parent);
61 static pANTLR3_BASE_TREE getParent (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE child);
62 static void setChild (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE t, ANTLR3_UINT32 i, pANTLR3_BASE_TREE child);
459 setChild (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE t, ANTLR3_UINT32 i, pANTLR3_BASE_TREE child) argument
461 t->setChild(t, i, child);
488 setParent (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE child, pANTLR3_BASE_TREE parent) argument
490 child->setParent(child, parent);
493 getParent (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE child) argument
495 return child
[all...]
H A Dantlr3commontreenodestream.c868 pANTLR3_BASE_TREE child; local
870 child = p->getChild(p, c);
871 tns->toStringWork(tns, child, stop, buf);
917 /// Replace from start to stop child index of parent with t, which might
H A Dantlr3debughandlers.c85 static void addChild (pANTLR3_DEBUG_EVENT_LISTENER delboy, pANTLR3_BASE_TREE root, pANTLR3_BASE_TREE child);
1025 addChild (pANTLR3_DEBUG_EVENT_LISTENER delboy, pANTLR3_BASE_TREE root, pANTLR3_BASE_TREE child) argument
1030 delboy->adaptor->getUniqueID(delboy->adaptor, child)
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DBlankDebugEventListener.cs122 public virtual void AddChild(object root, object child) { argument
H A DDebugEventHub.cs283 public virtual void AddChild(object root, object child) { argument
286 listener.AddChild(root, child);
H A DDebugEventRepeater.cs152 public virtual void AddChild(object root, object child) { argument
153 _listener.AddChild(root, child);
H A DDebugEventSocketProxy.cs342 public override void AddChild(object root, object child) { argument
344 int childID = adaptor.GetUniqueID(child);
H A DDebugTreeAdaptor.cs82 // walk the tree and emit create and add child events
89 /** <summary>^(A B C): emit create A, create B, add child, ...</summary> */
94 object child = adaptor.GetChild(t, i);
95 SimulateTreeConstruction(child);
96 dbg.AddChild(t, child);
116 public virtual void AddChild(object t, object child) { argument
117 if (t == null || child == null) {
120 adaptor.AddChild(t, child);
121 dbg.AddChild(t, child);
134 public virtual void AddChild(object t, IToken child) { argument
205 SetChild(object t, int i, object child) argument
[all...]
H A DIDebugEventListener.cs363 /** <summary>Make childID a child of rootID.</summary>
372 void AddChild(object root, object child); argument
H A DTraceDebugEventListener.cs107 public override void AddChild(object root, object child) { argument
109 adaptor.GetUniqueID(child));
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DBaseTreeAdaptor.cs96 // ensure new subtree root has parent/child index set
101 object child = GetChild(t, i);
102 object newSubTree = DupTree(child, t);
109 * Add a child to the tree t. If child is a flat tree (a list), make all
110 * in list children of t. Warning: if t has no children, but child does
111 * and child isNil then you can decide it is ok to move children to t via
112 * t.children = child.children; i.e., without copying the array. Just
117 public virtual void AddChild(object t, object child) { argument
118 if (t != null && child !
243 SetChild(object t, int i, object child) argument
[all...]
H A DITreeAdaptor.cs99 /** <summary>Is tree considered a nil node used to make lists of child nodes?</summary> */
103 * Add a child to the tree t. If child is a flat tree (a list), make all
104 * in list children of t. Warning: if t has no children, but child does
105 * and child isNil then you can decide it is ok to move children to t via
106 * t.children = child.children; i.e., without copying the array. Just
108 * ASTs. Do nothing if t or child is null.
111 void AddChild(object t, object child); argument
115 * If not a nil root, make oldRoot a child of newRoot.
122 * If newRoot is a nil-rooted single child tre
286 SetChild(object t, int i, object child) argument
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/
H A DITreeAdaptor`1.cs87 /** <summary>Is tree considered a nil node used to make lists of child nodes?</summary> */
91 * Add a child to the tree t. If child is a flat tree (a list), make all
92 * in list children of t. Warning: if t has no children, but child does
93 * and child isNil then you can decide it is ok to move children to t via
94 * t.children = child.children; i.e., without copying the array. Just
96 * ASTs. Do nothing if t or child is null.
99 void AddChild(T t, T child); argument
103 * If not a nil root, make oldRoot a child of newRoot.
110 * If newRoot is a nil-rooted single child tre
274 SetChild(T t, int i, T child) argument
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
H A DBlankDebugEventListener.java73 public void addChild(Object root, Object child) {} argument
H A DDebugEventHub.java279 public void addChild(Object root, Object child) { argument
282 listener.addChild(root, child);
H A DDebugEventListener.java308 /** Make childID a child of rootID.
315 public void addChild(Object root, Object child); argument
H A DDebugEventRepeater.java84 public void addChild(Object root, Object child) { listener.addChild(root, child); } argument
H A DDebugEventSocketProxy.java308 public void addChild(Object root, Object child) { argument
310 int childID = adaptor.getUniqueID(child);
H A DDebugTreeAdaptor.java78 // walk the tree and emit create and add child events
85 /** ^(A B C): emit create A, create B, add child, ...*/
90 Object child = adaptor.getChild(t, i);
91 simulateTreeConstruction(child);
92 dbg.addChild(t, child);
112 public void addChild(Object t, Object child) { argument
113 if ( t==null || child==null ) {
116 adaptor.addChild(t,child);
117 dbg.addChild(t, child);
130 public void addChild(Object t, Token child) { argument
201 setChild(Object t, int i, Object child) argument
[all...]
H A DTraceDebugEventListener.java86 public void addChild(Object root, Object child) { argument
88 adaptor.getUniqueID(child));

Completed in 535 milliseconds

1234567891011>>