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

1 2 3 4 56 7 8 91011>>

  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
vecir.h 28 DEF_VEC_P(tree); variable
29 DEF_VEC_ALLOC_P(tree,gc);
30 DEF_VEC_ALLOC_P(tree,heap);
except.h 86 tree post_landing_pad;
109 tree type_list;
114 tree filter_list;
119 tree label;
149 tree type_list;
153 tree label;
169 tree failure_decl;
204 /* The tree of all regions for this function. */
219 VEC(tree,gc) *ttype_data;
221 /* The table of all action chains. These encode the eh_region tree i
    [all...]
ipa-prop.h 24 #include "tree.h"
83 tree operand;
101 tree type;
110 tree pfn;
111 tree delta;
125 tree GTY ((tag ("IPA_JF_KNOWN_TYPE"))) base_binfo;
126 tree GTY ((tag ("IPA_JF_CONST"))) constant;
156 tree constant;
165 tree decl;
169 VEC (tree, heap) *types
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
vecir.h 28 DEF_VEC_P(tree); variable
29 DEF_VEC_ALLOC_P(tree,gc);
30 DEF_VEC_ALLOC_P(tree,heap);
except.h 86 tree post_landing_pad;
109 tree type_list;
114 tree filter_list;
119 tree label;
149 tree type_list;
153 tree label;
169 tree failure_decl;
204 /* The tree of all regions for this function. */
219 VEC(tree,gc) *ttype_data;
221 /* The table of all action chains. These encode the eh_region tree i
    [all...]
ipa-prop.h 24 #include "tree.h"
83 tree operand;
101 tree type;
110 tree pfn;
111 tree delta;
125 tree GTY ((tag ("IPA_JF_KNOWN_TYPE"))) base_binfo;
126 tree GTY ((tag ("IPA_JF_CONST"))) constant;
156 tree constant;
165 tree decl;
169 VEC (tree, heap) *types
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
vecir.h 28 DEF_VEC_P(tree); variable
29 DEF_VEC_ALLOC_P(tree,gc);
30 DEF_VEC_ALLOC_P(tree,heap);
except.h 86 tree post_landing_pad;
109 tree type_list;
114 tree filter_list;
119 tree label;
149 tree type_list;
153 tree label;
169 tree failure_decl;
204 /* The tree of all regions for this function. */
219 VEC(tree,gc) *ttype_data;
221 /* The table of all action chains. These encode the eh_region tree i
    [all...]
ipa-prop.h 24 #include "tree.h"
83 tree operand;
101 tree type;
110 tree pfn;
111 tree delta;
125 tree GTY ((tag ("IPA_JF_KNOWN_TYPE"))) base_binfo;
126 tree GTY ((tag ("IPA_JF_CONST"))) constant;
156 tree constant;
165 tree decl;
169 VEC (tree, heap) *types
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
cgraph.h 24 #include "tree.h"
134 tree decl;
201 tree inline_decl;
244 tree decl;
280 tree asm_str;
331 struct cgraph_node *cgraph_node (tree);
332 struct cgraph_node *cgraph_node_for_asm (tree asmname);
336 struct cgraph_local_info *cgraph_local_info (tree);
337 struct cgraph_global_info *cgraph_global_info (tree);
338 struct cgraph_rtl_info *cgraph_rtl_info (tree);
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DotTreeGenerator.cs 33 namespace Antlr.Runtime.Tree
40 * can pass in any kind of tree or use Tree interface method.
42 * ST just to use the org.antlr.runtime.tree.* package.
51 * Tree t = (Tree)r.tree;
80 /** Generate DOT (graphviz) for a whole tree not just a node.
93 * Takes a Tree interface object.
95 public virtual string ToDot( object tree, ITreeAdaptor adaptor
    [all...]
RewriteRuleSubtreeStream.cs 33 namespace Antlr.Runtime.Tree {
55 * tree root node. Also prevents us from duplicating recently-added
61 * Referencing a rule result twice is ok; dup entire tree as
66 * and super.next() doesn't know which to call: dup node or dup tree.
79 object tree = NextCore();
80 while (adaptor.IsNil(tree) && adaptor.GetChildCount(tree) == 1)
81 tree = adaptor.GetChild(tree, 0);
82 //System.Console.WriteLine("_next={0}", ((ITree)tree).ToStringTree())
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Utility/Antlr.Utility.Tree/
DOTTreeGenerator.cs 33 namespace Antlr.Runtime.Tree {
39 * can pass in any kind of tree or use Tree interface method.
41 * ST just to use the org.antlr.runtime.tree.* package.
50 * Tree t = (Tree)r.tree;
78 /** Generate DOT (graphviz) for a whole tree not just a node.
91 * Takes a Tree interface object.
93 public virtual string ToDot(object tree, ITreeAdaptor adaptor)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DotTreeGenerator.cs 33 namespace Antlr.Runtime.Tree
40 * can pass in any kind of tree or use Tree interface method.
42 * ST just to use the org.antlr.runtime.tree.* package.
51 * Tree t = (Tree)r.tree;
80 /** Generate DOT (graphviz) for a whole tree not just a node.
93 * Takes a Tree interface object.
95 public virtual string ToDot( object tree, ITreeAdaptor adaptor
    [all...]
AntlrRuntime_BaseTreeDebugView.cs 33 namespace Antlr.Runtime.Tree
41 public AntlrRuntime_BaseTreeDebugView(BaseTree tree)
43 _tree = tree;
RewriteRuleSubtreeStream.cs 33 namespace Antlr.Runtime.Tree
60 * tree root node. Also prevents us from duplicating recently-added
66 * Referencing a rule result twice is ok; dup entire tree as
71 * and super.next() doesn't know which to call: dup node or dup tree.
86 object tree = NextCore();
87 while (adaptor.IsNil(tree) && adaptor.GetChildCount(tree) == 1)
88 tree = adaptor.GetChild(tree, 0);
89 //System.Console.WriteLine("_next={0}", ((ITree)tree).ToStringTree())
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
RewriteCardinalityException.java 28 package org.antlr.runtime.tree;
TreeRuleReturnScope.java 28 package org.antlr.runtime.tree;
33 * the start property is a tree nodes not Token object
34 * when you are parsing trees. To be generic the tree node types
38 /** First node or root node of tree matched for this rule. */
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
LangParser.m 47 @synthesize tree; /* start of synthesize -- OBJC-Line 1837 */
62 return tree;
67 if (tree != aTree) {
68 if (tree != nil) [tree release];
70 tree = aTree;
76 self.tree = nil;
87 @synthesize tree; /* start of synthesize -- OBJC-Line 1837 */
102 return tree;
107 if (tree != aTree)
    [all...]
  /external/smali/util/src/main/java/ds/tree/
Visitor.java 27 package ds.tree;
  /external/webkit/Source/WebCore/dom/
TransformSourceLibxslt.cpp 31 #include <libxml/tree.h>
  /frameworks/testing/uiautomator/utils/uiautomatorviewer/src/com/android/uiautomator/tree/
AttributePair.java 17 package com.android.uiautomator.tree;
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestASTConstruction.java 45 String found = g.getRule("a").tree.toStringTree();
55 String found = g.getRule("a").tree.toStringTree();
66 String found = g.getRule("A").tree.toStringTree();
77 String found = g.getRule("a").tree.toStringTree();
88 String found = g.getRule("a").tree.toStringTree();
99 String found = g.getRule("a").tree.toStringTree();
110 String found = g.getRule("a").tree.toStringTree();
121 String found = g.getRule("a").tree.toStringTree();
132 String found = g.getRule("a").tree.toStringTree();
142 String found = g.getRule("a").tree.toStringTree()
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_bookmarks_unittest.cc 34 DictionaryValue* tree = extension_bookmark_helpers::GetNodeDictionary( local
39 tree->GetList(keys::kChildrenKey, &children);
44 DictionaryValue* tree = extension_bookmark_helpers::GetNodeDictionary( local
49 tree->GetList(keys::kChildrenKey, &children);
54 DictionaryValue* tree = extension_bookmark_helpers::GetNodeDictionary( local
59 tree->GetList(keys::kChildrenKey, &children);
69 DictionaryValue* tree = extension_bookmark_helpers::GetNodeDictionary( local
74 tree->GetList(keys::kChildrenKey, &children);
  /external/chromium/chrome/browser/resources/sync_internals/
sync_node_browser.css 11 #sync-node-tree-container {
22 #sync-node-tree {
29 #sync-node-tree .leaf .tree-label {

Completed in 796 milliseconds

1 2 3 4 56 7 8 91011>>