/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/ |
directory_tree.js | 16 * Generate a list of the directory entries for the top level on the tree. 17 * @return {Array.<DirectoryEntry>} Entries for the top level on the tree. 35 * Checks if the given directory can be on the tree or not. 38 * @return {boolean} True if the path is eligible for the directory tree. 52 * inherits cr.ui.Tree/TreeItem so we can't make them inherit this class. 68 var tree = this.parentTree_ || this; // If no parent, 'this' itself is tree. 74 var item = new DirectoryItem(currentEntry, this, tree); 83 var item = new DirectoryItem(currentEntry, this, tree); 129 * A directory in the tree. Each element represents one directory [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/ |
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/Python/antlr3/ |
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...] |
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...] |
/external/clang/lib/Basic/ |
Diagnostic.cpp | 672 SmallVector<char, 64> Tree; 854 // Print the tree. If this diagnostic already has a tree, skip the 855 // second tree. 856 if (getDiags()->PrintTemplateTree && Tree.empty()) { 864 Tree, QualTypeVals); 865 // If there is no tree information, fall back to regular printing. 866 if (!Tree.empty()) { 872 // Non-tree printing, also the fall-back when tree printing fails [all...] |
/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/clang/lib/AST/ |
ASTDiagnostic.cpp | 271 // Don't fall-back during tree printing. The caller will handle 368 /// QualTypes. For the pair of types, a diff tree will be created containing 370 /// the tree is transformed to a string according to the options passed in. 382 /// PrintTree - Format output string as a tree. 389 /// be printed. When tree printing is selected, this type will show up first 390 /// in the tree. 393 /// ToType - The type that FromType is compared to. Only in tree printing 403 /// DiffTree - A tree representation the differences between two types. 479 /// FlatTree - A flattened tree used to store the DiffNodes. 584 /// StartTraverse - Prepares the tree for recursive traversal [all...] |
/external/llvm/utils/TableGen/ |
CodeGenDAGPatterns.cpp | 844 /// getOperandNum - Return the node corresponding to operand #OpNo in tree [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/ |
Tix.py | 677 Displays a tree view of a directory, its previous directories and its [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/ |
Tix.py | 677 Displays a tree view of a directory, its previous directories and its [all...] |
/external/clang/lib/Sema/ |
SemaChecking.cpp | [all...] |
/cts/tools/signature-tools/lib/ |
stringtemplate.jar | |
/prebuilts/tools/common/m2/internal/com/android/external/eclipse/swt/3.5.0/ |
swt-3.5.0.jar | |
/prebuilts/tools/darwin-x86/swt/ |
swt.jar | |
/prebuilts/tools/darwin-x86_64/swt/ |
swt.jar | |
/prebuilts/tools/linux-x86/swt/ |
swt.jar | |
/prebuilts/tools/linux-x86_64/swt/ |
swt.jar | |
/external/antlr/antlr-3.4/lib/ |
antlr-3.4-complete.jar | |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar | |
/prebuilts/misc/common/antlr/ |
antlr-3.4-complete.jar | |
/prebuilts/tools/windows/swt/ |
swt.jar | |
/prebuilts/tools/windows-x86_64/swt/ |
swt.jar | |