/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
DomUtilities.java | 105 * Returns true if the given node has one or more element children 107 * @param node the node to test for element children 108 * @return true if the node has one or more element children 111 NodeList children = node.getChildNodes(); local 112 for (int i = 0, n = children.getLength(); i < n; i++) { 113 if (children.item(i).getNodeType() == Node.ELEMENT_NODE) { 507 * Returns the element children of the given element 514 NodeList children = element.getChildNodes(); local 517 List<Element> result = new ArrayList<Element>(children.getLength()); 518 for (int i = 0, n = children.getLength(); i < n; i++) 716 NodeList children = element.getChildNodes(); local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/ |
WelcomeWizardPage.java | 225 File[] children = file.listFiles(); local 226 if (children != null && children.length > 0) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
CanvasViewInfoTest.java | 245 // between view info and ui element node children 302 // between view info and ui element node children 345 // between view info and ui element node children 375 List<ViewInfo> children = new ArrayList<ViewInfo>(); local 404 children.add(childView); 418 root.setChildren(children); 458 ArrayList<ViewInfo> children = new ArrayList<ViewInfo>(); local 462 children.add(childView); 464 root.setChildren(children); 494 ArrayList<ViewInfo> children = new ArrayList<ViewInfo>() local 546 ArrayList<ViewInfo> children = new ArrayList<ViewInfo>(); local [all...] |
/external/chromium/chrome/browser/accessibility/ |
browser_accessibility.h | 57 // recurse into children of |src| and build the whole subtree. 80 // Returns the number of children of this object. 139 const std::vector<BrowserAccessibility*>& children() const { function in class:BrowserAccessibility 197 // The children of this object.
|
/external/chromium/webkit/glue/ |
webaccessibility.h | 218 std::vector<WebAccessibility> children; member in struct:webkit_glue::WebAccessibility
|
/external/clang/lib/AST/ |
ParentMap.cpp | 24 for (Stmt::child_range I = S->children(); I; ++I)
|
/external/clang/lib/Index/ |
ASTVisitor.h | 111 for (Stmt::child_range I = Node->children(); I; ++I)
|
/external/collada/src/dae/ |
daeSIDResolver.cpp | 68 // Add the children to the list of elements to check 69 daeElementRefArray children; local 70 elt->getChildren(children); 71 for (size_t j = 0; j < children.getCount(); j++) 72 elts.push_back(children[j]);
|
/external/libxml2/include/libxml/ |
entities.h | 42 struct _xmlNode *children; /* First child link */ member in struct:_xmlEntity
|
/external/qemu/hw/ |
qdev.h | 40 QLIST_HEAD(, DeviceState) children; member in struct:BusState
|
/external/quake/quake/src/QW/client/ |
r_bsp.c | 299 pn = pnode->children[i]; 314 R_RecursiveClipBPoly (psideedges[i], pnode->children[i], 555 // recurse down the children, front side first 556 R_RecursiveWorldNode (node->children[side], clipflags); 637 R_RecursiveWorldNode (node->children[!side], clipflags);
|
/external/quake/quake/src/QW/server/ |
sv_ents.c | 61 node = node->children[0]; 63 node = node->children[1]; 66 SV_AddToFatPVS (org, node->children[0]); 67 node = node->children[1];
|
/external/quake/quake/src/WinQuake/ |
r_bsp.cpp | 299 pn = pnode->children[i];
314 R_RecursiveClipBPoly (psideedges[i], pnode->children[i],
555 // recurse down the children, front side first
556 R_RecursiveWorldNode (node->children[side], clipflags);
637 R_RecursiveWorldNode (node->children[!side], clipflags);
|
/external/webkit/LayoutTests/dom/html/level1/core/ |
hc_elementgetelementsbytagnameaccessnodelist.js | 79 of all descendant Elements in the order the children 86 "5" in the order the children were encountered.
|
hc_elementgetelementsbytagnamespecialvalue.js | 84 The method should return all the descendant children(6) 85 in the order the children were encountered.
|
hc_nodeappendchildinvalidnodetype.js | 80 a type that does not allow children of the type "newChild" 84 created Attr node. An Element node cannot have children
|
hc_nodechildnodesempty.js | 79 that contains all children of this node. If there 80 are not any children, this is a NodeList that does not
|
hc_nodeinsertbeforedocfragment.js | 79 its children are inserted in the same order before the 86 extra children("newChild1" and "newChild2") at
|
hc_nodeinsertbeforeinvalidnodetype.js | 80 a type that does not allow children of the type "newChild" 84 created Attr node. An Element node cannot have children
|
/external/webkit/LayoutTests/dom/xhtml/level1/core/ |
hc_elementgetelementsbytagnameaccessnodelist.js | 79 of all descendant Elements in the order the children 86 "5" in the order the children were encountered.
|
hc_elementgetelementsbytagnamespecialvalue.js | 84 The method should return all the descendant children(6) 85 in the order the children were encountered.
|
hc_nodeappendchildinvalidnodetype.js | 80 a type that does not allow children of the type "newChild" 84 created Attr node. An Element node cannot have children
|
hc_nodechildnodesempty.js | 79 that contains all children of this node. If there 80 are not any children, this is a NodeList that does not
|
hc_nodeinsertbeforedocfragment.js | 79 its children are inserted in the same order before the 86 extra children("newChild1" and "newChild2") at
|
hc_nodeinsertbeforeinvalidnodetype.js | 80 a type that does not allow children of the type "newChild" 84 created Attr node. An Element node cannot have children
|