HomeSort by relevance Sort by last modified time
    Searched refs:Tree (Results 126 - 150 of 250) sorted by null

1 2 3 4 56 7 8 910

  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
BlankDebugEventListener.cs 126 #region Tree parsing stuff
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DebugTreeGrammarHelper.cs 34 using Antlr.Runtime.Tree;
41 /** Points to functions tracked by tree builder. */
59 * tree of the function; the set of all defined functions (to find locally called ones); a
67 // Expected tree for function: ^(FUNC ID ( INT | ID ) expr)
82 // Expected tree for f: ^(FUNC ID (ID | INT) expr)
ProfileTreeGrammarHelper.cs 34 using Antlr.Runtime.Tree;
41 /** Points to functions tracked by tree builder. */
59 * tree of the function; the set of all defined functions (to find locally called ones); a
67 // Expected tree for function: ^(FUNC ID ( INT | ID ) expr)
82 // Expected tree for f: ^(FUNC ID (ID | INT) expr)
DebugGrammarParser.cs 18 using Antlr.Runtime.Tree;
19 using RewriteRuleITokenStream = Antlr.Runtime.Tree.RewriteRuleTokenStream;
100 // Implement this function in your helper file to use a custom tree adaptor
125 internal CommonTree tree; field in class:DebugGrammarParser.prog_return
126 public override object Tree { get { return tree; } }
200 adaptor.AddChild(root_0, stat1.Tree);
224 retval.tree = (CommonTree)adaptor.RulePostProcessing(root_0);
225 adaptor.SetTokenBoundaries(retval.tree, retval.start, retval.stop);
232 retval.tree = (CommonTree)adaptor.ErrorNode(input, retval.start, input.LT(-1), re)
257 internal CommonTree tree; field in class:DebugGrammarParser.stat_return
544 internal CommonTree tree; field in class:DebugGrammarParser.func_return
699 internal CommonTree tree; field in class:DebugGrammarParser.formalPar_return
788 internal CommonTree tree; field in class:DebugGrammarParser.expr_return
1001 internal CommonTree tree; field in class:DebugGrammarParser.multExpr_return
1159 internal CommonTree tree; field in class:DebugGrammarParser.atom_return
    [all...]
ProfileGrammarParser.cs 18 using Antlr.Runtime.Tree;
19 using RewriteRuleITokenStream = Antlr.Runtime.Tree.RewriteRuleTokenStream;
104 // Implement this function in your helper file to use a custom tree adaptor
129 internal CommonTree tree; field in class:ProfileGrammarParser.prog_return
130 public override object Tree { get { return tree; } }
204 adaptor.AddChild(root_0, stat1.Tree);
228 retval.tree = (CommonTree)adaptor.RulePostProcessing(root_0);
229 adaptor.SetTokenBoundaries(retval.tree, retval.start, retval.stop);
236 retval.tree = (CommonTree)adaptor.ErrorNode(input, retval.start, input.LT(-1), re)
261 internal CommonTree tree; field in class:ProfileGrammarParser.stat_return
548 internal CommonTree tree; field in class:ProfileGrammarParser.func_return
703 internal CommonTree tree; field in class:ProfileGrammarParser.formalPar_return
792 internal CommonTree tree; field in class:ProfileGrammarParser.expr_return
1005 internal CommonTree tree; field in class:ProfileGrammarParser.multExpr_return
1163 internal CommonTree tree; field in class:ProfileGrammarParser.atom_return
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRTreeRewriter.h 68 - (void)reportTransformation:(ANTLRCommonTree *)oldTree Tree:(ANTLRCommonTree *)newTree;
ANTLRDebugEventProxy.h 98 #pragma mark Tree Parsing
ANTLRTreeAdaptor.h 31 #pragma warning tree/node diction is broken.
42 * a list of element as the children. If you want a flat tree (a list)
47 /** Return a tree node representing an error. This node records the
57 * This only makes sense during token parsing, not tree parsing.
58 * Tree parsing should happen only when parsing and tree construction
66 /** Is tree considered a nil node used to make lists of child nodes? */
78 * If newRoot is a nil-rooted single child tree, use the single
128 #pragma mark Navigation / Tree Parsing
141 * If your node type doesn't handle this, it's ok but the tree rewrite
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ResourceExplorerView.java 48 import org.eclipse.swt.widgets.Tree;
65 * This contains a basic Tree view, and uses a TreeViewer to handle the data.
83 private Tree mTree;
93 mTree = new Tree(parent, SWT.SINGLE | SWT.VIRTUAL);
244 // to the tree viewer.
277 public void createTreeColumn(Tree parent, String header, int style,
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
tree.rb 41 Name space containing all of the entities pertaining to tree construction and
42 tree parsing.
48 autoload :Wizard, 'antlr3/tree/wizard'
49 autoload :Visitor, 'antlr3/tree/visitor'
52 ############################################ Tree Parser ###########################################
59 TreeParser is the default base class of ANTLR-generated tree parsers. The class
60 tailors the functionality provided by Recognizer to the task of tree-pattern
63 == About Tree Parsers
68 * tree parsers
72 Trees (ASTs), tree structures that reflect the high-level syntactic and semanti
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
CommonTree.cs 33 namespace Antlr.Runtime.Tree {
38 * A tree node that is wrapper for a Token object. After 3.0 release
39 * while building tree rewrite stuff, it became clear that computing
41 * spend the space in every tree node. If you don't want these extra
CommonTreeAdaptor.cs 33 namespace Antlr.Runtime.Tree {
36 * A TreeAdaptor that works with any Tree implementation. It provides
39 * objects, you need to override this and then set the parser tree adaptor to
111 * Only works with Tree nodes. For rules that match nothing,
RewriteRuleElementStream.cs 33 namespace Antlr.Runtime.Tree {
157 * a tree node or subtree. Deal with the optimization of single-
190 * the element is for a tree root; then it must be a node dup.
TreeIterator.cs 33 namespace Antlr.Runtime.Tree {
36 /** Return a node stream from a doubly-linked tree whose nodes
39 * Emit navigation nodes (DOWN, UP, and EOF) to let show tree structure.
44 protected object tree; field in class:Antlr.Runtime.Tree.TreeIterator
57 public TreeIterator(object tree)
58 : this(new CommonTreeAdaptor(), tree) {
61 public TreeIterator(ITreeAdaptor adaptor, object tree) {
63 this.tree = tree;
64 this.root = tree;
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
CommonTree.cs 33 namespace Antlr.Runtime.Tree
38 * A tree node that is wrapper for a Token object. After 3.0 release
39 * while building tree rewrite stuff, it became clear that computing
41 * spend the space in every tree node. If you don't want these extra
RewriteRuleElementStream.cs 33 namespace Antlr.Runtime.Tree
169 * a tree node or subtree. Deal with the optimization of single-
207 * the element is for a tree root; then it must be a node dup.
TreeIterator.cs 33 namespace Antlr.Runtime.Tree
37 /** Return a node stream from a doubly-linked tree whose nodes
40 * Emit navigation nodes (DOWN, UP, and EOF) to let show tree structure.
46 protected object tree; field in class:Antlr.Runtime.Tree.TreeIterator
60 public TreeIterator( CommonTree tree )
61 : this( new CommonTreeAdaptor(), tree )
65 public TreeIterator( ITreeAdaptor adaptor, object tree )
68 this.tree = tree;
69 this.root = tree;
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
RecognitionException.js 27 * @param {org.antlr.runtime.CommonTokenStream|org.antlr.runtime.tree.TreeNodeStream|org.antlr.runtime.ANTLRStringStream} input input stream that has an exception.
40 if ( input instanceof org.antlr.runtime.tree.TreeNodeStream ) {
72 * For parsers. Even when it's a tree parser, token might be set.
77 /** If this is a tree parser exception, node is set to the node with
105 /** If you are parsing a tree node stream, you will encounter som
114 * @param {org.antlr.runtime.CommonTokenStream|org.antlr.runtime.tree.TreeNodeStream|org.antlr.runtime.ANTLRStringStream} input input stream that has an exception.
151 else if ( this.node instanceof org.antlr.runtime.tree.Tree) {
154 if ( this.node instanceof org.antlr.runtime.tree.CommonTree) {
172 else if ( this.input instanceof org.antlr.runtime.tree.TreeNodeStream )
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
CommonTree.js 1 /** A tree node that is wrapper for a Token object. After 3.0 release
2 * while building tree rewrite stuff, it became clear that computing
4 * spend the space in every tree node. If you don't want these extra
7 org.antlr.runtime.tree.CommonTree = function(node) {
23 if (node instanceof org.antlr.runtime.tree.CommonTree) {
24 org.antlr.runtime.tree.CommonTree.superclass.constructor.call(this, node);
33 /** A tree node that is wrapper for a Token object. */
34 org.antlr.lang.extend(org.antlr.runtime.tree.CommonTree, org.antlr.runtime.tree.BaseTree, {
40 return new org.antlr.runtime.tree.CommonTree(this)
    [all...]
CommonErrorNode.js 1 org.antlr.runtime.tree.CommonErrorNode = function(input, start, stop, e) {
18 org.antlr.lang.extend(org.antlr.runtime.tree.CommonErrorNode, org.antlr.runtime.tree.CommonTree, {
37 else if ( this.start instanceof org.antlr.runtime.tree.Tree ) {
41 // people should subclass if they alter the tree type so this
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRDebugEventProxy.h 98 #pragma mark Tree Parsing
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRDebugEventProxy.h 98 #pragma mark Tree Parsing
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRDebugEventProxy.h 98 #pragma mark Tree Parsing
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
CommonErrorNode.as 1 package org.antlr.runtime.tree
51 else if ( start is Tree ) {
55 // people should subclass if they alter the tree type so this
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarSanity.java 34 import org.antlr.runtime.tree.Tree;
255 /** Rules in tree grammar that use -> rewrites and are spitting out
302 protected boolean isValidSimpleElementNode(Tree t) {

Completed in 5215 milliseconds

1 2 3 4 56 7 8 910