/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/ |
times.h | 34 /* Structure describing CPU time used by a process and its children. */ 40 clock_t tms_cutime; /* User CPU time of dead children. */ 41 clock_t tms_cstime; /* System CPU time of dead children. */ 46 dead children (and their dead children) in BUFFER.
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/ |
times.h | 34 /* Structure describing CPU time used by a process and its children. */ 40 clock_t tms_cutime; /* User CPU time of dead children. */ 41 clock_t tms_cstime; /* System CPU time of dead children. */ 46 dead children (and their dead children) in BUFFER.
|
/external/webkit/Source/WebCore/rendering/ |
RenderRubyBase.cpp | 58 // Tests whether all children in the base before beforeChild are either floated/positioned, 60 // Note that beforeChild may be 0, in which case all children are looked at. 70 // This function removes all children that are before (!) beforeChild 75 // Inline children might be wrapped in an anonymous block if there's a continuation. 95 // The standard and easy case: move the children into the target base 105 toBase->children()->appendChildNode(toBase, toBlock); 108 // Move our inline children into the target block we determined above. 124 anonBlock->moveAllChildrenTo(toBase, toBase->children()); 133 // Moving block children -> have to set toBase as block flow 135 // Move children, potentially collapsing anonymous block wrappers [all...] |
RenderMedia.h | 43 const RenderObjectChildList* children() const { return &m_children; } function in class:WebCore::RenderMedia 44 RenderObjectChildList* children() { return &m_children; } function in class:WebCore::RenderMedia 52 virtual RenderObjectChildList* virtualChildren() { return children(); } 53 virtual const RenderObjectChildList* virtualChildren() const { return children(); }
|
/packages/apps/Gallery2/src/com/android/gallery3d/util/ |
ProfileData.java | 40 public ArrayList<Node> children; field in class:ProfileData.Node 81 if (node.children == null) { 82 node.children = new ArrayList<Node>(); 86 ArrayList<Node> children = node.children; local 88 for (j = 0; j < children.size(); j++) { 89 if (children.get(j).id == id) break; 91 if (j == children.size()) { 92 children.add(new Node(node, id)); 95 node = children.get(j) 144 ArrayList<Node> children = node.children; local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/descriptors/ |
ManifestElementDescriptor.java | 41 * @param children The list of allowed children. Can be null or empty. 49 ElementDescriptor[] children, 51 super(xml_name, ui_name, tooltip, sdk_url, attributes, children, mandatory); 62 * @param children The list of allowed children. Can be null or empty. 70 ElementDescriptor[] children, 72 super(xml_name, ui_name, tooltip, sdk_url, attributes, children, mandatory); 83 * @param children The list of allowed children. Can be null or empty [all...] |
/sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/ui/util/ |
DrawableViewNode.java | 26 public final ArrayList<DrawableViewNode> children = new ArrayList<DrawableViewNode>(); field in class:DrawableViewNode 116 if (viewNode.children.size() == 0) { 122 int N = viewNode.children.size(); 126 DrawableViewNode child = new DrawableViewNode(viewNode.children.get(i)); 127 children.add(child); 132 DrawableViewNode prevChild = children.get(i - 1); 157 int N = children.size(); 159 children.get(i).setLeft(); 166 int N = children.size(); 168 DrawableViewNode child = children.get(i) [all...] |
/external/llvm/include/llvm/ADT/ |
Trie.h | 64 NodeVectorType Children; 71 if (Children.empty()) 72 Children.push_back(N); 74 iterator I = std::lower_bound(Children.begin(), Children.end(), 77 Children.insert(I, N); 83 iterator I = std::lower_bound(Children.begin(), Children.end(), 85 assert(I != Children.end() && "Node does not exists!"); 124 << "Children:\n" [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRTree.h | 62 /** Set the parent and child index values for all children */ 66 * is nil, add all children of t to this' children. 75 /** Delete children from start to stop and replace with t even if t is 76 * a list (nil-root tree). num of children can increase or decrease. 77 * For huge child lists, inserting children can force walking rest of 78 * children to set their childindex; could be slow. 82 - (NSArray *) children; 84 // is nil, add all children of t to this' children [all...] |
/external/chromium/chrome/browser/extensions/ |
browser_action_test_util_gtk.cc | 23 GList* children = gtk_container_get_children(GTK_CONTAINER(toolbar)); local 25 static_cast<GtkWidget*>(g_list_nth(children, index)->data); 27 g_list_free(children); 40 GList* children = gtk_container_get_children(GTK_CONTAINER(toolbar)); local 41 count = g_list_length(children); 42 g_list_free(children);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/ |
DocumentDescriptor.java | 28 * It has a children list which represent all the possible roots of the document. 36 * Constructs a new {@link DocumentDescriptor} based on its XML name and children list. 44 * @param children The list of allowed children. Can be null or empty. 46 public DocumentDescriptor(String xml_name, ElementDescriptor[] children) { 47 super(xml_name, children, Mandatory.MANDATORY);
|
ElementDescriptor.java | 37 * an attributes list and a children list. 52 /** The list of allowed children */ 69 * tooltip, SDK url, attributes list, children list and mandatory. 76 * @param children The list of allowed children. Can be null or empty. 84 ElementDescriptor[] children, 92 mChildren = children != null ? children : new ElementDescriptor[]{}; 97 * tooltip, SDK url, attributes list, children list and mandatory. 104 * @param children The list of allowed children. Can be null or empty [all...] |
/external/webkit/Source/WebCore/inspector/front-end/ |
BottomUpProfileDataGridTree.js | 65 var children = this.children; 66 var index = this.children.length; 69 children[index]._exclude(aCallUID); 81 if (!this.children.length) 140 // In bottom up mode, our parents are our children since we display an inverted tree. 195 var children = profileNode.children; 196 if (children.length) { 198 profileNodeGroups.push(children); [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
ANTLRTree.h | 56 /** Set the parent and child index values for all children */ 60 * is nil, add all children of t to this' children. 69 /** Delete children from start to stop and replace with t even if t is 70 * a list (nil-root tree). num of children can increase or decrease. 71 * For huge child lists, inserting children can force walking rest of 72 * children to set their childindex; could be slow. 78 // is nil, add all children of t to this' children. 83 // Indicates the node is a nil node but may still have children, meanin [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
ANTLRTree.h | 56 /** Set the parent and child index values for all children */ 60 * is nil, add all children of t to this' children. 69 /** Delete children from start to stop and replace with t even if t is 70 * a list (nil-root tree). num of children can increase or decrease. 71 * For huge child lists, inserting children can force walking rest of 72 * children to set their childindex; could be slow. 78 // is nil, add all children of t to this' children. 83 // Indicates the node is a nil node but may still have children, meanin [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
ANTLRTree.h | 56 /** Set the parent and child index values for all children */ 60 * is nil, add all children of t to this' children. 69 /** Delete children from start to stop and replace with t even if t is 70 * a list (nil-root tree). num of children can increase or decrease. 71 * For huge child lists, inserting children can force walking rest of 72 * children to set their childindex; could be slow. 78 // is nil, add all children of t to this' children. 83 // Indicates the node is a nil node but may still have children, meanin [all...] |
/cts/tools/utils/ |
android_api_description_splitter.py | 104 children = []
107 children.append(child)
109 for child in children:
112 children.remove(child)
114 for child in children:
137 children = []
139 children.append(child)
141 for child in children:
|
/external/webkit/Source/WebCore/editing/ |
SplitElementCommand.cpp | 50 Vector<RefPtr<Node> > children; 52 children.append(node); 67 size_t size = children.size(); 69 m_element1->appendChild(children[i], ec); 84 Vector<RefPtr<Node> > children; 86 children.append(node); 92 size_t size = children.size(); 94 m_element2->insertBefore(children[i].get(), refChild.get(), ec);
|
RemoveNodePreservingChildrenCommand.cpp | 43 Vector<RefPtr<Node> > children; local 45 children.append(child); 47 size_t size = children.size(); 49 RefPtr<Node> child = children[i].release();
|
/external/webkit/Source/WebCore/html/ |
HTMLTableSectionElement.cpp | 66 RefPtr<HTMLCollection> children = rows(); local 67 int numRows = children ? (int)children->length() : 0; 79 n = children->item(index); 88 RefPtr<HTMLCollection> children = rows(); local 89 int numRows = children ? (int)children->length() : 0; 93 RefPtr<Node> row = children->item(index);
|
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/ |
DrawableContainerStateTest.java | 61 Drawable[] children = mDrawableContainerState.getChildren(); local 62 assertNotNull(children); 63 assertTrue(children.length >= 1); 64 assertSame(dr0, children[0]); 65 assertNull(children[1]); 73 children = mDrawableContainerState.getChildren(); 74 assertNotNull(children); 75 assertTrue(children.length >= 2); 76 assertSame(dr0, children[0]); 77 assertSame(dr1, children[1]) [all...] |
/external/chromium/chrome/browser/accessibility/ |
browser_accessibility_cocoa.h | 35 // Invalidate children for a non-ignored ancestor (including self). 38 // Children is an array of BrowserAccessibility objects, representing 39 // the accessibility children of this object. 40 @property(nonatomic, readonly) NSArray* children; variable
|
/external/junit/src/org/junit/runners/model/ |
RunnerScheduler.java | 17 * after all children have been scheduled (for example,
|
/external/skia/src/svg/ |
SkSVGSymbol.cpp | 21 // !!! children need to be written into document
|
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/ |
LeafNodeImpl.java | 31 * This class represents a Node that has a parent Node, but no children. 46 if (parent == null || index + 1 >= parent.children.size()) { 50 return parent.children.get(index + 1); 62 return parent.children.get(index - 1);
|