HomeSort by relevance Sort by last modified time
    Searched refs:tree (Results 151 - 175 of 2064) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
LangParser.h 43 ANTLRCommonTree *tree; /* ObjC start of memVars() */ variable
47 @property (retain, getter=getTree, setter=setTree:) ANTLRCommonTree *tree; variable
62 ANTLRCommonTree *tree; /* ObjC start of memVars() */ variable
66 @property (retain, getter=getTree, setter=setTree:) ANTLRCommonTree *tree; variable
81 ANTLRCommonTree *tree; /* ObjC start of memVars() */ variable
85 @property (retain, getter=getTree, setter=setTree:) ANTLRCommonTree *tree; variable
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
function.h 179 /* Number of tree-constants deferred during the expansion of this
266 tree stack_protect_guard;
533 tree decl;
537 tree static_chain_decl;
542 tree nonlocal_goto_save_area;
545 vec<tree, va_gc> *local_decls;
650 add_local_decl (struct function *fun, tree d)
678 tree type;
679 tree var_decl;
692 void types_used_by_var_decl_insert (tree type, tree var_decl)
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
TreeConstants.as 1 package org.antlr.runtime.tree
RewriteCardinalityException.as 28 package org.antlr.runtime.tree {
  /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...]
  /external/icu/icu4c/as_is/
bomlist.py 16 tree = os.walk(".") variable
27 for ent in tree:
  /external/smali/smalidea/src/main/java/org/jf/smalidea/
SmaliASTFactory.java 4 import com.intellij.psi.impl.source.tree.LeafElement;
5 import com.intellij.psi.tree.IElementType;
  /external/toolchain-utils/user_activity_benchmarks/
collect_pprof_data.sh 6 # Collects the pprof tree and top outputs.
10 # tree output is stored in the pprof_tree_results_path.
34 pprof --tree "$LOCAL_CWP_RESULTS_PATH/${symbolized_profile}" > \
37 echo "Failed to extract the pprof tree output for the " \
  /external/libnl/lib/route/cls/
ematch.c 240 * @name Tree
244 * Allocate ematch tree object
249 struct rtnl_ematch_tree *tree; local
251 if (!(tree = calloc(1, sizeof(*tree))))
254 NL_INIT_LIST_HEAD(&tree->et_list);
255 tree->et_progid = progid;
257 NL_DBG(2, "allocated new ematch tree %p, progid=%u\n", tree, progid);
259 return tree;
344 struct rtnl_ematch_tree *tree; local
634 struct rtnl_ematch_tree *tree; local
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
RunnerController.java 44 import javax.swing.tree.DefaultMutableTreeNode;
45 import javax.swing.tree.DefaultTreeModel;
46 import javax.swing.tree.TreeCellRenderer;
47 import javax.swing.tree.TreeModel;
48 import javax.swing.tree.TreePath;
67 private JTree tree = new JTree(); field in class:RunnerController.RunnerView
69 private JScrollPane scroll = new JScrollPane(tree,
75 tree.setOpaque(false);
103 view.tree.setModel(new RunnerTreeModel(suite));
104 view.tree.setCellRenderer(new RunnerTreeRenderer())
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/
TreeRewriteParser.m 45 @synthesize tree; /* start of synthesize -- OBJC-Line 1837 */
60 return tree;
65 if (tree != aTree) {
66 if (tree != nil) [tree release];
68 tree = aTree;
74 self.tree = nil;
85 @synthesize tree; /* start of synthesize -- OBJC-Line 1837 */
100 return tree;
105 if (tree != aTree)
    [all...]
TreeRewriteParser.h 38 ANTLRCommonTree *tree; /* ObjC start of memVars() */ variable
42 @property (retain, getter=getTree, setter=setTree:) ANTLRCommonTree *tree; variable
57 ANTLRCommonTree *tree; /* ObjC start of memVars() */ variable
61 @property (retain, getter=getTree, setter=setTree:) ANTLRCommonTree *tree; variable
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
ASTBase.cpp 1 /* Abstract syntax tree manipulation functions
41 /* ensure that tree manipulation variables are current after a rule
88 ASTBase *tree = this; local
90 while ( tree!= NULL )
92 if ( tree->_down != NULL ) {
93 tree->preorder_before_action(pData); // MR1
95 tree->preorder_action(pData);
96 if ( tree->_down!=NULL )
98 tree->_down->preorder(pData);
99 tree->preorder_after_action(pData); // MR1
109 ASTBase* tree = this; local
    [all...]
  /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...]
  /frameworks/base/tools/aapt/
Command.cpp 235 ResXMLTree tree; local
236 tree.setTo(manifestAsset->getBuffer(true),
238 printXMLBlock(&tree);
250 static void printResolvedResourceAttribute(const ResTable& resTable, const ResXMLTree& tree,
254 AaptXml::getResolvedResourceAttribute(resTable, tree, attrRes, &value, outError);
260 String8 result = AaptXml::getResolvedAttribute(resTable, tree, attrRes, outError);
330 static void printCompatibleScreens(ResXMLTree& tree, String8* outError) {
336 while ((code=tree.next()) != ResXMLTree::END_DOCUMENT && code != ResXMLTree::BAD_DOCUMENT) {
348 const char16_t* ctag16 = tree.getElementName(&len);
355 int32_t screenSize = AaptXml::getIntegerAttribute(tree,
431 ResXMLTree tree; local
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCParser.m 234 @synthesize tree; /* start of synthesize -- OBJC-Line 1837 */
249 return tree;
254 if (tree != aTree) {
255 if (tree != nil) [tree release];
257 tree = aTree;
263 self.tree = nil;
274 @synthesize tree; /* start of synthesize -- OBJC-Line 1837 */
289 return tree;
294 if (tree != aTree)
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/maven/shared/maven-dependency-tree/2.1/
maven-dependency-tree-2.1.jar 
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
trees.c 13 * Each code tree is stored in a compressed form which is itself
87 /* The static literal tree. Since the bit lengths are imposed, there is no
89 * The codes 286 and 287 are needed to build a canonical tree (see _tr_init
94 /* The static distance tree. (Actually a trivial tree since all codes use
118 const ct_data *static_tree; /* static tree or NULL */
121 int elems; /* max number of elements in the tree */
140 local void pqdownheap OF((deflate_state *s, ct_data *tree, int k));
142 local void gen_codes OF((ct_data *tree, int max_code, ushf *bl_count));
144 local void scan_tree OF((deflate_state *s, ct_data *tree, int max_code));
492 ct_data *tree = desc->dyn_tree; local
621 ct_data *tree = desc->dyn_tree; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
trees.c 12 * Each code tree is stored in a compressed form which is itself
91 /* The static literal tree. Since the bit lengths are imposed, there is no
93 * The codes 286 and 287 are needed to build a canonical tree (see _tr_init
98 /* The static distance tree. (Actually a trivial tree since all codes use
122 const ct_data *static_tree; /* static tree or NULL */
125 int elems; /* max number of elements in the tree */
144 local void pqdownheap OF((deflate_state *s, ct_data *tree, int k));
146 local void gen_codes OF((ct_data *tree, int max_code, ushf *bl_count));
148 local void scan_tree OF((deflate_state *s, ct_data *tree, int max_code));
494 ct_data *tree = desc->dyn_tree; local
623 ct_data *tree = desc->dyn_tree; local
    [all...]
  /external/ImageMagick/PerlMagick/demo/
Makefile 6 perl tree.pl
16 /bin/rm -f demo.jpg button.gif model.png shadow.gif tree.gif \
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/output1/
TreeRewriteParser.h 21 ANTLRCommonTree *tree; // start of memVars() variable
25 @property (retain, getter=getTree, setter=setTree:) ANTLRCommonTree *tree; variable
35 ANTLRCommonTree *tree; // start of memVars() variable
39 @property (retain, getter=getTree, setter=setTree:) ANTLRCommonTree *tree; variable
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestBufferedTreeNodeStream.java 31 import org.antlr.runtime.tree.BufferedTreeNodeStream;
32 import org.antlr.runtime.tree.CommonTree;
33 import org.antlr.runtime.tree.Tree;
34 import org.antlr.runtime.tree.TreeNodeStream;
52 Tree r0 = new CommonTree(new CommonToken(101));
53 Tree r1 = new CommonTree(new CommonToken(102));
56 Tree r2 = new CommonTree(new CommonToken(106));
67 assertEquals(107, ((Tree)stream.LT(1)).getType());
71 assertEquals(104, ((Tree)stream.LT(1)).getType())
    [all...]
  /external/libxml2/doc/examples/
parse1.c 3 * synopsis: Parse an XML file to a tree and free it
5 * into a tree and and xmlFreeDoc() to free the resulting tree
14 #include <libxml/tree.h>
20 * Parse the resource and free the resulting tree
24 xmlDocPtr doc; /* the resulting document tree */
parse3.c 3 * synopsis: Parse an XML document in memory to a tree and free it
5 * into a tree and and xmlFreeDoc() to free the resulting tree
14 #include <libxml/tree.h>
23 * Parse the in memory document and free the resulting tree
27 xmlDocPtr doc; /* the resulting document tree */
  /external/libxml2/
enc.h 15 #include <libxml/tree.h>

Completed in 425 milliseconds

1 2 3 4 5 67 8 91011>>