Searched defs:children (Results 176 - 200 of 383) sorted by relevance

1234567891011>>

/external/iproute2/misc/
H A Dnstat.c312 static int children; variable
400 if (children >= 5) {
404 children++;
417 while (children && waitpid(-1, &status, WNOHANG) > 0)
418 children--;
H A Drtacct.c294 static int children; variable
394 if (children >= 5) {
398 children++;
408 while (children && waitpid(-1, &status, WNOHANG) > 0)
409 children--;
H A Difstat.c420 static int children; variable
515 if (children >= 5) {
519 children++;
532 while (children && waitpid(-1, &status, WNOHANG) > 0)
533 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/llvm/include/llvm/Analysis/
H A DRegionInfo.h230 RegionSet children; member in class:llvm::Region
246 /// verifyRegionNest - Verify if the region and its children are valid
459 /// @param moveChildren Move the children of this region, that are also
495 iterator begin() { return children.begin(); }
496 iterator end() { return children.end(); }
498 const_iterator begin() const { return children.begin(); }
499 const_iterator end() const { return children.end(); }
522 // Mark the exit of the region as visited, so that the children of the
578 /// are direct children of this Region. It does not iterate over any
/external/oprofile/daemon/
H A Dopd_perfmon.c98 static struct child * children; variable in typeref:struct:child
121 if (children[i].pid == getpid()) {
122 children[i].sigusr1 = 1;
134 if (children[i].pid == getpid()) {
135 children[i].sigusr2 = 1;
319 struct child * self = &children[cpu];
433 children = xmalloc(sizeof(struct child) * nr_cpus);
434 bzero(children, sizeof(struct child) * nr_cpus);
439 if (pipe(children[i].up_pipe)) {
449 close(children[
[all...]
/external/skia/src/core/
H A DSkRTree.cpp237 int SkRTree::distributeChildren(Branch* children) { argument
262 SkTQSort(children, children + fMaxChildren, RectLessThan(sorts[i][j]));
266 SkIRect r1 = children[0].fBounds;
267 SkIRect r2 = children[fMinChildren + k - 1].fBounds;
269 join_no_empty_check(children[l].fBounds, &r1);
272 join_no_empty_check(children[l].fBounds, &r2);
299 SkTQSort(children, children + fMaxChildren, RectLessThan(sorts[axis][sortSide]));
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DXMPNode.java47 private List children = null; field in class:XMPNode
101 children = null;
142 * <em>Note:</em> The node children are indexed from [1..size]!
158 * <em>Note:</em> The node children are indexed from [1..size]!
181 * If its a schema node and doesn't have any children anymore, its deleted.
193 * Removes the children list if this node has no children anymore;
194 * checks if the provided node is a schema node and doesn't have any children anymore,
199 if (children.isEmpty())
201 children
[all...]
/external/chromium_org/chrome/browser/bookmarks/
H A Dbookmark_html_writer.cc79 // Start of the children of a folder.
81 // End of the children for a folder.
244 // Writes the node and all its children, returning true on success.
333 // Write the children.
334 const base::ListValue* children = local
336 for (size_t i = 0; i < children->GetSize(); ++i) {
338 if (!children->Get(i, &child_value) ||
/external/chromium_org/chrome/browser/extensions/
H A Dmenu_manager.h168 const List& children() { return children_; } function in class:extensions::MenuItem
227 // Recursively appends all descendant items (children, grandchildren, etc.)
231 // Recursively removes all descendant items (children, grandchildren, etc.),
265 // Any children this item may have.
292 // top-level items' children. A view can then decide how to display these,
388 // all items the menu manager knows about, including all children of top-level
/external/chromium_org/chrome/browser/sync/glue/
H A Dbookmark_change_processor.cc108 // This node should have no children.
197 // All children of the node has been processed, delete the node and
420 std::vector<const BookmarkNode*> children; local
425 // The given node's children got reordered. We need to reorder all the
426 // children of the corresponding sync node.
429 children.push_back(child);
456 // TODO(haitaol): Filter out children that didn't actually change.
457 UpdateTransactionVersion(new_version, model, children);
554 // their children.
583 DCHECK_EQ(dst->child_count(), 0) << "Node being deleted has children";
[all...]
H A Dbookmark_model_associator.cc348 // children.
430 // * When all children sync nodes are done, add the extra children bookmark
437 // children under them are all the same.
528 std::vector<int64> children; local
529 sync_parent.GetChildIds(&children);
531 for (std::vector<int64>::const_iterator it = children.begin();
532 it != children.end(); ++it) {
576 // At this point all the children nodes of the parent sync node have
577 // corresponding children i
[all...]
/external/chromium_org/content/common/
H A Dpage_state_serialization.cc149 for (size_t i = 0; i < frame_state.children.size(); ++i) {
150 if (!RecursivelyAppendReferencedFiles(frame_state.children[i],
533 const std::vector<ExplodedFrameState>& children = state.children; local
534 WriteAndValidateVectorSize(children, obj);
535 for (size_t i = 0; i < children.size(); ++i)
536 WriteFrameState(children[i], obj, false);
632 state->children.resize(num_children);
634 ReadFrameState(obj, false, &state->children[i]);
730 children
[all...]
H A Dsandbox_win.cc114 // If |children| is set to true, we need to add the wildcard rules to also
116 bool AddDirectory(int path, const wchar_t* sub_dir, bool children, argument
133 if (children)
472 // Only sandboxed children are placed in jobs, so just check them.
/external/chromium_org/content/renderer/gpu/
H A Dgpu_benchmarking_extension.cc77 const cc::LayerList& children = layer->children(); local
78 for (size_t i = 0; i < children.size(); ++i) {
79 Serialize(children[i].get());
/external/chromium_org/mojo/services/public/cpp/view_manager/lib/
H A Dview.cc52 View::Children::const_iterator it = start_at->children().begin();
53 for (; it != start_at->children().end(); ++it)
85 void RemoveChildImpl(View* child, View::Children* children) { argument
87 std::find(children->begin(), children->end(), child);
88 if (it != children->end()) {
89 children->erase(it);
121 bool ReorderImpl(View::Children* children, argument
130 std::find(children->begin(), children
[all...]
/external/chromium_org/mojo/services/view_manager/
H A Dview_manager_service_impl.cc206 std::vector<const ServerView*> children = view->parent()->GetChildren();
208 std::find(children.begin(), children.end(), view) - children.begin();
210 std::find(children.begin(), children.end(), relative_view) -
211 children.begin();
238 std::vector<const ServerView*> children(view->GetChildren());
239 for (size_t i = 0 ; i < children.size(); ++i)
240 GetUnknownViewsFrom(children[
252 std::vector<const ServerView*> children = view->GetChildren(); local
283 std::vector<ServerView*> children = view->GetChildren(); local
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Dregion.cpp532 * Return an enumeration over the IDs of all the regions that are immediate children of this region in the
547 * Returns an enumeration over the IDs of all the regions that are children of this region anywhere in the region
567 StringEnumeration *children = r->getContainedRegions(type); local
568 for ( int32_t j = 0 ; j < children->count(status) ; j++ ) {
569 const char *id2 = children->next(NULL,status);
573 delete children;
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Dimage.c319 /* reparent the children */
322 struct vg_image **children = local
325 VGint min_x = children[0]->x;
326 parent = children[0];
329 struct vg_image *child = children[i];
337 struct vg_image *child = children[i];
/external/chromium_org/v8/src/
H A Dhydrogen-bce.cc355 const ZoneList<HBasicBlock*>* children = state->block_->dominated_blocks(); local
357 if (state->index_ < children->length()) {
358 // Recursively visit children blocks.
359 HBasicBlock* child = children->at(state->index_++);
365 // Finished with all children; post process the block.
/external/clang/include/clang/AST/
H A DOpenMPClause.h60 StmtRange children();
61 ConstStmtRange children() const { function in class:clang::OMPClause
62 return const_cast<OMPClause *>(this)->children();
196 StmtRange children() { return StmtRange(&Condition, &Condition + 1); } function in class:clang::OMPIfClause
250 StmtRange children() { return StmtRange(&NumThreads, &NumThreads + 1); } function in class:clang::OMPNumThreadsClause
306 StmtRange children() { return StmtRange(&Safelen, &Safelen + 1); } function in class:clang::OMPSafelenClause
362 StmtRange children() { return StmtRange(&NumForLoops, &NumForLoops + 1); } function in class:clang::OMPCollapseClause
431 StmtRange children() { return StmtRange(); } function in class:clang::OMPDefaultClause
502 StmtRange children() { return StmtRange(); } function in class:clang::OMPProcBindClause
600 StmtRange children() { retur function in class:clang::OMPScheduleClause
629 StmtRange children() { return StmtRange(); } function in class:clang::OMPOrderedClause
658 StmtRange children() { return StmtRange(); } function in class:clang::OMPNowaitClause
710 StmtRange children() { function in class:clang::OMPPrivateClause
770 StmtRange children() { function in class:clang::OMPFirstprivateClause
830 StmtRange children() { function in class:clang::OMPLastprivateClause
889 StmtRange children() { function in class:clang::OMPSharedClause
982 StmtRange children() { function in class:clang::OMPReductionClause
1067 StmtRange children() { function in class:clang::OMPLinearClause
1152 StmtRange children() { function in class:clang::OMPAlignedClause
1211 StmtRange children() { function in class:clang::OMPCopyinClause
1271 StmtRange children() { function in class:clang::OMPCopyprivateClause
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/
H A DResultsElement.java60 ResultsElement[] children; field in class:ResultsElement
204 * Iterate the element children.
210 if (this.children == null) {
213 return this.children;
223 if (this.children == null) {
226 return this.children;
351 ResultsElement searchedResults = this.children[i];
396 * For {@link ComponentResultsElement}, and {@link ScenarioResultsElement}, it's the merge of all the children status
437 this.children = new ResultsElement[length];
442 this.children[coun
[all...]
/external/icu/icu4c/source/i18n/
H A Dregion.cpp532 * Return an enumeration over the IDs of all the regions that are immediate children of this region in the
547 * Returns an enumeration over the IDs of all the regions that are children of this region anywhere in the region
567 StringEnumeration *children = r->getContainedRegions(type); local
568 for ( int32_t j = 0 ; j < children->count(status) ; j++ ) {
569 const char *id2 = children->next(NULL,status);
573 delete children;
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dimage.c319 /* reparent the children */
322 struct vg_image **children = local
325 VGint min_x = children[0]->x;
326 parent = children[0];
329 struct vg_image *child = children[i];
337 struct vg_image *child = children[i];
/external/smack/src/org/jivesoftware/smackx/pubsub/
H A DConfigureForm.java127 return getFieldValues(ConfigureNodeFields.children);
133 * @param children
135 public void setChildren(List<String> children) argument
137 addField(ConfigureNodeFields.children, FormField.TYPE_TEXT_MULTI);
138 setAnswer(ConfigureNodeFields.children.getFieldName(), children);
142 * Returns the policy that determines who may associate children with the node.
157 * Sets the policy that determines who may associate children with the node.

Completed in 8284 milliseconds

1234567891011>>