/external/antlr/src/org/antlr/runtime/tree/ |
D | BaseTreeAdaptor.java | 70 return ((Tree)tree).isNil(); in isNil() 107 ((Tree)t).addChild((Tree)child); in addChild() 139 Tree newRootTree = (Tree)newRoot; in becomeRoot() 140 Tree oldRootTree = (Tree)oldRoot; in becomeRoot() 147 if ( nc==1 ) newRootTree = (Tree)newRootTree.getChild(0); in becomeRoot() 163 Tree r = (Tree)root; in rulePostProcessing() 169 r = (Tree)r.getChild(0); in rulePostProcessing() 186 Tree t = (Tree)create(fromToken); in create() 195 Tree t = (Tree)create(fromToken); in create() 201 Tree t = (Tree)create(fromToken); in create() [all …]
|
D | BaseTree.java | 39 public abstract class BaseTree implements Tree { 49 public BaseTree(Tree node) { in BaseTree() 52 public Tree getChild(int i) { in getChild() 56 return (Tree)children.get(i); in getChild() 66 public Tree getFirstChildWithType(int type) { in getFirstChildWithType() 68 Tree t = (Tree) children.get(i); in getFirstChildWithType() 89 public void addChild(Tree t) { in addChild() 105 Tree c = (Tree)childTree.children.get(i); in addChild() 134 Tree t = (Tree) kids.get(i); in addChildren() 139 public void setChild(int i, Tree t) { in setChild() [all …]
|
D | CommonTreeAdaptor.java | 52 return ((Tree)t).dupNode(); in dupNode() 100 ((Tree)t).setTokenStartIndex(start); in setTokenBoundaries() 101 ((Tree)t).setTokenStopIndex(stop); in setTokenBoundaries() 106 return ((Tree)t).getTokenStartIndex(); in getTokenStartIndex() 111 return ((Tree)t).getTokenStopIndex(); in getTokenStopIndex() 116 return ((Tree)t).getText(); in getText() 121 return ((Tree)t).getType(); in getType() 137 return ((Tree)t).getChild(i); in getChild() 142 return ((Tree)t).getChildCount(); in getChildCount() 147 return ((Tree)t).getParent(); in getParent() [all …]
|
D | Tree.java | 44 public interface Tree { interface 45 public static final Tree INVALID_NODE = new CommonTree(Token.INVALID_TOKEN); 47 Tree getChild(int i); in getChild() 53 public Tree getParent(); in getParent() 55 public void setParent(Tree t); in setParent() 61 public Tree getAncestor(int ttype); in getAncestor() 79 void addChild(Tree t); in addChild() 82 public void setChild(int i, Tree t); in setChild() 112 Tree dupNode(); in dupNode()
|
D | CommonTree.java | 70 public Tree dupNode() { in dupNode() 161 public Tree getParent() { in getParent() 165 public void setParent(Tree t) { in setParent()
|
D | TreeRewriter.java | 103 System.out.println(((Tree)oldTree).toStringTree()+" -> "+ in reportTransformation() 104 ((Tree)newTree).toStringTree()); in reportTransformation()
|
D | CommonErrorNode.java | 77 else if ( start instanceof Tree ) { in getText()
|
D | ParseTree.java | 47 public Tree dupNode() { in dupNode()
|
/external/llvm/utils/TableGen/ |
D | ClangASTNodesEmitter.cpp | 25 const ChildMap &Tree, in EmitNode() argument 30 ChildIterator i = Tree.lower_bound(Base), e = Tree.upper_bound(Base); in EmitNode() 55 if (Tree.find(R) != Tree.end()) { in EmitNode() 57 = EmitNode(Tree, OS, R); in EmitNode() 108 ChildMap Tree; in run() local 114 Tree.insert(std::make_pair(R->getValueAsDef("Base"), R)); in run() 116 Tree.insert(std::make_pair(&Root, R)); in run() 119 EmitNode(Tree, OS, &Root); in run()
|
D | ClangASTNodesEmitter.h | 55 std::pair<Record *, Record *> EmitNode (const ChildMap &Tree, raw_ostream& OS,
|
/external/chromium/chrome/browser/resources/options/ |
D | certificate_tree.js | 6 const Tree = cr.ui.Tree; 56 __proto__: Tree.prototype, 60 Tree.prototype.decorate.call(this); class 66 Tree.prototype.addAt.call(this, child, index); 73 Tree.prototype.remove.call(this, child);
|
/external/chromium/chrome/browser/resources/bookmark_manager/js/bmm/ |
D | bookmark_tree.js | 7 const Tree = cr.ui.Tree; 164 __proto__: Tree.prototype, 167 Tree.prototype.decorate.call(this); class 287 Tree.prototype.addAt.call(this, child, index); 294 Tree.prototype.remove.call(this, child);
|
/external/chromium/chrome/browser/resources/ |
D | cookies_tree.js | 6 const Tree = cr.ui.Tree; 94 __proto__: Tree.prototype, 108 Tree.prototype.addAt.call(this, child, index); class 115 Tree.prototype.remove.call(this, child);
|
/external/chromium/chrome/browser/resources/shared/js/cr/ui/ |
D | tree.js | 42 var Tree = cr.ui.define('tree'); 44 Tree.prototype = { class 330 while (p && !(p instanceof TreeItem) && !(p instanceof Tree)) { 342 while (t && !(t instanceof Tree)) { 386 while (pi && !(pi instanceof Tree)) { 661 Tree: Tree,
|
/external/antlr/src/org/antlr/runtime/ |
D | RecognitionException.java | 152 else if ( this.node instanceof Tree) { in extractInformationFromTreeNodeStream() 153 this.line = ((Tree)this.node).getLine(); in extractInformationFromTreeNodeStream() 154 this.charPositionInLine = ((Tree)this.node).getCharPositionInLine(); in extractInformationFromTreeNodeStream()
|
D | MismatchedTreeNodeException.java | 31 import org.antlr.runtime.tree.Tree;
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/ |
D | ast.ml | 2 * Abstract Syntax Tree (aka Parse Tree)
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/ |
D | ast.ml | 2 * Abstract Syntax Tree (aka Parse Tree)
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/ |
D | ast.ml | 2 * Abstract Syntax Tree (aka Parse Tree)
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/ |
D | ast.ml | 2 * Abstract Syntax Tree (aka Parse Tree)
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/ |
D | ast.ml | 2 * Abstract Syntax Tree (aka Parse Tree)
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/ |
D | ast.ml | 2 * Abstract Syntax Tree (aka Parse Tree)
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/textana/en-US/ |
D | en-US_kdt_posd.dtfmt | 4 ! Decision Tree Configuration <Part-Of-Speech Disambiguation> for language en-US
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/textana/de-DE/ |
D | de-DE_kdt_posd.dtfmt | 4 ! Decision Tree Configuration <Part-Of-Speech Disambiguation> for language de-DE
|
/external/chromium/chrome/browser/resources/sync_internals/ |
D | sync_node_browser.js | 90 cr.ui.decorate(syncNodeBrowser, cr.ui.Tree);
|