/external/qemu/hw/ |
qdev.c | 102 QLIST_INSERT_HEAD(&bus->children, dev, sibling); 446 QLIST_INIT(&bus->children); 513 QLIST_FOREACH(dev, &bus->children, sibling) {
|
/external/webkit/Source/WebCore/platform/graphics/chromium/ |
GraphicsLayerChromium.cpp | 130 bool GraphicsLayerChromium::setChildren(const Vector<GraphicsLayer*>& children) 132 bool childrenChanged = GraphicsLayer::setChildren(children); 465 // Add the primary layer first. Even if we have negative z-order children, the primary layer always comes behind. 468 // FIXME: add the contents layer in the correct order with negative z-order children. 470 // for replaced elements that don't have children. 474 const Vector<GraphicsLayer*>& childLayers = children();
|
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
ImportNode.java | 46 * ownerElement is set to null. Specified flag is set to true. Children is 184 NodeList children; local 193 children = aNode.getChildNodes(); 194 assertEquals("throw_Size", 1, children.getLength());
|
/ndk/sources/host-tools/make-3.81/ |
commands.c | 458 process group, but it means we want to kill the children. */ 463 for (c = children; c != 0; c = c->next) 482 /* Remote children won't automatically get signals sent 484 for (c = children; c != 0; c = c->next) 488 for (c = children; c != 0; c = c->next) 491 /* Clean up the children. We don't just use the call below because 492 we don't want to print the "Waiting for children" message. */ 497 /* Wait for our children to die. */
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/ |
UiElementPullParser.java | 440 // get the current node, and look for text or children (children first) 442 List<UiElementNode> children = node.getUiChildren(); local 443 if (children.size() > 0) { 445 push(children.get(0));
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
LayoutMetadata.java | 272 NodeList children = node.getChildNodes(); local 273 for (int i = 0, n = children.getLength(); i < n; i++) { 274 Node child = children.item(i);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/ |
NodeProxy.java | 75 * @param factory A {@link NodeFactory} to create unique children nodes. 151 List<UiElementNode> children = p.getUiChildren(); local 152 if (children.size() > 0) { 153 p = children.get(0);
|
/external/chromium/chrome/browser/extensions/ |
extension_menu_manager.h | 113 const List& children() { return children_; } function in class:ExtensionMenuItem 156 // Recursively removes all descendant items (children, grandchildren, etc.), 187 // Any children this item may have. 209 // children. A view can then decide how to display these, including whether to 277 // all items the menu manager knows about, including all children of top-level
|
/external/chromium/chrome/browser/resources/ |
bug_report.js | 23 var thumbnailDivs = $(divId).children; 49 thumbnailDiv.id = divId + '-thumbnailDiv-' + $(divId).children.length;
|
/external/chromium/chrome/browser/sync/engine/ |
syncer_util.h | 33 syncable::Directory::ChildHandles* children);
|
/external/chromium/net/disk_cache/ |
mem_entry_impl.cc | 85 EntryMap children; local 86 children.swap(*children_); 87 for (EntryMap::iterator i = children.begin(); 88 i != children.end(); ++i) {
|
/external/clang/include/clang/Analysis/Visitors/ |
CFGStmtVisitor.h | 165 for (Stmt::child_range I = S->children(); I; ++I)
|
/external/clang/lib/Analysis/ |
PseudoConstantAnalysis.cpp | 112 // Do not visit the children 236 for (Stmt::const_child_range I = Head->children(); I; ++I)
|
/external/clang/lib/Index/ |
CallGraph.cpp | 43 for (Stmt::child_range I = S->children(); I; ++I)
|
/external/markdown/markdown/ |
inlinepatterns.py | 183 """ Return a eLement of type `tag` with no children. """
|
/external/oprofile/libpp/ |
callgraph_container.cpp | 320 cg_symbol::children::iterator cit = sym.callers.begin(); 321 cg_symbol::children::iterator cend = sym.callers.end(); 361 cg_data::children::const_iterator cit; 362 cg_data::children::const_iterator cend = data.callers.end();
|
/external/quake/quake/src/QW/client/ |
model.h | 151 struct mnode_s *children[2]; member in struct:mnode_s
|
/external/quake/quake/src/WinQuake/ |
model.h | 140 struct mnode_s *children[2]; member in struct:mnode_s
|
/external/webkit/LayoutTests/dom/html/level1/core/ |
hc_nodechildnodesappendchild.js | 79 is live. Changes on the node's children are immediately 82 Create a NodeList of the children of the second employee
|
/external/webkit/LayoutTests/dom/xhtml/level1/core/ |
hc_nodechildnodesappendchild.js | 79 is live. Changes on the node's children are immediately 82 Create a NodeList of the children of the second employee
|
/external/webkit/Source/WebCore/inspector/front-end/ |
audits.css | 264 .audit-result-tree ol.children { 268 .audit-result-tree ol.children.expanded {
|
/external/webkit/Source/WebKit/gtk/WebCoreSupport/ |
DumpRenderTreeSupportGtk.cpp | 160 GSList* children = 0; 165 children = g_slist_append(children, client->webFrame()); 168 return children;
|
/external/webkit/Tools/DumpRenderTree/qt/ |
EventSenderQt.cpp | 521 QList<QWebFrame*> children = frame->childFrames(); local 522 for (int i = 0; i < children.size(); ++i) { 523 if (children.at(i)->geometry().contains(m_mousePos)) { 524 frame = children.at(i);
|
/frameworks/base/tools/preload/ |
Root.java | 124 parent.children.add(proc);
|
/libcore/luni/src/main/java/java/util/prefs/ |
XMLParser.java | 366 NodeList children = selectNodeList(node, "node"); local 368 int childNumber = children.getLength(); 381 // get children preferences node 383 Element child = (Element) children.item(i); 389 // load children nodes after unlock 391 loadNode(prefChildren[i], (Element) children.item(i));
|