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

1 2 3 4 5 6 7 8910

  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugEventSocketProxy.cs 40 using ITreeAdaptor = Antlr.Runtime.Tree.ITreeAdaptor;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
BufferedTreeNodeStream.cs 33 namespace Antlr.Runtime.Tree {
41 /** <summary>A buffered stream of tree nodes. Nodes can be from a tree of ANY kind.</summary>
43 * This node stream sucks all nodes out of the tree specified in
45 * the tree using an array of Object pointers. The stream necessarily
50 * This stream is most suitable for tree interpreters that need to
51 * jump around a lot or for tree parsers requiring speed (at cost of memory).
53 * but just in bookkeeping, not tree walking etc...
119 /** <summary>The complete mapping from stream index to tree node.
130 /** <summary>Pull nodes from which tree?</summary> *
    [all...]
TreeWizard.cs 36 namespace Antlr.Runtime.Tree {
60 * patterns like "(A B C)". You can create a tree from that pattern or
93 * When using %label:TOKENNAME in a tree for parse(), we must
205 * Walk the entire tree and make a node name to nodes mapping.
266 /** <summary>Return a List of tree nodes with token type ttype</summary> */
381 * the pattern is malformed or the tree does not match.
397 System.out.println("t="+((Tree)t).toStringTree());
412 * in tree matched against nodes in pattern with labels.
451 * Create a tree or node from the indicated tree pattern that closel
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
RewriteRuleXxxxStreamFixture.cs 39 using Antlr.Runtime.Tree;
202 CommonTree tree = (CommonTree) tokenTest.NextNode();
203 Assert.AreEqual(token1, tree.Token,
269 "The returned tree should be equal to the given tree (1).");
324 "The returned tree should be equal to the given tree (1).");
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
BufferedTreeNodeStream.cs 33 namespace Antlr.Runtime.Tree
42 /** <summary>A buffered stream of tree nodes. Nodes can be from a tree of ANY kind.</summary>
44 * This node stream sucks all nodes out of the tree specified in
46 * the tree using an array of Object pointers. The stream necessarily
51 * This stream is most suitable for tree interpreters that need to
52 * jump around a lot or for tree parsers requiring speed (at cost of memory).
54 * but just in bookkeeping, not tree walking etc...
128 /** <summary>The complete mapping from stream index to tree node.
139 /** <summary>Pull nodes from which tree?</summary> *
    [all...]
TreeWizard.cs 36 namespace Antlr.Runtime.Tree
61 * patterns like "(A B C)". You can create a tree from that pattern or
101 * When using %label:TOKENNAME in a tree for parse(), we must
232 * Walk the entire tree and make a node name to nodes mapping.
305 /** <summary>Return a List of tree nodes with token type ttype</summary> */
437 * the pattern is malformed or the tree does not match.
454 System.out.println("t="+((Tree)t).toStringTree());
470 * in tree matched against nodes in pattern with labels.
518 * Create a tree or node from the indicated tree pattern that closel
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugEventSocketProxy.cs 39 using ITreeAdaptor = Antlr.Runtime.Tree.ITreeAdaptor;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DebugTreeGrammar.cs 17 using Antlr.Runtime.Tree;
18 using RewriteRuleITokenStream = Antlr.Runtime.Tree.RewriteRuleTokenStream;using Stack = System.Collections.Generic.Stack<object>;
ProfileTreeGrammar.cs 17 using Antlr.Runtime.Tree;
18 using RewriteRuleITokenStream = Antlr.Runtime.Tree.RewriteRuleTokenStream;using Stack = System.Collections.Generic.Stack<object>;
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Tree.pas 1 unit Antlr.Runtime.Tree;
54 /// This takes the place of the tree construction code generated in the
57 /// I do not need to know the type of a tree at all so they are all
67 /// Create a tree node from Token object; for CommonTree type trees,
75 /// <summary>Duplicate a single tree node </summary>
79 /// <summary>Duplicate tree recursively, using DupNode() for each node </summary>
80 function DupTree(const Tree: IANTLRInterface): IANTLRInterface;
84 /// a list of element as the children. If you want a flat tree (a list)
90 /// Return a tree node representing an error. This node records the
101 /// <para>This only makes sense during token parsing, not tree parsing
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
tree.py 1 """ @package antlr3.tree
2 @brief ANTLR3 runtime package, tree module
4 This module contains all support classes for AST construction and tree parsers.
54 # tree related exceptions
94 # basic Tree and TreeAdaptor interfaces
98 class Tree(object):
100 @brief Abstract baseclass for tree nodes.
102 What does a tree look like? ANTLR has a number of support classes
107 NOTE: When constructing trees, ANTLR can build any kind of tree; it can
110 This is a tree node without any payload; just navigation and factory stuff
    [all...]
debug.py 33 from antlr3.tree import CommonTreeAdaptor, TreeAdaptor, Tree
206 tree adaptor routines.
210 The debug listener has to deal with tree node IDs for which it did
212 if it represents a whole tree.
248 def dupTree(self, tree):
249 t = self.adaptor.dupTree(tree)
250 # walk the tree and emit create and add child events
278 def isNil(self, tree):
279 return self.adaptor.isNil(tree)
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
socket.rb 139 when AST::Tree
184 def consume_node( tree )
185 transmit "%s\t%s", :consume_node, serialize_node( tree )
192 def look_tree( i, tree )
193 transmit "%s\t%s\t%s", :look_tree, i, serialize_node( tree )
196 def flat_node( tree )
197 transmit "%s\t%i", :flat_node, adaptor.unique_id( tree )
200 def error_node( tree )
201 transmit "%s\t%i\t%i\t%p", :error_node, adaptor.unique_id( tree ),
202 Token::INVALID_TOKEN_TYPE, escape_newlines( tree.to_s
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/
antlr3.rb 62 through strings, tokens, and tree nodes loaded by default
74 antlr3/tree.rb::
89 antlr3/tree-wizard.rb::
166 # Tree classes are only used by tree parsers or AST-building parsers
169 autoload :AST, 'antlr3/tree'
172 :Tree, :TreeAdaptor, :BaseTree, :BaseTreeAdaptor,
181 autoload klass, 'antlr3/tree'
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
jsilver.sablecc 151 * tree of nodes representing the structure.
153 * This is the Concrete Syntax Tree (CST).
155 * Though this provides access to the underlying syntax tree, the
156 * resulting tree would be quite tricky to work with from code as
160 * convert it into a much simpler Abstract Syntax Tree (AST),
169 /* Concrete syntax tree. */
446 // The multiple levels allow the parser to build a tree based on operator
447 // precedence. The higher the level in the tree, the lower the precedence.
564 /***** Stage 3: The Abstract Syntax Tree
568 * It is represented in Java by a strongly typed node tree (th
    [all...]
  /build/tools/droiddoc/templates-pdk/
customizations.cs 85 <div id="nav-tree" style="display:none">
90 </div><!-- end nav-tree -->
95 $("<a href='#' id='nav-swap' onclick='swapNav();return false;' style='font-size:10px;line-height:9px;margin-left:1em;text-decoration:none;'><span id='tree-link'>Use Tree Navigation</span><span id='panel-link' style='display:none'>Use Panel Navigation</span></a>").appendTo("#side-nav");
97 if ($("#nav-tree").is(':visible')) {
107 swapNav(); // tree view should be used on mobile
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/
wizard.rb 43 using definitions writing in ANTLR-style tree definition syntax. It can also
44 define <i>tree patterns</i>, objects that are conceptually similar to regular
46 AST for a particular node structure. These features make tree wizards useful
47 while testing and debugging AST constructing parsers and tree parsers. This
52 for more background on the concept of a tree wizard.
56 # setting up and creating a tree wizard
70 deep_node = wizard.create(<<-TREE)
78 TREE
84 # test whether a tree matches a pattern
94 # iterate through the tree and extract nodes with pattern label
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
CSharp2.stg 81 using Antlr.Runtime.Tree;
82 using RewriteRuleITokenStream = Antlr.Runtime.Tree.RewriteRuleTokenStream;
409 /** How to generate a tree parser; same as parser except the input
414 superClass={<if(actions.(actionScope).superClass)><actions.(actionScope).superClass><else>Antlr.Runtime.Tree.<if(filterMode)><if(buildAST)>TreeRewriter<else>TreeFilter<endif><else>TreeParser<endif><endif>},
529 DebugLocation(<ruleDescriptor.tree.line>, <ruleDescriptor.EORNode.charPositionInLine>);
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
CSharp3.stg 80 using Antlr.Runtime.Tree;
81 using RewriteRuleITokenStream = Antlr.Runtime.Tree.RewriteRuleTokenStream;
391 /** How to generate a tree parser; same as parser except the input
396 superClass={<if(actions.(actionScope).superClass)><actions.(actionScope).superClass><else>Antlr.Runtime.Tree.<if(filterMode)><if(buildAST)>TreeRewriter<else>TreeFilter<endif><else>TreeParser<endif><endif>},
507 DebugLocation(<ruleDescriptor.tree.line>, <ruleDescriptor.EORNode.charPositionInLine>);
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Delphi/
Delphi.stg 54 * TREE_PARSER (Boolean): should we generate tree parser code?
104 Antlr.Runtime.Tree,<\n>
489 /** How to generate a tree parser; same as parser except the input
627 I<returnType()> = interface(I<if(TREE_PARSER)>Tree<else>Parser<endif>RuleReturnScope)
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/options/
certificate_manager_browsertest.js 114 [['personalCertsTab-tree',
124 ['caCertsTab-tree',
167 personalCerts.querySelector('div.tree-item').click();
177 personalCerts.querySelector('div.tree-item div.tree-item').click();
193 CertificateManager.onPopulateTree(['personalCertsTab-tree', []]);
208 // Tree should be empty.
209 expectTrue(personalCerts.querySelector('div.tree-item') === null);
218 caCertsTab.querySelector('div.tree-item').click();
219 var certs = caCertsTab.querySelectorAll('div.tree-item div.tree-item')
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/buildbot/
bg.js 31 chrome.extension.getURL("icon.png"), "Tree is " + treeState, status);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/
LintPreferencePage.java 69 import org.eclipse.swt.widgets.Tree;
102 private Tree mTree;
  /build/tools/droiddoc/templates-ds/
customizations.cs 271 <div id="nav-tree" style="display:none" class="scroll-pane">
272 <div id="tree-list"></div>
273 </div><!-- end nav-tree -->
277 <a href='#' onclick='swapNav();return false;'><span id='tree-link'>Use Tree Navigation</span><span id='panel-link' style='display:none'>Use Panel Navigation</span></a>
293 swapNav(); // tree view should be used on mobile
297 if ($("#nav-tree").is(':visible')) {
  /build/tools/droiddoc/templates-sdk/
customizations.cs 274 <div id="nav-tree" style="display:none" class="scroll-pane">
275 <div id="tree-list"></div>
276 </div><!-- end nav-tree -->
280 <a href='#' onclick='swapNav();return false;'><span id='tree-link'>Use Tree Navigation</span><span id='panel-link' style='display:none'>Use Panel Navigation</span></a>
296 swapNav(); // tree view should be used on mobile
300 if ($("#nav-tree").is(':visible')) {

Completed in 959 milliseconds

1 2 3 4 5 6 7 8910