/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 | 473 // get the current node, and look for text or children (children first) 475 List<UiElementNode> children = node.getUiChildren(); local 476 if (children.size() > 0) { 478 push(children.get(0));
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
LayoutMetadata.java | 112 NodeList children = node.getChildNodes(); local 113 for (int i = 0, n = children.getLength(); i < n; i++) { 114 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 | 79 * @param factory A {@link NodeFactory} to create unique children nodes. 164 List<UiElementNode> children = p.getUiChildren(); local 165 if (children.size() > 0) { 166 p = children.get(0);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/ |
ProjectContentsPage.java | 353 File[] children = f.listFiles(); local 354 if (children != null && children.length > 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 | 111 // Do not visit the children 224 for (Stmt::const_child_range I = Head->children(); I; ++I)
|
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/ |
PhysicsSpace.java | 488 List<Spatial> children = ((Node) spatial).getChildren(); local 489 for (Iterator<Spatial> it = children.iterator(); it.hasNext();) { 535 List<Spatial> children = ((Node) spatial).getChildren(); local 536 for (Iterator<Spatial> it = children.iterator(); it.hasNext();) { [all...] |
/external/libusb-compat/examples/ |
testlibusb.c | 123 print_device(dev->children[i], level + 1);
|
/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);
|