Searched defs:children (Results 101 - 125 of 285) sorted by relevance

1234567891011>>

/external/mockftpserver/tags/2.3/src/main/java/org/mockftpserver/fake/filesystem/
H A DAbstractFakeFileSystem.java208 List children = children(path);
209 Iterator iter = children.iterator();
236 List children = children(path);
237 Iterator iter = children.iterator();
278 // move the children. Remove the FROM path after all children have been moved
281 List children = descendents(fromPath);
282 Iterator iter = children
625 private List children(String path) { method in class:AbstractFakeFileSystem
[all...]
/external/mockftpserver/tags/2.4/src/main/java/org/mockftpserver/fake/filesystem/
H A DAbstractFakeFileSystem.java209 List children = children(path);
210 Iterator iter = children.iterator();
237 List children = children(path);
238 Iterator iter = children.iterator();
279 // move the children. Remove the FROM path after all children have been moved
282 List children = descendents(fromPath);
283 Iterator iter = children
626 private List children(String path) { method in class:AbstractFakeFileSystem
[all...]
/external/mockftpserver/tags/2.5/src/main/java/org/mockftpserver/fake/filesystem/
H A DAbstractFakeFileSystem.java209 List children = children(path);
210 Iterator iter = children.iterator();
237 List children = children(path);
238 Iterator iter = children.iterator();
279 // move the children. Remove the FROM path after all children have been moved
282 List children = descendents(fromPath);
283 Iterator iter = children
626 private List children(String path) { method in class:AbstractFakeFileSystem
[all...]
/external/pdfium/xfa/fxfa/parser/
H A Dcxfa_nodehelper.cpp99 CXFA_NodeArray children; local
100 parent->GetNodeList(children, XFA_NODEFILTER_Children);
101 int32_t nChildren = children.GetSize();
103 CXFA_Node* child = children[i];
170 CXFA_NodeArray children; local
171 parent->GetNodeList(children, XFA_NODEFILTER_Children);
172 int32_t nChildren = children.GetSize();
174 CXFA_Node* child = children[i];
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/res/
H A DViewLoader.java152 private List<ViewNode> children = new ArrayList<ViewNode>(); field in class:ViewLoader.ViewNode
163 return children;
167 children.add(viewNode);
173 for (ViewNode child : children) {
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowViewGroup.java21 private List<View> children = new ArrayList<View>(); field in class:ShadowViewGroup
32 for (View child : children) {
48 for (View child : children) {
66 children.add(child);
68 children.add(index, child);
92 if (children.get(i) == child) {
101 return children.size();
106 if( index >= children.size() ){ return null; }
107 return children.get(index);
112 for (View child : children) {
[all...]
/external/skia/src/gpu/
H A DGrFragmentProcessor.cpp21 // to pending executions for all children.
444 static sk_sp<GrFragmentProcessor> Make(sk_sp<GrFragmentProcessor>* children, int cnt) { argument
445 return sk_sp<GrFragmentProcessor>(new SeriesFragmentProcessor(children, cnt));
470 SeriesFragmentProcessor(sk_sp<GrFragmentProcessor>* children, int cnt) argument
471 : INHERITED(OptFlags(children, cnt)) {
475 this->registerChildProcessor(std::move(children[i]));
479 static OptimizationFlags OptFlags(sk_sp<GrFragmentProcessor>* children, int cnt) { argument
482 flags &= children[i]->optimizationFlags();
/external/skia/tests/
H A DProcessorTest.cpp382 SkString children; local
385 children.append("(");
387 children.append(fp->childProcessor(c).name());
388 children.append(c == fp->numChildProcessors() - 1 ? ")" : ", ");
390 SkDebugf("%s %s\n", fp->name(), children.c_str());
/external/smali/util/src/main/java/org/jf/util/
H A DClassFileNameHandler.java295 private final Multimap<String, FileSystemEntry> children = ArrayListMultimap.create(); field in class:ClassFileNameHandler.DirectoryEntry
309 Collection<FileSystemEntry> entries = children.get(normalizedChildName);
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
H A DRegionInfo.h222 RegionSet children; member in class:llvm::Region
238 /// verifyRegionNest - Verify if the region and its children are valid
433 /// @param moveChildren Move the children of this region, that are also
469 iterator begin() { return children.begin(); }
470 iterator end() { return children.end(); }
472 const_iterator begin() const { return children.begin(); }
473 const_iterator end() const { return children.end(); }
500 /// are direct children of this Region. It does not iterate over any
/external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
H A DTimeline.java80 * Creates a new timeline with a 'sequence' behavior. Its children will
90 * Creates a new timeline with a 'parallel' behavior. Its children will be
105 private final List<BaseTween<?>> children = new ArrayList<BaseTween<?>>(10); field in class:Timeline
123 children.clear();
145 current.children.add(tween);
158 current.children.add(timeline);
164 * overlap the preceding and following children.
171 current.children.add(Tween.mark().delay(time));
186 current.children.add(tl);
202 current.children
[all...]
/external/v8/src/compiler/
H A Dloop-analysis.h40 const ZoneVector<Loop*>& children() const { return children_; } function in class:v8::internal::compiler::LoopTree::Loop
/external/v8/src/profiler/
H A Dallocation-tracker.h39 Vector<AllocationTraceNode*> children() const { return children_.ToVector(); } function in class:v8::internal::AllocationTraceNode
/external/v8/src/regexp/
H A Dregexp-ast.cc31 static Interval ListCaptureRegisters(ZoneList<RegExpTree*>* children) { argument
33 for (int i = 0; i < children->length(); i++)
34 result = result.Union(children->at(i)->CaptureRegisters());
/external/webrtc/webrtc/modules/desktop_capture/
H A Dmouse_cursor_monitor_x11.cc27 // These windows may not be immediate children of the root window, because
29 // XQueryPointer() expects to be passed children of the root. This function
34 // If the window is in WithdrawnState then look at all of its children.
36 ::Window *children; local
38 if (!XQueryTree(display, window, &root, &parent, &children,
44 if (children)
45 XFree(children);
/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_new_introspect.c184 char **children; local
188 dbus_connection_list_registered(con, path, &children);
189 for (i = 0; children[i]; i++)
190 wpabuf_printf(xml, "<node name=\"%s\"/>", children[i]);
191 dbus_free_string_array(children);
/external/clang/include/clang/AST/
H A DStmtObjC.h68 child_range children() { function in class:clang::ObjCForCollectionStmt
116 child_range children() { return child_range(&Body, &Body + 1); } function in class:clang::ObjCAtCatchStmt
148 child_range children() { function in class:clang::ObjCAtFinallyStmt
248 child_range children() {
307 child_range children() { function in class:clang::ObjCAtTryStmt
341 child_range children() { return child_range(&Throw, &Throw+1); } function in class:clang::ObjCAtThrowStmt
370 child_range children() { return child_range(&SubStmt, &SubStmt + 1); } function in class:clang::ObjCAutoreleasePoolStmt
/external/clang/lib/AST/
H A DOpenMPClause.cpp20 OMPClause::child_range OMPClause::children() { function in class:OMPClause
26 return static_cast<Class *>(this)->children();
/external/deqp/external/vulkancts/modules/vulkan/
H A DvktBuildPrograms.cpp344 vector<tcu::TestNode*> children; local
345 children.push_back(new TestPackage(testCtx));
346 return new tcu::TestPackageRoot(testCtx, children);
/external/icu/icu4c/source/i18n/
H A Dregion.cpp587 * Return an enumeration over the IDs of all the regions that are immediate children of this region in the
604 * Returns an enumeration over the IDs of all the regions that are children of this region anywhere in the region
626 StringEnumeration *children = r->getContainedRegions(type, status); local
627 for ( int32_t j = 0 ; j < children->count(status) ; j++ ) {
628 const char *id2 = children->next(NULL,status);
632 delete children;
/external/iproute2/misc/
H A Drtacct.c293 static int children; variable
393 if (children >= 5) {
397 children++;
407 while (children && waitpid(-1, &status, WNOHANG) > 0)
408 children--;
/external/jacoco/org.jacoco.ant/src/org/jacoco/ant/
H A DReportTask.java102 private final List<GroupElement> children = new ArrayList<GroupElement>(); field in class:ReportTask.GroupElement
127 children.add(group);
541 if (group.children.isEmpty()) {
554 for (final GroupElement child : group.children) {
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DNestedMapData.java39 * Number of children a node can have before we bother allocating a HashMap. We currently allocate
49 private Map<String, NestedMapData> children = null; field in class:NestedMapData
50 // Number of children
52 // First child (first sibling of children)
54 // Last child (last sibling of children)
98 // children Hashmap, initialize it now.
99 if (sym.children == null && sym.childCount >= CHILD_MAP_THRESHOLD) {
100 sym.children = new HashMap<String, NestedMapData>();
101 // Copy in existing children.
104 sym.children
[all...]
/external/lisa/tests/lisa/
H A Dtest_energy_model.py96 root_node=EnergyModelRoot(children=[
100 children=[little_cpu_node(0), variable
105 children=[big_cpu_node(2), variable
108 root_power_domain=PowerDomain(idle_states=[], children=[
111 children=[PowerDomain(idle_states=['WFI', 'cpu-sleep-0'], cpu=c) variable
115 children=[PowerDomain(idle_states=['WFI', 'cpu-sleep-0'], cpu=c) variable
135 root_node = EnergyModelRoot(children=[
140 children=[cpu_node(0), cpu_node(1)])])
148 idle_states=[], children=[cpu_pd(0), cpu_pd(1)]),
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_broadcast/
H A D1-2.c59 while (children->next != NULL) { \
60 tmp = children->next; \
61 children->next = tmp->next; \
71 while (children->next != NULL) { \
72 tmp = children->next; \
73 children->next = tmp->next; \
85 /* Do not create more than this amount of children: */
164 int count; /* number of children currently waiting */
169 char fork; /* the children are processes */
227 /* Structure used to store the children informatio
238 children_t *children = &sentinel; variable
[all...]

Completed in 4002 milliseconds

1234567891011>>