HomeSort by relevance Sort by last modified time
    Searched refs:parentNode (Results 101 - 125 of 188) sorted by null

1 2 3 45 6 7 8

  /external/webkit/WebCore/dom/
CharacterData.cpp 188 if (parentNode())
189 parentNode()->childrenChanged();
Position.cpp 128 return m_anchorNode->parentNode();
200 n = n->parentNode();
242 Node* parent = n->parentNode();
274 Node* parent = n->parentNode();
335 return !node()->parentNode() && m_offset <= 0;
342 return !node()->parentNode() && m_offset >= lastOffsetForEditing(node());
448 node = node->parentNode();
633 // positions will be [boundary->parentNode(), originalBlock->nodeIndex() + 1].
634 if (boundary && boundary->parentNode() == currentNode)
    [all...]
Node.idl 57 readonly attribute Node parentNode;
  /external/webkit/WebCore/editing/
InsertListCommand.cpp 189 } else if (nextListChild || listChildNode->parentNode() != listNode) {
194 if (listChildNode->parentNode() != listNode)
ReplaceSelectionCommand.cpp 195 Node *parent = node->parentNode();
209 Node* parent = refNode->parentNode();
232 n = n->parentNode();
604 Node* context = sourceDocumentStyleSpan->parentNode();
611 RefPtr<CSSMutableStyleDeclaration> parentStyle = editingStyleAtPosition(Position(blockquoteNode->parentNode(), 0));
620 context = blockquoteNode->parentNode();
658 context = copiedRangeStyleSpan->parentNode();
    [all...]
visible_units.cpp 88 while (boundary && boundary != de && boundary->parentNode() && isContentEditable == boundary->parentNode()->isContentEditable())
89 boundary = boundary->parentNode();
181 while (boundary && boundary != de && boundary->parentNode() && isContentEditable == boundary->parentNode()->isContentEditable())
182 boundary = boundary->parentNode();
544 for (Node* p = n; p; p = p->parentNode()) {
    [all...]
  /external/webkit/WebCore/html/
HTMLEmbedElement.cpp 61 n = n->parentNode();
133 Node* p = parentNode();
HTMLFrameSetElement.cpp 179 for (Node* node = parentNode(); node; node = node->parentNode()) {
HTMLTableCellElement.cpp 129 Node* p = parentNode();
131 p = p->parentNode();
HTMLImageElement.cpp 216 for (Node* ancestor = parentNode(); ancestor; ancestor = ancestor->parentNode()) {
HTMLElement.cpp 501 Node* parent = parentNode();
663 if (parentNode())
664 return parentNode()->isContentEditable();
680 if (parentNode())
681 return parentNode()->isContentEditable();
    [all...]
  /external/webkit/WebCore/svg/
SVGElementInstance.idl 43 readonly attribute SVGElementInstance parentNode;
SVGFontFaceElement.cpp 278 bool describesParentFont = parentNode()->hasTagName(SVGNames::fontTag);
282 m_fontElement = static_cast<SVGFontElement*>(parentNode());
SVGElementInstance.h 61 SVGElementInstance* parentNode() const { return parent(); }
  /packages/apps/Mms/src/com/android/mms/dom/
NodeImpl.java 205 private void setParentNode(Node parentNode) {
206 mParentNode = parentNode;
  /external/webkit/WebKit/qt/Api/
qwebelement.cpp     [all...]
  /cts/tools/utils/
DescriptionGenerator.java 313 Node parentNode = suiteElem.getParentNode();
314 parentNode.removeChild(suiteElem);
315 parentNode.appendChild(child);
  /frameworks/base/tools/preload/
sorttable.js 122 theadrow = this.parentNode;
130 if (sortfwdind) { sortfwdind.parentNode.removeChild(sortfwdind); }
132 if (sortrevind) { sortrevind.parentNode.removeChild(sortrevind); }
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
RulesEngine.java 199 * @param parentNode The parent of the node selected. Never null.
202 public void callOnChildSelected(IGraphics gc, NodeProxy parentNode, NodeProxy childNode) {
204 IViewRule rule = loadRule(parentNode.getNode());
208 rule.onChildSelected(gc, parentNode, childNode);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/
AttrsXmlParser.java 221 Node parentNode = node.getAttributes().getNamedItem("parent"); //$NON-NLS-1$
222 String parents = parentNode == null ? null : parentNode.getNodeValue();
  /external/webkit/WebKitTools/DumpRenderTree/win/
PolicyDelegate.cpp 51 if (SUCCEEDED(node->parentNode(&parent)))
  /external/webkit/WebCore/rendering/
RenderListItem.cpp 85 Node* parent = node->parentNode();
86 for (Node* n = parent; n; n = n->parentNode())
  /external/webkit/WebKitTools/DumpRenderTree/mac/
EditingDelegate.mm 43 DOMNode *parent = [self parentNode];
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/gscripts/
android.widget.RelativeLayout.groovy 30 void onChildSelected(IGraphics gc, INode parentNode, INode childNode) {
31 super.onChildSelected(gc, parentNode, childNode);
34 INode topParent = parentNode;
  /external/webkit/SunSpider/tests/parse-only/
concat-jquery-mootools-prototype.js 224 if ( this[0].parentNode )
268 this.parentNode.insertBefore( elem, this );
274 this.parentNode.insertBefore( elem, this.nextSibling );
372 cur = cur.parentNode;
554 if ( elem.parentNode )
555 elem.parentNode.removeChild( elem );
932 tbody[ j ].parentNode.removeChild( tbody[ j ] );
953 scripts.push( ret[i].parentNode ? ret[i].parentNode.removeChild( ret[i] ) : ret[i] );
988 if ( name == "selected" && elem.parentNode )
    [all...]

Completed in 3706 milliseconds

1 2 3 45 6 7 8