HomeSort by relevance Sort by last modified time
    Searched refs:firstChild (Results 151 - 175 of 260) sorted by null

1 2 3 4 5 67 8 91011

  /external/webkit/WebKit/android/jni/
WebHistory.cpp 117 WebCore::Frame* child = pFrame->tree()->firstChild();
128 WebCore::Frame* firstChild;
129 if (item && (firstChild = child->tree()->firstChild()))
130 frameQueue.append(firstChild);
  /external/webkit/WebKit/win/
DOMCoreClasses.h 146 virtual HRESULT STDMETHODCALLTYPE firstChild(
372 virtual HRESULT STDMETHODCALLTYPE firstChild(
373 /* [retval][out] */ IDOMNode **result) { return DOMNode::firstChild(result); }
604 virtual HRESULT STDMETHODCALLTYPE firstChild(
605 /* [retval][out] */ IDOMNode **result) { return DOMNode::firstChild(result); }
    [all...]
  /external/webkit/WebCore/editing/
TypingCommand.cpp 397 if (!root->firstChild())
400 if (root->firstChild() == root->lastChild() && root->firstElementChild() && root->firstElementChild()->hasTagName(brTag)) {
406 while (Node* child = root->firstChild())
  /external/webkit/WebCore/rendering/
MediaControlElements.cpp 196 if (firstChild() && firstChild()->renderer())
197 firstChild()->renderer()->setStyle(style.get());
RenderTreeAsText.cpp 431 for (RenderObject* child = o.firstChild(); child; child = child->nextSibling()) {
624 for (RenderObject* child = parent->firstChild(); child; child = child->nextSibling()) {
645 for (RenderObject* child = renderer->firstChild(); child; child = child->nextSibling()) {
RenderFrameSet.cpp 128 RenderObject* child = firstChild();
413 RenderObject* child = firstChild();
487 RenderObject* child = firstChild();
606 child = (RenderBox*)firstChild();
RenderSVGRoot.cpp 136 if (!firstChild() && !selfWillPaint())
  /external/webkit/WebCore/dom/
Node.h 123 Node* firstChild() const { return isContainerNode() ? containerFirstChild() : 0; }
141 bool hasChildNodes() const { return firstChild(); }
XMLTokenizer.cpp 295 documentElement->insertBefore(reportElement, documentElement->firstChild(), ec);
  /external/webkit/WebCore/svg/
SVGPatternElement.cpp 224 for (Node* n = attributes.patternContentElement()->firstChild(); n; n = n->nextSibling()) {
277 for (Node* n = attributes.patternContentElement()->firstChild(); n; n = n->nextSibling()) {
SVGAnimateMotionElement.cpp 109 for (Node* child = firstChild(); child; child = child->nextSibling()) {
SVGFilterElement.cpp 200 for (Node* n = firstChild(); n != 0; n = n->nextSibling()) {
SVGFontFaceElement.cpp 273 for (Node* child = firstChild(); child && !srcElement; child = child->nextSibling()) {
  /cts/tests/tests/widget/src/android/widget/cts/
HorizontalScrollViewTest.java 610 View firstChild = mScrollView.findViewById(R.id.first_horizontal_child);
612 firstChild.requestFocus();
620 mScrollView.requestChildFocus(firstChild, firstChild);
ScrollViewTest.java 638 View firstChild = mScrollView.findViewById(R.id.first_child);
640 firstChild.requestFocus();
648 mScrollView.requestChildFocus(firstChild, firstChild);
  /external/tinyxml/
tinyxml.h 486 const TiXmlNode* FirstChild() const { return firstChild; } ///< The first child of this node. Will be null if there are no children.
487 TiXmlNode* FirstChild() { return firstChild; }
488 const TiXmlNode* FirstChild( const char * value ) const; ///< The first child of this node with the matching 'value'. Will be null if none found.
489 TiXmlNode* FirstChild( const char * value ); ///< The first child of this node with the matching 'value'. Will be null if none found.
497 const TiXmlNode* FirstChild( const std::string& _value ) const { return FirstChild (_value.c_str ()); } ///< STL std::string form.
498 TiXmlNode* FirstChild( const std::string& _value ) { return FirstChild (_value.c_str ()); } ///< STL std::string form
    [all...]
  /external/webkit/JavaScriptCore/profiler/
ProfileNode.h 98 ProfileNode* firstChild() const { return m_children.size() ? m_children.first().get() : 0; }
  /external/webkit/LayoutTests/fast/js/resources/
js-test-pre.js 10 if (description.firstChild)
11 description.replaceChild(span, description.firstChild);
  /external/webkit/WebCore/accessibility/
AccessibilityRenderObject.h 132 virtual AccessibilityObject* firstChild() const;
AccessibilityRenderObject.cpp 120 AccessibilityObject* AccessibilityRenderObject::firstChild() const
125 RenderObject* firstChild = m_renderer->firstChild();
126 if (!firstChild)
129 return m_renderer->document()->axObjectCache()->getOrCreate(firstChild);
670 Node* sibling = node->parent()->firstChild();
964 for (Node* n = idElement->firstChild(); n; n = n->traverseNextNode(idElement)) {
    [all...]
  /external/webkit/WebCore/history/
CachedFrame.cpp 139 for (Frame* child = frame->tree()->firstChild(); child; child = child->tree()->nextSibling())
  /external/webkit/WebCore/inspector/front-end/
WatchExpressionsSidebarPane.js 235 this.listItemElement.insertBefore(deleteButton, this.listItemElement.firstChild);
  /external/webkit/WebCore/wml/
WMLTableElement.cpp 190 if (tryMergeAdjacentTextCells(newCell->lastChild(), columnElement->firstChild()))
  /external/webkit/WebKit/chromium/src/
WebFrameImpl.h 81 virtual WebFrame* firstChild() const;
  /external/webkit/WebKit/qt/Api/
qwebelement.h 95 QWebElement firstChild() const;

Completed in 355 milliseconds

1 2 3 4 5 67 8 91011