Searched defs:children (Results 26 - 50 of 285) sorted by relevance

1234567891011>>

/external/snakeyaml/src/test/java/org/yaml/snakeyaml/recursive/
H A DHuman.java27 protected Set<Human> children; field in class:Human
30 children = new HashSet<Human>();
66 return children;
69 public void setChildren(Set<Human> children) { argument
70 this.children = children;
H A DHuman2.java27 protected Map<Human2, String> children; field in class:Human2
30 children = new HashMap<Human2, String>();
66 return children;
69 public void setChildren(Map<Human2, String> children) { argument
70 this.children = children;
H A DHuman3.java27 protected List<Human3> children; field in class:Human3
30 children = new ArrayList<Human3>();
66 return children;
69 public void setChildren(List<Human3> children) { argument
70 this.children = children;
H A DHuman_WithArrayOfChildrenTest.java35 protected Human_WithArrayOfChildren[] children; field in class:Human_WithArrayOfChildrenTest.Human_WithArrayOfChildren
38 children = new Human_WithArrayOfChildren[0];
74 return children;
77 public void setChildren(Human_WithArrayOfChildren[] children) { argument
78 this.children = children;
114 Human_WithArrayOfChildren[] children = new Human_WithArrayOfChildren[] { son, daughter };
115 father.setChildren(children);
116 mother.setChildren(children);
148 HumanWithChildrenArrayDescription.putListPropertyType("children",
[all...]
/external/vixl/test/
H A Dtest-use-scratch-register-scope.cc88 int children = std::max(0, max_children - depth); local
89 int descendents = children;
90 while (children-- > 0) {
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
H A Dcore-extensions.rb212 def self.children( directory ) singleton method in class:Dir
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DCompositeGrammarTree.java35 protected List<CompositeGrammarTree> children; field in class:CompositeGrammarTree
50 if ( children==null ) {
51 children = new ArrayList<CompositeGrammarTree>();
53 children.add(t);
62 for (int i = 0; r==null && children!=null && i < children.size(); i++) {
63 CompositeGrammarTree child = children.get(i);
93 for (int i = 0; n==null && children!=null && i < children.size(); i++) {
94 CompositeGrammarTree child = children
[all...]
/external/chromium-trace/catapult/common/py_utils/py_utils/refactor/
H A Dsnippet.py34 def children(self): member in class:Snippet
35 """Return a list of this node's children."""
58 for child in self.children:
63 for child in self.children:
77 (snippet_type, self, self.children))
81 for child in self.children:
85 for child in self.children:
129 def children(self): member in class:TokenSnippet
157 def __init__(self, symbol_type, children):
159 self._children = children
170 def children(self): member in class:Symbol
174 def children(self, value): # pylint: disable=arguments-differ member in class:Symbol
[all...]
/external/deqp/framework/common/
H A DtcuTestCase.cpp55 TestNode::TestNode (TestContext& testCtx, TestNodeType nodeType, const char* name, const char* description, const vector<TestNode*>& children) argument
62 for (int i = 0; i < (int)children.size(); i++)
63 addChild(children[i]);
90 // children only in group nodes
93 // children must have the same class
118 TestCaseGroup::TestCaseGroup (TestContext& testCtx, const char* name, const char* description, const vector<TestNode*>& children) argument
119 : TestNode(testCtx, NODETYPE_GROUP, name, description, children)
/external/deqp/modules/gles3/functional/
H A Des3fFunctionalTests.cpp161 std::vector<tcu::TestNode*> children = shaderLibrary.loadShaderFile(fileName.c_str()); local
163 for (int i = 0; i < (int)children.size(); i++)
164 addChild(children[i]);
/external/deqp/modules/gles31/functional/
H A Des31fAndroidExtensionPackES31ATests.cpp260 const std::vector<tcu::TestNode*>& children = shaderLibrary.loadShaderFile("shaders/android_extension_pack.test"); local
261 tcu::TestCaseGroup* const group = new tcu::TestCaseGroup(m_testCtx, "shaders", "Shader tests", children);
H A Des31fFunctionalTests.cpp122 std::vector<tcu::TestNode*> children = shaderLibrary.loadShaderFile(fileName.c_str()); local
124 for (int i = 0; i < (int)children.size(); i++)
125 addChild(children[i]);
/external/elfutils/tests/
H A Dshow-abbrev.c82 int children = dwarf_abbrevhaschildren (abbrev); local
83 if (children < 0)
91 printf ("abbrev[%llu]: code = %u, tag = %u, children = %d\n",
92 (unsigned long long int) offset, code, tag, children);
/external/guava/guava/src/com/google/common/collect/
H A DBinaryTreeTraverser.java55 * Returns the children of this node, in left-to-right order.
58 public final Iterable<T> children(final T root) { method in class:BinaryTreeTraverser
H A DTreeTraverser.java58 * Returns the children of the specified node. Must not contain null.
60 public abstract Iterable<T> children(T root); method in class:TreeTraverser
67 * iteration is in progress or when the iterators generated by {@link #children} are advanced.
104 Iterator<T> childItr = children(result).iterator();
117 * iteration is in progress or when the iterators generated by {@link #children} are advanced.
168 return new PostOrderNode<T>(t, children(t).iterator());
177 * iteration is in progress or when the iterators generated by {@link #children} are advanced.
211 Iterables.addAll(queue, children(result));
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DTreeTraverser.java50 * Returns the children of the specified node. Must not contain null.
52 public abstract Iterable<T> children(T root); method in class:TreeTraverser
59 * iteration is in progress or when the iterators generated by {@link #children} are advanced.
96 Iterator<T> childItr = children(result).iterator();
109 * iteration is in progress or when the iterators generated by {@link #children} are advanced.
160 return new PostOrderNode<T>(t, children(t).iterator());
169 * iteration is in progress or when the iterators generated by {@link #children} are advanced.
203 for (T child : children(result)) {
/external/jacoco/org.jacoco.core/src/org/jacoco/core/analysis/
H A DCoverageNodeImpl.java85 * @param children
88 public void increment(final Collection<? extends ICoverageNode> children) { argument
89 for (final ICoverageNode child : children) {
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/
H A DMultiReportVisitorTest.java69 private final List<MockGroupVisitor> children = new ArrayList<MockGroupVisitor>(); field in class:MultiReportVisitorTest.MockGroupVisitor
77 children.add(new MockGroupVisitor(bundle.getName()));
82 children.add(child);
88 return name + children;
/external/lisa/libs/utils/platforms/
H A Djuno_energy.py95 children=[ variable
100 children=[a53_cpu_node(c) for c in a53s]), variable
105 children=[a57_cpu_node(c) for c in a57s])]), variable
106 root_power_domain=PowerDomain(idle_states=[], children=[
109 children=[PowerDomain(idle_states=["WFI", "cpu-sleep-0"], cpu=c) variable
113 children=[PowerDomain(idle_states=["WFI", "cpu-sleep-0"], cpu=c) variable
/external/ltp/testcases/kernel/syscalls/waitpid/
H A Dwaitpid_common.h107 static int reap_children(pid_t wp_pid, int wp_opts, pid_t *children, int len) argument
154 if (pid == children[i]) {
155 children[i] = 0;
178 if (children[i]) {
179 tst_res(TFAIL, "Pid %d not reaped", children[i]);
/external/mesa3d/src/gallium/drivers/swr/rasterizer/common/
H A Drdtsc_buckets_shared.h43 std::vector<BUCKET> children; member in struct:BUCKET
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
H A DHuffman.java137 node = node.children[c];
138 if (node.children == null) {
152 node = node.children[c];
153 if (node.children != null || node.terminalBits > nbits) {
177 if (current.children == null) {
180 if (current.children[i] == null) {
181 current.children[i] = new Node();
183 current = current.children[i];
190 current.children[i] = terminal;
197 private final Node[] children; field in class:Huffman.Node
[all...]
/external/protobuf/java/util/src/main/java/com/google/protobuf/util/
H A DFieldMaskTree.java68 public TreeMap<String, Node> children = new TreeMap<String, Node>(); field in class:FieldMaskTree.Node
106 if (!createNewBranch && node != root && node.children.isEmpty()) {
110 if (node.children.containsKey(part)) {
111 node = node.children.get(part);
115 node.children.put(part, tmp);
120 node.children.clear();
136 if (root.children.isEmpty()) {
146 if (node.children.isEmpty()) {
150 for (Entry<String, Node> entry : node.children.entrySet()) {
161 if (root.children
[all...]
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/composer/
H A DComposer.java192 final ArrayList<Node> children = new ArrayList<Node>();
193 SequenceNode node = new SequenceNode(nodeTag, resolved, children,
199 children.add(composeNode(node));
218 final List<NodeTuple> children = new ArrayList<NodeTuple>();
219 MappingNode node = new MappingNode(nodeTag, resolved, children, startEvent.getStartMark(),
225 composeMappingChildren(children, node);
232 protected void composeMappingChildren(List<NodeTuple> children, MappingNode node) { argument
238 children.add(new NodeTuple(itemKey, itemValue));
/external/snakeyaml/src/test/java/examples/collections/
H A DTypeSafeListWithInterfaceTest.java83 private List<String> children; field in class:TypeSafeListWithInterfaceTest.ListBean
92 return children;
95 public void setChildren(List<String> children) { argument
96 this.children = children;

Completed in 712 milliseconds

1234567891011>>