/external/valgrind/memcheck/tests/ |
execve2.vgtest | 2 vgopts: -q --trace-children=yes
|
file_locking.vgtest | 2 vgopts: -q --trace-children=yes
|
thread_alloca.vgtest | 2 vgopts: -q --trace-children=yes
|
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/ |
BaseTree.js | 2 * actually have any user data. ANTLR v3 uses a list of children approach 4 * an empty node whose children represent the list. An empty, but 13 if ( !this.children || i>=this.children.length ) { 16 return this.children[i]; 19 /** Get the children internal List; note that if you directly mess with 23 return this.children; 28 for (i = 0; this.children && i < this.children.length; i++) { 29 t = this.children[i] [all...] |
/external/valgrind/memcheck/tests/solaris/ |
spawn.vgtest | 3 vgopts: -q --trace-children=yes
|
execx.vgtest | 3 vgopts: -q --trace-children=yes --num-callers=1
|
/external/valgrind/none/tests/ |
allexec32.vgtest | 3 vgopts: --trace-children=yes
|
allexec64.vgtest | 3 vgopts: --trace-children=yes
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
BaseTree.java | 34 * actually have any user data. ANTLR v3 uses a list of children approach 36 * an empty node whose children represent the list. An empty, but 40 protected List children; field in class:BaseTree 46 * as there are no fields other than the children list, which cannot 47 * be copied as the children are not considered part of this node. 53 if ( children==null || i>=children.size() ) { 56 return (Tree)children.get(i); 59 /** Get the children internal List; note that if you directly mess with 63 return children; [all...] |
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/ |
SimpleNode.java | 7 protected Node[] children; field in class:SimpleNode 30 if (children == null) { 31 children = new Node[i + 1]; 32 } else if (i >= children.length) { 34 System.arraycopy(children, 0, c, 0, children.length); 35 children = c; 37 children[i] = n; 41 return children[i]; 45 return (children == null) ? 0 : children.length [all...] |
/packages/services/Telephony/src/org/apache/james/mime4j/field/address/parser/ |
SimpleNode.java | 7 protected Node[] children; field in class:SimpleNode 30 if (children == null) { 31 children = new Node[i + 1]; 32 } else if (i >= children.length) { 34 System.arraycopy(children, 0, c, 0, children.length); 35 children = c; 37 children[i] = n; 41 return children[i]; 45 return (children == null) ? 0 : children.length [all...] |
/external/libweave/src/notification/ |
xml_node_unittest.cc | 76 EXPECT_TRUE(node_->children().empty()); 94 EXPECT_EQ(1u, node_->children().size()); 95 EXPECT_EQ("child", node_->children().front()->name()); 96 EXPECT_EQ(node_.get(), GetParent(*node_->children().front().get())); 159 auto children = node_->FindChildren("node3", false); local 160 ASSERT_EQ(1u, children.size()); 161 EXPECT_EQ("node3", children[0]->name()); 162 EXPECT_EQ("6", children[0]->GetAttributeOrEmpty("id")); 164 children = node_->FindChildren("node3", true); 165 ASSERT_EQ(4u, children.size()) 178 auto children = node_->FindChildren("node2\/node3", false); local [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/ |
fix_itertools_imports.py | 16 if imports.type == syms.import_as_name or not imports.children: 17 children = [imports] 19 children = imports.children 20 for child in children[::2]: 29 name_node = child.children[0] 40 children = imports.children[:] or [imports] 42 for child in children: 48 while children and children[-1].type == token.COMMA [all...] |
fix_metaclass.py | 32 for node in parent.children: 35 elif node.type == syms.simple_stmt and node.children: 36 expr_node = node.children[0] 37 if expr_node.type == syms.expr_stmt and expr_node.children: 38 left_side = expr_node.children[0] 49 for node in cls_node.children: 55 for i, node in enumerate(cls_node.children): 63 while cls_node.children[i+1:]: 64 move_node = cls_node.children[i+1] 76 for semi_ind, node in enumerate(stmt_node.children) [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/ |
fix_itertools_imports.py | 16 if imports.type == syms.import_as_name or not imports.children: 17 children = [imports] 19 children = imports.children 20 for child in children[::2]: 29 name_node = child.children[0] 40 children = imports.children[:] or [imports] 42 for child in children: 48 while children and children[-1].type == token.COMMA [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_itertools_imports.py | 16 if imports.type == syms.import_as_name or not imports.children: 17 children = [imports] 19 children = imports.children 20 for child in children[::2]: 29 name_node = child.children[0] 40 children = imports.children[:] or [imports] 42 for child in children: 48 while children and children[-1].type == token.COMMA [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_itertools_imports.py | 16 if imports.type == syms.import_as_name or not imports.children: 17 children = [imports] 19 children = imports.children 20 for child in children[::2]: 29 name_node = child.children[0] 40 children = imports.children[:] or [imports] 42 for child in children: 48 while children and children[-1].type == token.COMMA [all...] |
/toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/ |
readelf.wa | 4 1 DW_TAG_compile_unit [has children] 12 2 DW_TAG_subprogram [no children] 22 3 DW_TAG_base_type [no children]
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRBaseTree.m | 70 * as there are no fields other than the children list, which cannot 71 * be copied as the children are not considered part of this node. 82 children = nil; 92 // children = [[AMutableArray arrayWithCapacity:5] retain]; 93 // [children addObject:node]; 105 if ( children ) [children release]; 111 if ( children == nil || i >= [children count] ) { 114 return (id<ANTLRBaseTree>)[children objectAtIndex:i] [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/META-INF/ |
eclipse.inf | 2 jarprocessor.exclude.children.sign = true
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/META-INF/ |
eclipse.inf | 2 jarprocessor.exclude.children = true
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100/META-INF/ |
eclipse.inf | 2 jarprocessor.exclude.children.sign = true
|
/external/snakeyaml/src/test/resources/examples/ |
list-bean-1.yaml | 0 children:
|
/external/valgrind/VEX/ |
HACKING.README | 2 This directory and its children contain LibVEX, a library for dynamic
|
/external/valgrind/none/tests/solaris/ |
block_all_signals.vgtest | 2 vgopts: --trace-children=yes
|