/external/webkit/Source/WebCore/rendering/ |
RenderObject.cpp | 281 RenderObjectChildList* children = virtualChildren(); local 282 ASSERT(children); 283 if (!children) 302 if (needsTable && isTableCell() && !children->firstChild() && !newChild->isTableCell()) 308 RenderObject* afterChild = beforeChild ? beforeChild->previousSibling() : children->lastChild(); 322 children->insertChildNode(this, newChild, beforeChild); 333 RenderObjectChildList* children = virtualChildren(); local 334 ASSERT(children); 335 if (!children) 344 children->removeChildNode(this, oldChild) 2075 RenderObjectChildList* children = virtualChildren(); local [all...] |
/external/libxml2/ |
schematron.c | 884 cur = rule->children; 976 cur = pat->children; 1155 cur = root->children; [all...] |
entities.c | 105 if ((entity->children) && (entity->owner == 1) && 106 (entity == (xmlEntityPtr) entity->children->parent)) 107 xmlFreeNodeList(entity->children); 325 dtd->children = dtd->last = (xmlNodePtr) ret; 374 dtd->children = dtd->last = (xmlNodePtr) ret;
|
parser.c | [all...] |
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/ |
KeyguardHostView.java | 337 final int children = appWidgetContainer.getChildCount(); local 338 for (int i = 0; i < children; i++) { 344 Log.w(TAG, "*** Null content at " + "i=" + i + ",id=" + id + ",N=" + children); 425 int children = mSecurityViewContainer.getChildCount(); local 426 for (int i = 0; i < children; i++) { 895 final int children = mSecurityViewContainer.getChildCount(); local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/ |
TemplateHandler.java | 760 NodeList children = root.getChildNodes(); local 761 List<Node> nodes = new ArrayList<Node>(children.getLength()); 762 for (int i = children.getLength() - 1; i >= 0; i--) { 763 Node child = children.item(i); 1027 File[] children = src.listFiles(); local [all...] |
TemplateMetadata.java | 366 NodeList children = bestMatch.getChildNodes(); local 367 for (int i = 0, n = children.getLength(); i < n; i++) { 368 Node child = children.item(i);
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.pde.core_3.6.1.v20100902_r361.jar | |
org.eclipse.ui.forms_3.5.2.r36_v20100702.jar | |
/dalvik/tools/dmtracedump/ |
TraceDump.c | 173 struct TimedMethod *children[2]; /* 0=normal, 1=recursive */ member in struct:MethodEntry 317 method->children[0] = NULL; 318 method->children[1] = NULL; 1315 TimedMethod *children = parent->children[parentIsRecursive]; local [all...] |
/external/webkit/Source/WebCore/inspector/front-end/ |
DetailedHeapshotGridNodes.js | 73 atIndex = atIndex || this.children.length; 116 for (var i = 0, childrenCount = this.children.length; i < childrenCount; ++i) { 117 var child = this.children[i]; 136 for (var i = 0, l = this.children.length; i < l; ++i) { 137 var child = this.children[i];
|
/external/webkit/Source/WebCore/page/ |
Page.cpp | 893 const HashSet<RefPtr<Widget> >* children = view->children(); local 894 ASSERT(children); 896 HashSet<RefPtr<Widget> >::const_iterator end = children->end(); 897 for (HashSet<RefPtr<Widget> >::const_iterator it = children->begin(); it != end; ++it) {
|
/external/webkit/Source/WebKit/android/jni/ |
WebHistory.cpp | 94 // addItem will update the children to match the newly created bridge 110 * children so we do a breadth-first rebuild of the tree. 126 // item, then we do not need to traverse the children since there 277 // 6 empty strings + no document state + children count + 2 scales = 10 unsigned values 289 // Write the top-level history item and then write all the children 518 // Children count 519 unsigned childCount = item->children().size(); 526 const WebCore::HistoryItemVector& children = parent->children(); local 527 WebCore::HistoryItemVector::const_iterator end = children.end() [all...] |
/packages/apps/Launcher2/src/com/android/launcher2/ |
Folder.java | 356 ArrayList<ShortcutInfo> children = info.contents; local 358 setupContentForNumItems(children.size()); 359 placeInReadingOrder(children); 361 for (int i = 0; i < children.size(); i++) { 362 ShortcutInfo child = (ShortcutInfo) children.get(i); 500 // recreate all the children if the data set changes under us. We may want to do this more [all...] |
/dalvik/dx/src/com/android/dx/ssa/ |
SsaMethod.java | 776 BitSet children local 778 for (int i = children.nextSetBit(0); i >= 0 779 ; i = children.nextSetBit(i + 1)) {
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
DOMHelper.java | 73 * @return The newly created DOM Document object, with no children, or 127 * @return The newly created DOM Document object, with no children, or 385 NamedNodeMap children = parent.getAttributes(); local 386 int nNodes = children.getLength(); 392 Node child = children.item(i); 437 // Node child = children.item(i); [all...] |
/external/chromium/chrome/browser/ui/webui/ |
gpu_internals_ui.cc | 507 node.children.begin(); 508 it != node.children.end(); 552 if (gpu_info.dx_diagnostics.children.size())
|
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
SsaMethod.java | 776 BitSet children local 778 for (int i = children.nextSetBit(0); i >= 0 779 ; i = children.nextSetBit(i + 1)) {
|
/external/v8/src/ |
global-handles.cc | 690 Object*** children, 695 ASSERT(!Node::FromLocation(children[i])->is_independent()); 699 implicit_ref_groups_.Add(ImplicitRefGroup::New(parent, children, length));
|
/external/webkit/Source/WebCore/loader/ |
HistoryController.cpp | 435 // committed) and its children (which will be replaced). 452 // Ignore it and its children. 503 // Ignore it and its children. 664 const HistoryItemVector& childItems = item->children(); 688 const HistoryItemVector& childItems = item->children(); 725 const HistoryItemVector& childItems = item->children(); 742 // When this function is called with doClip=true we're able to create the whole tree except for the target's children, [all...] |
/external/webkit/Source/WebCore/platform/graphics/win/ |
GraphicsLayerCACF.cpp | 156 bool GraphicsLayerCACF::setChildren(const Vector<GraphicsLayer*>& children) 158 bool childrenChanged = GraphicsLayer::setChildren(children); 479 // Add the primary layer first. Even if we have negative z-order children, the primary layer always comes behind. 482 // FIXME: add the contents layer in the correct order with negative z-order children. 484 // for replaced elements that don't have children. 488 const Vector<GraphicsLayer*>& childLayers = children();
|
/external/webkit/Source/WebKit/win/ |
AccessibleBase.cpp | 149 *count = static_cast<long>(m_object->children().size()); 541 // Navigating to next and previous is allowed from self or any of our children. 703 if (childIndex >= m_object->children().size()) 705 childObj = m_object->children().at(childIndex).get();
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
PreviewIconFactory.java | 156 NodeList children = root.getChildNodes(); local 157 for (int i = 0, n = children.getLength(); i < n; i++) { 158 Node node = children.item(i); 237 documentDescriptor = new DocumentDescriptor("temp", null/*children*/);//$NON-NLS-1$
|
RenderService.java | 483 * Measure the children of the given parent node, applying the given filter to the 486 * @param parent the parent node to measure children for 488 * @return a map from node children of the parent to new bounds of the nodes 552 List<ViewInfo> children = root.getChildren(); local 553 Map<INode, Rect> map = new HashMap<INode, Rect>(children.size()); 554 for (ViewInfo info : children) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/ |
ImportPage.java | 253 File[] children = dir.listFiles(); local 254 if (children != null) { 255 for (File child : children) {
|