HomeSort by relevance Sort by last modified time
    Searched refs:firstChild (Results 176 - 200 of 495) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/dom/
Range.cpp 392 Node* n = containerA->firstChild();
410 Node* n = containerB->firstChild();
443 Node* n = commonAncestor->firstChild();
539 container = container->firstChild();
717 Node* n = container->firstChild();
790 clonedContainer->insertBefore(child, clonedContainer->firstChild(), exceptionState);
796 clonedContainer->insertBefore(child->cloneNode(true), clonedContainer->firstChild(), exceptionState);
    [all...]
ElementTraversal.h 38 static ElementType* firstChild(const ContainerNode& current) { return firstChildTemplate(current); }
39 static ElementType* firstChild(const Node& current) { return firstChildTemplate(current); }
49 // For Elements firstWithin() is always the same as firstChild().
173 Node* node = current.firstChild();
Attr.cpp 177 for (Node *n = firstChild(); n; n = n->nextSibling()) {
NodeTraversal.cpp 142 while (Node* child = next->firstChild())
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/calendar/javascript/
background.js 282 for (var node = elem.firstChild; node != null; node = node.nextSibling) {
284 out.title = node.firstChild ? node.firstChild.nodeValue : MSG_NO_TITLE;
291 if (node.firstChild) {
294 out.attendeeStatus = node.firstChild.getAttribute('value');
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/photo/
ribbon.js 139 this.insertBefore(newThumbnail, this.firstChild);
214 if (this.firstChild)
215 this.insertBefore(startBox, this.firstChild);
226 if (this.firstChild)
227 this.insertBefore(startBox, this.firstChild);
  /external/chromium_org/ui/file_manager/gallery/js/
ribbon.js 139 this.insertBefore(newThumbnail, this.firstChild);
214 if (this.firstChild)
215 this.insertBefore(startBox, this.firstChild);
226 if (this.firstChild)
227 this.insertBefore(startBox, this.firstChild);
  /external/chromium_org/content/renderer/
dom_serializer_browsertest.cc 93 WebNode node = doc.firstChild();
374 for (WebNode child = head_element.firstChild(); !child.isNull();
397 WebNode meta_node = head_element.firstChild();
427 for (WebNode child = head_ele.firstChild(); !child.isNull();
453 WebNode meta_node = head_ele.firstChild();
491 WebNode text_node = body_ele.firstChild();
729 WebNode meta_node = head_element.firstChild();
742 WebNode text_node = body_element.firstChild();
    [all...]
history_controller.cc 123 for (WebFrame* child = frame->firstChild(); child;
history_entry.cc 75 for (WebFrame* child = current_frame->GetWebFrame()->firstChild(); child;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
DOMPatchSupport.cpp 140 for (Node* child = parentNode->firstChild(); child; child = child->nextSibling())
146 for (Node* child = parentNode->firstChild(); child != node; child = child->nextSibling())
148 for (Node* child = fragment->firstChild(); child; child = child->nextSibling()) {
149 if (isHTMLHeadElement(*child) && !child->firstChild() && markupCopy.find("</head>") == kNotFound)
151 if (isHTMLBodyElement(*child) && !child->firstChild() && markupCopy.find("</body>") == kNotFound)
163 return previousSibling ? previousSibling->nextSibling() : parentNode->firstChild();
423 Node* child = element.firstChild();
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTable.cpp 453 for (RenderObject* child = firstChild(); child; child = child->nextSibling()) {
592 for (RenderObject* section = firstChild(); section; section = section->nextSibling()) {
677 for (RenderObject* child = firstChild(); child; child = child->nextSibling()) {
    [all...]
InlineFlowBox.h 83 InlineBox* firstChild() const { checkConsistency(); return m_firstChild; }
97 for (InlineBox* child = firstChild(); child; child = child->nextOnLine())
179 float placeBoxRangeInInlineDirection(InlineBox* firstChild, InlineBox* lastChild, float& logicalLeft, float& minLogicalLeft, float& maxLogicalRight, bool& needsWordSpacing, GlyphOverflowAndFallbackFontsMap&);
RenderBlock.cpp 263 while (InlineBox* childBox = box->firstChild())
415 if (curr->firstChild() == beforeChild)
425 if (!beforeChild && !last->firstChild())
579 cloneBlock->setChildrenInline(cloneBlock->firstChild() ? cloneBlock->firstChild()->isInline() : childrenInline());
684 RenderObject* boxFirst = madeNewBeforeBlock ? block->firstChild() : pre->nextSibling();
723 if (beforeChild != firstChild()) {
733 RenderObject* boxFirst = block->firstChild();
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
jquery-1.3.2.js 230 while ( elem.firstChild )
231 elem = elem.firstChild;
262 this.insertBefore( elem, this.firstChild );
518 first = fragment.firstChild;
661 head.insertBefore( script, head.firstChild );
923 div.firstChild && div.firstChild.childNodes :
938 div.insertBefore( context.createTextNode( elem.match(/^\s*/)[0] ), div.firstChild );
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
InsertParagraphSeparatorCommand.cpp 279 ASSERT(startBlock->firstChild());
280 refNode = startBlock->firstChild();
402 for (n = startBlock->firstChild(); n; n = n->nextSibling()) {
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLObjectElement.cpp 157 for (HTMLParamElement* p = Traversal<HTMLParamElement>::firstChild(*this); p; p = Traversal<HTMLParamElement>::nextSibling(*p)) {
219 for (Node* child = firstChild(); child; child = child->nextSibling()) {
448 for (HTMLElement* child = Traversal<HTMLElement>::firstChild(*this); child; child = Traversal<HTMLElement>::nextSibling(*child)) {
HTMLTextAreaElement.cpp 401 for (Node* n = firstChild(); n; n = n->nextSibling()) {
415 for (Node* n = firstChild(); n; n = n->nextSibling()) {
428 insertBefore(document().createTextNode(value), firstChild(), IGNORE_EXCEPTION);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
WatchExpressionsSidebarPane.js 297 if (this.propertiesElement.firstChild)
312 var candidateElement = this.propertiesElement.firstChild;
410 this.listItemElement.insertBefore(deleteButton, this.listItemElement.firstChild);
  /cts/tests/tests/widget/src/android/widget/cts/
HorizontalScrollViewTest.java 474 View firstChild = mScrollView.findViewById(R.id.first_horizontal_child);
476 firstChild.requestFocus();
484 mScrollView.requestChildFocus(firstChild, firstChild);
ScrollViewTest.java 502 View firstChild = mScrollView.findViewById(R.id.first_child);
504 firstChild.requestFocus();
512 mScrollView.requestChildFocus(firstChild, firstChild);
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
page_selection_test.js 56 this.hSel.end.node = this.hSel.end.node.firstChild;
74 this.pSel.start.node = this.pSel.start.node.firstChild;
  /external/chromium_org/native_client_sdk/src/examples/api/file_io/
example.js 135 while (listDirOutputEl.firstChild) {
136 listDirOutputEl.removeChild(listDirOutputEl.firstChild);
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXNodeObject.h 179 virtual AXObject* firstChild() const OVERRIDE;
AXRenderObject.h 165 virtual AXObject* firstChild() const OVERRIDE;

Completed in 1602 milliseconds

1 2 3 4 5 6 78 91011>>