Searched refs:tree (Results 151 - 175 of 1842) sorted by relevance

1234567891011>>

/external/chromium_org/content/public/browser/
H A Ddevtools_protocol_constants_generator.py117 def FormatContents(tree, indent, format_string):
118 outer = dict((key, value) for key, value in tree.iteritems()
120 inner = dict((key, value) for key, value in tree.iteritems()
129 def FormatNamespace(title, tree, indent, format_string):
130 if (not tree):
133 body += FormatContents(tree, indent + " ", format_string)
137 def CreateHeader(tree, output_file):
138 contents = FormatContents(tree, "", "extern const char {0}[];\n")
145 def CreateBody(tree, version, output_file):
146 contents = FormatContents(tree, "", "cons
[all...]
/external/doclava/src/com/google/doclava/
H A DInfoBuilder.java27 import org.antlr.runtime.tree.ParseTree;
28 import org.antlr.runtime.tree.Tree;
69 // create the ParseTreeBuilder to build a parse tree
75 ParseTree tree = builder.getTree();
82 parseFile(tree);
340 * @param tree A ParseTree of the file to parse.
342 private void parseFile(ParseTree tree) { argument
343 if (tree.payload != null) {
344 String payload = tree.payload.toString();
350 tree
392 buildPackage(ParseTree tree) argument
412 buildQualifiedName(ParseTree tree) argument
427 buildImport(ParseTree tree) argument
450 buildClass(ParseTree tree, ClassInfo containingClass) argument
520 parseInterfaces(ParseTree tree, ClassInfo cls) argument
554 buildClassName(ParseTree tree, ClassInfo containingClass, Modifiers modifiers, String commentText, SourcePositionInfo position, ClassType classType) argument
623 buildClassBody(ParseTree tree, ClassInfo cls) argument
682 buildFields(ParseTree tree, ClassInfo containingClass) argument
775 parseExpression(ParseTree tree) argument
820 buildType(ParseTree tree) argument
887 buildTypeVariables(ParseTree tree) argument
961 buildMethod(ParseTree tree, ClassInfo containingClass, boolean isAnnotation) argument
1094 buildMethodParameters(ParseTree tree, ArrayList<ParameterInfo> parameters, StringBuilder flatSignature) argument
1184 buildEnum(ParseTree tree, ClassInfo containingClass) argument
1224 buildEnumBody(ParseTree tree, ClassInfo containingClass) argument
1249 buildEnumConstant(ParseTree tree, ClassInfo containingClass) argument
1305 buildInterface(ParseTree tree, ClassInfo containingClass) argument
1351 buildInterfaceBody(ParseTree tree, ClassInfo iface) argument
1395 buildAnnotationDeclaration(ParseTree tree, ClassInfo containingClass) argument
1431 buildAnnotationBody(ParseTree tree, ClassInfo annotation) argument
1470 buildAnnotationInstance(ParseTree tree, InfoBuilder builder) argument
1548 buildElementValue(ParseTree tree, InfoBuilder builder) argument
1580 getDimensions(ParseTree tree) argument
1775 parseCommentAndPosition(ParseTree tree) argument
1805 setCommentText(ParseTree tree) argument
1825 setPosition(ParseTree tree) argument
1867 parseModifiers(ParseTree tree) argument
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Ddot.rb91 def self.generate( tree, adaptor = nil, tree_template = TREE_TEMPLATE,
93 new.to_dot( tree, adaptor, tree_template, edge_template )
105 def to_dot( tree, adaptor = nil, tree_template = TREE_TEMPLATE,
110 define_nodes( tree, adaptor, tree_template )
113 define_edges( tree, adaptor, tree_template, edge_template )
117 def define_nodes( tree, adaptor, tree_template, known_nodes = nil )
119 tree.nil? and return
120 n = adaptor.child_count( tree )
122 number = node_number( tree )
130 child = adaptor.child_of( tree, inde
[all...]
/external/chromium_org/tools/deep_memory_profiler/visualizer/static/
H A Ddropdown-view.js28 this.$tree_ = $(this.placeholder_).tree({
34 this.$tree_.bind('tree.click', function(event) {
39 this.$tree_.tree('loadData', data);
80 // Update data of subs tree.
85 var $tree = this.$tree_;
86 $tree.tree('loadData', data);
91 var node = $tree.tree('getNodeById', curSub);
92 $tree
[all...]
H A Dmenu-view.js6 * This is a view class showing tree-menu.
26 var $tree = this.$tree_;
29 $tree.tree('selectNode', null);
33 var node = $tree.tree('getNodeById', id);
34 $tree.tree('selectNode', node);
66 // Find child with the same label in target tree.
95 this.$tree_ = $(this.placeholder_).tree({
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DresourcesPanel.css68 .resources.panel .base-storage-tree-element-title {
94 li.selected .base-storage-tree-element-subtitle {
98 .base-storage-tree-element-subtitle {
221 .resource-sidebar-tree-item .icon {
225 .children.small .resource-sidebar-tree-item .icon {
229 .resource-sidebar-tree-item.resources-type-image .icon {
249 .children.small .resource-sidebar-tree-item.resources-type-image .icon {
263 .resource-sidebar-tree-item.resources-type-document .icon {
267 .children.small .resource-sidebar-tree-item.resources-type-document .icon {
271 .resource-sidebar-tree
[all...]
H A DauditsPanel.css32 .audits-sidebar-tree-item .icon {
36 .audit-result-sidebar-tree-item .icon {
158 .audit-result-tree li.parent::before {
175 .audit-result-tree li.parent::before {
180 .audit-result-tree li.parent::before {
184 .audit-result-tree li.parent.expanded::before {
188 .audit-result-tree {
193 .audit-result-tree > ol {
201 .audit-result-tree,
202 .audit-result-tree o
[all...]
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_trees.c13 * 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, in
453 pqdownheap( deflate_state *s, ct_data *tree, int k) argument
492 ct_data *tree = desc->dyn_tree; local
575 gen_codes( ct_data *tree, int max_code, ushf *bl_count) argument
621 ct_data *tree = desc->dyn_tree; local
705 scan_tree( deflate_state *s, ct_data *tree, int max_code) argument
750 send_tree( deflate_state *s, ct_data *tree, int max_code) argument
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
H A DSimpleCParser.java9 import org.antlr.runtime.tree.*;
66 Object tree; field in class:SimpleCParser.program_return
67 public Object getTree() { return tree; }
128 retval.tree = (Object)adaptor.rulePostProcessing(root_0);
129 adaptor.setTokenBoundaries(retval.tree, retval.start, retval.stop);
135 retval.tree = (Object)adaptor.errorNode(input, retval.start, input.LT(-1), re);
145 Object tree; field in class:SimpleCParser.declaration_return
146 public Object getTree() { return tree; }
211 retval.tree = root_0;
212 RewriteRuleSubtreeStream stream_retval=new RewriteRuleSubtreeStream(adaptor,"rule retval",retval!=null?retval.tree
299 Object tree; field in class:SimpleCParser.variable_return
390 Object tree; field in class:SimpleCParser.declarator_return
438 Object tree; field in class:SimpleCParser.functionHeader_return
604 Object tree; field in class:SimpleCParser.formalParameter_return
689 Object tree; field in class:SimpleCParser.type_return
744 Object tree; field in class:SimpleCParser.block_return
908 Object tree; field in class:SimpleCParser.stat_return
1075 Object tree; field in class:SimpleCParser.forStat_return
1210 Object tree; field in class:SimpleCParser.assignStat_return
1298 Object tree; field in class:SimpleCParser.expr_return
1348 Object tree; field in class:SimpleCParser.condExpr_return
1467 Object tree; field in class:SimpleCParser.aexpr_return
1555 Object tree; field in class:SimpleCParser.atom_return
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
H A DSimpleCParser.java9 import org.antlr.runtime.tree.*;
66 Object tree; field in class:SimpleCParser.program_return
67 public Object getTree() { return tree; }
128 retval.tree = (Object)adaptor.rulePostProcessing(root_0);
129 adaptor.setTokenBoundaries(retval.tree, retval.start, retval.stop);
135 retval.tree = (Object)adaptor.errorNode(input, retval.start, input.LT(-1), re);
145 Object tree; field in class:SimpleCParser.declaration_return
146 public Object getTree() { return tree; }
211 retval.tree = root_0;
212 RewriteRuleSubtreeStream stream_retval=new RewriteRuleSubtreeStream(adaptor,"rule retval",retval!=null?retval.tree
299 Object tree; field in class:SimpleCParser.variable_return
390 Object tree; field in class:SimpleCParser.declarator_return
438 Object tree; field in class:SimpleCParser.functionHeader_return
604 Object tree; field in class:SimpleCParser.formalParameter_return
689 Object tree; field in class:SimpleCParser.type_return
744 Object tree; field in class:SimpleCParser.block_return
908 Object tree; field in class:SimpleCParser.stat_return
1075 Object tree; field in class:SimpleCParser.forStat_return
1210 Object tree; field in class:SimpleCParser.assignStat_return
1298 Object tree; field in class:SimpleCParser.expr_return
1348 Object tree; field in class:SimpleCParser.condExpr_return
1467 Object tree; field in class:SimpleCParser.aexpr_return
1555 Object tree; field in class:SimpleCParser.atom_return
[all...]
H A DSimpleCParser.m267 return tree;
272 if (tree != aTree) {
273 if (tree != nil) [tree release];
275 tree = aTree;
299 return tree;
304 if (tree != aTree) {
305 if (tree != nil) [tree release];
307 tree
[all...]
/external/chromium_org/ui/accessibility/
H A Dax_tree_unittest.cc164 AXTree tree(initial_state);
173 EXPECT_FALSE(tree.Unserialize(update));
174 ASSERT_EQ("Bad node_id_to_clear: 2", tree.error());
186 AXTree tree(initial_state);
194 EXPECT_FALSE(tree.Unserialize(update));
195 ASSERT_EQ("Nodes left pending by the update: 2", tree.error());
203 AXTree tree(initial_state);
212 EXPECT_FALSE(tree.Unserialize(update));
213 ASSERT_EQ("Nodes left pending by the update: 2", tree.error());
221 AXTree tree(initial_stat
[all...]
/external/chromium_org/cc/test/
H A Dlayer_tree_json_parser_unittest.cc70 LayerTreeImpl* tree = host_impl.active_tree(); local
72 scoped_ptr<LayerImpl> root_impl(LayerImpl::Create(tree, 1));
73 scoped_ptr<LayerImpl> parent(LayerImpl::Create(tree, 2));
74 scoped_ptr<LayerImpl> child(LayerImpl::Create(tree, 3));
87 tree->SetRootLayer(root_impl.Pass());
99 LayerTreeImpl* tree = host_impl.active_tree(); local
101 scoped_ptr<LayerImpl> root_impl(LayerImpl::Create(tree, 1));
102 scoped_ptr<LayerImpl> touch_layer(LayerImpl::Create(tree, 2));
113 tree->SetRootLayer(root_impl.Pass());
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
H A Devent-hub.rb63 def consume_hidden_token( tree )
65 listener.consume_hidden_token( tree )
69 def consume_node( tree )
71 listener.consume_node( tree )
75 def consume_token( tree )
77 listener.consume_token( tree )
123 def error_node( tree )
125 listener.error_node( tree )
147 def flat_node( tree )
149 listener.flat_node( tree )
[all...]
/external/antlr/antlr-3.4/runtime/Python/unittests/
H A Dtesttreewizard.py7 from antlr3.tree import CommonTreeAdaptor, CommonTree, INVALID_TOKEN_TYPE
132 We need a tree adaptor, use CommonTreeAdaptor.
148 tree = parser.pattern()
149 self.failUnless(isinstance(tree, CommonTree))
150 self.failUnlessEqual(tree.getType(), 10)
151 self.failUnlessEqual(tree.getText(), 'ID')
158 tree = parser.pattern()
159 self.failUnless(isinstance(tree, CommonTree))
160 self.failUnlessEqual(tree.getType(), 10)
161 self.failUnlessEqual(tree
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/
H A Dtree-rewrite.rb21 tree grammar FlatListWalker;
45 tree grammar SimpleTreeWalker;
68 tree grammar CombinedRewriteAndAutoTree;
91 tree grammar AvoidDupWalker;
114 tree grammar LoopWalker;
137 tree grammar AutoDupWalker;
160 tree grammar AutoDupRuleWalker;
182 tree grammar AutoWildcardWalker;
198 tree grammar AutoWildcard2Walker;
214 tree gramma
[all...]
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
H A DCommonTreeAdaptor.js4 * objects, you need to override this and then set the parser tree adaptor to
10 org.antlr.runtime.tree.CommonTreeAdaptor = function() {};
12 org.antlr.lang.extend(org.antlr.runtime.tree.CommonTreeAdaptor,
13 org.antlr.runtime.tree.BaseTreeAdaptor, {
29 return org.antlr.runtime.tree.CommonTreeAdaptor.superclass.create.apply(this, arguments);
31 return new org.antlr.runtime.tree.CommonTree(payload);
130 if ( t instanceof org.antlr.runtime.tree.CommonTree ) {
/external/chromium_org/third_party/boringssl/src/crypto/x509v3/
H A Dpcy_node.c115 X509_POLICY_TREE *tree)
144 if (tree)
146 if (!tree->extra_data)
147 tree->extra_data = sk_X509_POLICY_DATA_new_null();
148 if (!tree->extra_data)
150 if (!sk_X509_POLICY_DATA_push(tree->extra_data, data))
112 level_add_node(X509_POLICY_LEVEL *level, const X509_POLICY_DATA *data, X509_POLICY_NODE *parent, X509_POLICY_TREE *tree) argument
/external/openssl/crypto/x509v3/
H A Dpcy_node.c115 X509_POLICY_TREE *tree)
144 if (tree)
146 if (!tree->extra_data)
147 tree->extra_data = sk_X509_POLICY_DATA_new_null();
148 if (!tree->extra_data)
150 if (!sk_X509_POLICY_DATA_push(tree->extra_data, data))
112 level_add_node(X509_POLICY_LEVEL *level, const X509_POLICY_DATA *data, X509_POLICY_NODE *parent, X509_POLICY_TREE *tree) argument
/external/chromium_org/chrome/browser/resources/bookmark_manager/css/
H A Dbmm.css152 .tree-item [editing] input {
194 .tree-label,
195 .tree-row[may-have-children] > .tree-label,
196 .tree-item[expanded] > .tree-row > .tree-label {
208 #tree-container {
221 #tree {
227 .tree
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.objectweb.asm_3.2.0.v200909071300.jar ... objectweb/asm/commons/ org/objectweb/asm/signature/ org/objectweb/asm/tree/ org/objectweb/asm/tree/analysis/ org/objectweb/asm/util/ org ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DMismatchedTreeNodeException.as2 import org.antlr.runtime.tree.TreeNodeStream;
/external/chromium_org/cc/resources/
H A Dtile.h39 const TilePriority& priority(WhichTree tree) const {
40 return priority_[tree];
62 void SetPriority(WhichTree tree, const TilePriority& priority);
64 void set_is_occluded(WhichTree tree, bool is_occluded) { argument
65 is_occluded_[tree] = is_occluded;
68 bool is_occluded(WhichTree tree) const { return is_occluded_[tree]; }
146 RasterMode DetermineRasterModeForTree(WhichTree tree) const;
/external/chromium_org/third_party/brotli/src/
H A Dshared.mk13 CPPFLAGS += -fno-tree-vrp
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DUtilityCode.py97 tree = parse_from_strings(self.name, self.impl, context=context,
126 (err, tree) = Pipeline.run_pipeline(pipeline, tree, printtree=False)
128 return tree
148 tree = self.get_tree(entries_only=True, cython_scope=cython_scope)
150 entries = tree.scope.entries
160 original_scope = tree.scope
163 tree.scope = dest_scope

Completed in 2929 milliseconds

1234567891011>>