HomeSort by relevance Sort by last modified time
    Searched full:child (Results 376 - 400 of 3947) sorted by null

<<11121314151617181920>>

  /external/chromium/chrome/browser/ui/gtk/
slide_animator_gtk.h 44 // |child| is the widget we pack into |widget_|.
51 SlideAnimatorGtk(GtkWidget* child,
95 static void OnChildSizeAllocate(GtkWidget* child,
104 // The widget passed to us at construction time, and the only direct child of
114 // We need to move the child widget to (0, -height), but we don't know its
116 // child widget has been allocated, at which point we will move it, and then
  /external/chromium/third_party/libjingle/source/talk/base/
win32window.cc 117 for (HWND child = ::GetWindow(hwnd, GW_CHILD); child;
118 child = ::GetWindow(child, GW_HWNDNEXT)) {
119 LOG(LS_INFO) << "Child window: " << static_cast<void*>(child);
  /external/skia/include/effects/
SkGroupShape.h 72 /** Return the number of child shapes in this group
89 /** Ref the specified shape, and insert it into the child list at the
91 appended to the child list, otherwise if index is out of range, the
94 Child shapes are drawn in order, after the parent, so the shape at index
118 /** Unref the specified index, and remove it from the child list. If index
123 /** Unrefs and removes all of the child shapes
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_characterdatadeletedatagetlengthanddata.js 82 Retrieve the character data from the last child of the
102 var child;
115 child = nameNode.firstChild;
117 child.deleteData(30,5);
118 childData = child.data;
121 childLength = child.length;
hc_commentgetcomment.js 96 var child;
111 child = elementList.item(indexN1005E);
112 childType = child.nodeType;
118 childName = child.nodeName;
121 childValue = child.nodeValue;
124 attributes = child.attributes;
hc_nodeinsertbeforedocfragment.js 85 fourth child. The second employee should now have two
104 var child;
125 child = childList.item(3);
126 childName = child.nodeName;
129 child = childList.item(4);
130 childName = child.nodeName;
hc_textparseintolistofelements.js 78 Retrieve the textual data from the last child of the
83 EntityReferences containing one child.
97 var child;
125 child = childList.item(indexN1007C);
126 value = child.nodeValue;
134 grandChild = child.firstChild;
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_characterdatadeletedatagetlengthanddata.js 82 Retrieve the character data from the last child of the
102 var child;
115 child = nameNode.firstChild;
117 child.deleteData(30,5);
118 childData = child.data;
121 childLength = child.length;
hc_commentgetcomment.js 96 var child;
111 child = elementList.item(indexN1005E);
112 childType = child.nodeType;
118 childName = child.nodeName;
121 childValue = child.nodeValue;
124 attributes = child.attributes;
hc_nodeinsertbeforedocfragment.js 85 fourth child. The second employee should now have two
104 var child;
125 child = childList.item(3);
126 childName = child.nodeName;
129 child = childList.item(4);
130 childName = child.nodeName;
hc_textparseintolistofelements.js 78 Retrieve the textual data from the last child of the
83 EntityReferences containing one child.
97 var child;
125 child = childList.item(indexN1007C);
126 value = child.nodeValue;
134 grandChild = child.firstChild;
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
canonicalform01.js 99 var child;
124 child = pElem.appendChild(entRef);
129 child = pElem.lastChild;
131 assertNotNull("lastChildNotNull",child);
132 childName = child.nodeName;
135 childValue = child.nodeValue;
documentadoptnode16.js 92 var child;
116 child = doc.createElement("child");
121 attrNode = child.setAttributeNode(childsAttr);
122 appendedChild = child.appendChild(textNode);
123 appendedChild = parent.appendChild(child);
entities02.js 99 var child;
119 child = pElem.appendChild(entRef);
124 child = pElem.lastChild;
126 assertNotNull("lastChildNotNull",child);
127 childName = child.nodeName;
130 childValue = child.nodeValue;
entities03.js 99 var child;
116 child = pElem.appendChild(entRef);
121 child = pElem.lastChild;
123 assertNotNull("lastChildNotNull",child);
124 childType = child.nodeType;
127 childName = child.nodeName;
infoset01.js 99 var child;
119 child = pElem.appendChild(entRef);
124 child = pElem.lastChild;
126 assertNotNull("lastChildNotNull",child);
127 childName = child.nodeName;
130 childValue = child.nodeValue;
infoset02.js 99 var child;
116 child = pElem.appendChild(entRef);
121 child = pElem.lastChild;
123 assertNotNull("lastChildNotNull",child);
124 childType = child.nodeType;
127 childName = child.nodeName;
noderemovechild16.js 80 Element child and verify the name of the returned node that was removed. Now attempt
94 var child;
105 child = parentList.item(0);
106 parent = child.parentNode;
108 removed = parent.removeChild(child);
116 removedNode = child.removeChild(parent);
  /external/webkit/LayoutTests/fast/xpath/
xpath-functional-test-expected.txt 2 [ok].//blockquote/child::*
16 [ok].//*[child::blockquote]
36 [ok].//*[child::* and preceding::font]
37 [ok].//*[not(child::*) and preceding::font]
45 [ok].//blockquote/child::*[last()]
50 [ok].//blockquote/child::*[2]
  /external/webkit/Source/WebCore/dom/
ContainerNodeAlgorithms.h 69 void appendChildToContainer(GenericNode* child, GenericNodeContainer* container)
71 child->setParent(container);
75 child->setPreviousSibling(lastChild);
76 lastChild->setNextSibling(child);
78 container->setFirstChild(child);
80 container->setLastChild(child);
  /external/webkit/Source/WebCore/rendering/
RenderApplet.cpp 70 for (Node* child = element->firstChild(); child; child = child->nextSibling()) {
71 if (child->hasTagName(paramTag)) {
72 HTMLParamElement* p = static_cast<HTMLParamElement*>(child);
  /external/webkit/Source/WebCore/svg/
SVGElementInstance.h 134 void appendChild(PassRefPtr<SVGElementInstance> child);
138 friend void appendChildToContainer(GenericNode* child, GenericNodeContainer* container);
148 void setFirstChild(SVGElementInstance* child) { m_firstChild = child; }
149 void setLastChild(SVGElementInstance* child) { m_lastChild = child; }
  /external/webkit/Source/WebCore/xml/
XMLViewer.js 47 var child;
48 while (child = document.firstChild) {
49 document.removeChild(child);
50 if (child.nodeType != Node.DOCUMENT_TYPE_NODE)
51 sourceXML.appendChild(child);
80 for (var child = sourceXML.firstChild; child; child = child.nextSibling)
81 nodeParentPairs.push({parentElement: root, node: child});
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/listview/arrowscroll/
ListItemFocusablesFarApartTest.java 46 * Get the child of a list item.
48 * @param index The index of the child.
57 View child = listItem.getChildAt(index); local
58 return child.getTop() + listItem.getTop();
63 View child = listItem.getChildAt(index); local
64 return child.getBottom() + listItem.getTop();
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
characterdatadeletedatagetlengthanddata.java 35 * Retrieve the character data from the last child of the
74 CharacterData child; local
82 child = (CharacterData) nameNode.getFirstChild();
83 child.deleteData(30, 5);
84 childData = child.getData();
86 childLength = (int) child.getLength();

Completed in 1120 milliseconds

<<11121314151617181920>>