Searched defs:root (Results 251 - 275 of 760) sorted by relevance

<<11121314151617181920>>

/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 DDebugTreeAdaptor.cs130 public virtual object RulePostProcessing(object root) { argument
131 return adaptor.RulePostProcessing(root);
H A DIDebugEventListener.cs343 /** <summary>Make a node the new root of an existing root. See</summary>
372 void AddChild(object root, object child); argument
374 /** <summary>Set the token start/stop token index for a subtree root or node.</summary>
/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
124 * If oldRoot is a nil root, just copy or move the children to newRoot.
125 * If not a nil root, make oldRoot a child of newRoot.
133 * child as the new root node.
144 * simple node or nil root with a single child node--it must be a root
167 throw new Exception("more than one node as root (TODO: make exception hierarchy)");
178 public virtual object RulePostProcessing(object root) { argument
179 //System.out.println("rulePostProcessing: "+((Tree)root).toStringTree());
180 ITree r = (ITree)root;
[all...]
H A DITreeAdaptor.cs114 * If oldRoot is a nil root, just copy or move the children to newRoot.
115 * If not a nil root, make oldRoot a child of newRoot.
123 * child as the new root node.
134 * simple node or nil root with a single child node--it must be a root
146 * Given the root of the subtree created for this rule, post process
149 * as the setting of start/stop indexes relies on a single non-nil root
162 object RulePostProcessing(object root); argument
178 * Create a node for newRoot make it the root of oldRoot.
179 * If oldRoot is a nil root, jus
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Debug/
H A DIDebugEventListener.cs345 /** <summary>Make a node the new root of an existing root. See</summary>
374 void AddChild( object root, object child ); argument
376 /** <summary>Set the token start/stop token index for a subtree root or node.</summary>
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DBufferedTreeNodeStream.cs140 protected object root; field in class:Antlr.Runtime.Tree.BufferedTreeNodeStream
142 /** <summary>IF this tree (root) was created from a token stream, track it.</summary> */
174 this.root = tree;
200 return root;
287 FillBuffer( root );
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DBlankDebugEventListener.cs155 public virtual void AddChild( object root, object child ) argument
H A DDebugEventHub.cs346 public virtual void AddChild( object root, object child ) argument
351 listener.AddChild( root, child );
H A DDebugEventRepeater.cs185 public virtual void AddChild( object root, object child ) argument
187 _listener.AddChild( root, child );
H A DDebugEventSocketProxy.cs388 public override void AddChild( object root, object child ) argument
390 int rootID = adaptor.GetUniqueID( root );
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/
H A DITreeAdaptor`1.cs102 * If oldRoot is a nil root, just copy or move the children to newRoot.
103 * If not a nil root, make oldRoot a child of newRoot.
111 * child as the new root node.
122 * simple node or nil root with a single child node--it must be a root
134 * Given the root of the subtree created for this rule, post process
137 * as the setting of start/stop indexes relies on a single non-nil root
150 T RulePostProcessing(T root); argument
166 * Create a node for newRoot make it the root of oldRoot.
167 * If oldRoot is a nil root, jus
[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.java290 /** Make a node the new root of an existing root. See
315 public void addChild(Object root, Object child); argument
317 /** Set the token start/stop token index for a subtree root or node.
H A DDebugEventRepeater.java84 public void addChild(Object root, Object child) { listener.addChild(root, child); } argument
H A DDebugTreeAdaptor.java126 public Object rulePostProcessing(Object root) { argument
127 return adaptor.rulePostProcessing(root);
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DBaseTreeAdaptor.java86 // ensure new subtree root has parent/child index set
111 /** If oldRoot is a nil root, just copy or move the children to newRoot.
112 * If not a nil root, make oldRoot a child of newRoot.
118 * child as the new root node.
129 * simple node or nil root with a single child node--it must be a root
150 throw new RuntimeException("more than one node as root (TODO: make exception hierarchy)");
161 public Object rulePostProcessing(Object root) { argument
162 //System.out.println("rulePostProcessing: "+((Tree)root).toStringTree());
163 Tree r = (Tree)root;
[all...]
H A DCommonTreeNodeStream.java42 protected Object root; field in class:CommonTreeNodeStream
44 /** If this tree (root) was created from a token stream, track it. */
59 /** Tracks tree depth. Level=0 means we're at root node level. */
67 this.root = tree;
69 it = new TreeIterator(adaptor,root);
91 if ( level==0 && adaptor.isNil(t) ) { // if nil root, scarf nil, DOWN
104 public Object getTreeSource() { return root; }
H A DTreeAdaptor.java96 /** If oldRoot is a nil root, just copy or move the children to newRoot.
97 * If not a nil root, make oldRoot a child of newRoot.
103 * child as the new root node.
114 * simple node or nil root with a single child node--it must be a root
124 /** Given the root of the subtree created for this rule, post process
127 * as the setting of start/stop indexes relies on a single non-nil root
137 public Object rulePostProcessing(Object root); argument
150 /** Create a node for newRoot make it the root of oldRoot.
151 * If oldRoot is a nil root, jus
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DCompositeGrammar.java152 public void setDelegationRoot(Grammar root) { argument
153 delegateGrammarTreeRoot = new CompositeGrammarTree(root);
154 root.compositeTreeNode = delegateGrammarTreeRoot;
228 /** Return list of delegate grammars from root down to g.
229 * Order is root, ..., g.parent. (g not included).
237 // walk backwards to root, collecting grammars
250 * This returns null except for the delegate root because it is the only
253 * them to pass to the root parser's ctor as arguments).
345 // now tell it to define them in the root grammar
/external/apache-harmony/support/src/test/java/org/apache/harmony/testframework/serialization/
H A DSerializationTest.java83 * Key to a system property defining root location of golden files.
454 * from "<module root>/src/test/resources/serialization/<code>testPackage</code>"
497 * resource files from "<module root>/src/test/resources/serialization/<code>testPackage</code>"
614 * The folder for created file is: <code>root + test's package name</code>.
617 * @param root -
618 * root directory for serialization resource files
626 public static void createGoldenFile(String root, TestCase test, argument
633 if (root != null) {
634 goldenPath = root + File.separatorChar + goldenPath;
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DDecimalFormatProperties.java397 * @param root Stylesheet root
399 public void recompose(StylesheetRoot root) argument
401 root.recomposeDecimalFormats(this);

Completed in 1178 milliseconds

<<11121314151617181920>>