Searched defs:parentNode (Results 1 - 25 of 41) sorted by relevance

12

/external/webkit/Source/JavaScriptCore/API/tests/
H A DNodeList.h33 Node* parentNode; member in struct:__anon15525
36 extern NodeList* NodeList_new(Node* parentNode);
H A DNodeList.c30 extern NodeList* NodeList_new(Node* parentNode) argument
32 Node_ref(parentNode);
35 nodeList->parentNode = parentNode;
44 NodeLink* n = nodeList->parentNode->childNodesTail;
60 NodeLink* n = nodeList->parentNode->childNodesTail;
78 Node_deref(nodeList->parentNode);
/external/webkit/Source/WebCore/css/
H A DStyleSheet.cpp37 StyleSheet::StyleSheet(Node* parentNode, const String& originalURL, const KURL& finalURL) argument
39 , m_parentNode(parentNode)
61 // is still observable from JavaScript. This matches the behavior of .parentNode for nodes, but
H A DCSSStyleSheet.cpp40 static bool isAcceptableCSSStyleSheetParent(Node* parentNode) argument
43 return !parentNode
44 || parentNode->isDocumentNode()
45 || parentNode->hasTagName(HTMLNames::linkTag)
46 || parentNode->hasTagName(HTMLNames::styleTag)
48 || parentNode->hasTagName(SVGNames::styleTag)
50 || parentNode->nodeType() == Node::PROCESSING_INSTRUCTION_NODE;
64 CSSStyleSheet::CSSStyleSheet(Node* parentNode, const String& href, const KURL& baseURL, const String& charset) argument
65 : StyleSheet(parentNode, href, baseURL)
72 ASSERT(isAcceptableCSSStyleSheetParent(parentNode));
[all...]
/external/webkit/Source/WebCore/editing/
H A DReplaceNodeWithSpanCommand.cpp55 ContainerNode* parentNode = nodeToReplace->parentNode(); local
56 parentNode->insertBefore(newNode, nodeToReplace, ec);
68 parentNode->removeChild(nodeToReplace, ec);
H A DReplaceSelectionCommand.cpp215 ContainerNode* parent = node->parentNode();
229 ContainerNode* parent = refNode->parentNode();
252 n = n->parentNode();
623 ContainerNode* context = sourceDocumentStyleSpan->parentNode();
630 context = blockquoteNode->parentNode();
668 context = copiedRangeStyleSpan->parentNode();
685 void ReplaceSelectionCommand::copyStyleToChildren(Node* parentNode, const CSSMutableStyleDeclaration* parentStyle) argument
687 ASSERT(parentNode->hasTagName(spanTag));
689 for (RefPtr<Node> childNode = parentNode->firstChild(); childNode; childNode = childNode->nextSibling())
696 RefPtr<Node> newNode = parentNode
[all...]
/external/webkit/Source/WebCore/rendering/svg/
H A DRenderSVGGradientStop.cpp72 ContainerNode* parentNode = node()->parentNode(); local
73 if (parentNode->hasTagName(linearGradientTag) || parentNode->hasTagName(radialGradientTag))
74 return static_cast<SVGGradientElement*>(parentNode);
/external/webkit/Source/WebCore/dom/
H A DTreeWalker.cpp57 Node* TreeWalker::parentNode(ScriptState* state) function in class:WebCore::TreeWalker
61 node = node->parentNode();
97 ContainerNode* parent = node->parentNode();
130 ContainerNode* parent = node->parentNode();
165 node = node->parentNode();
202 node = node->parentNode();
239 ContainerNode* parent = node->parentNode();
H A DTreeWalker.h47 Node* parentNode(ScriptState*);
57 Node* parentNode() { return parentNode(scriptStateFromNode(mainThreadNormalWorld(), m_current.get())); } function in class:WebCore::TreeWalker
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DKeyDeclaration.java45 public KeyDeclaration(Stylesheet parentNode, int docOrderNumber) argument
47 m_parentNode = parentNode;
/external/webkit/Source/WebCore/accessibility/
H A DAccessibilityListBoxOption.cpp162 HTMLSelectElement* parentNode = listBoxOptionParentNode(); local
163 if (!parentNode)
166 return m_optionElement->document()->axObjectCache()->getOrCreate(parentNode->renderer());
/external/webkit/Source/WebCore/xml/
H A DXSLStyleSheet.h50 static PassRefPtr<XSLStyleSheet> create(ProcessingInstruction* parentNode, const String& originalURL, const KURL& finalURL) argument
52 return adoptRef(new XSLStyleSheet(parentNode, originalURL, finalURL, false));
54 static PassRefPtr<XSLStyleSheet> createEmbedded(ProcessingInstruction* parentNode, const KURL& finalURL) argument
56 return adoptRef(new XSLStyleSheet(parentNode, finalURL.string(), finalURL, true));
61 static PassRefPtr<XSLStyleSheet> createForXSLTProcessor(Node* parentNode, const String& originalURL, const KURL& finalURL) argument
63 return adoptRef(new XSLStyleSheet(parentNode, originalURL, finalURL, false));
100 XSLStyleSheet(Node* parentNode, const String& originalURL, const KURL& finalURL, bool embedded);
H A DXSLStyleSheetQt.cpp35 XSLStyleSheet::XSLStyleSheet(Node* parentNode, const String& originalURL, const KURL& finalURL, bool embedded) argument
36 : StyleSheet(parentNode, originalURL, finalURL)
H A DXSLStyleSheetLibxslt.cpp67 XSLStyleSheet::XSLStyleSheet(Node* parentNode, const String& originalURL, const KURL& finalURL, bool embedded) argument
68 : StyleSheet(parentNode, originalURL, finalURL)
/external/llvm/lib/Analysis/
H A DDominanceFrontier.cpp30 : currentBB(B), parentBB(P), Node(N), parentNode(PN) {}
34 const DomTreeNode *parentNode; member in class:__anon9389::DFCalculateWorkObject
57 const DomTreeNode *parentNode = currentW->parentNode; local
102 if (!DT.properlyDominates(parentNode, DT[*CDFI]))
/external/webkit/Source/JavaScriptCore/profiler/
H A DProfileNode.cpp59 ProfileNode::ProfileNode(ExecState* callerCallFrame, const CallIdentifier& callIdentifier, ProfileNode* headNode, ProfileNode* parentNode) argument
63 , m_parent(parentNode)
H A DProfileNode.h48 static PassRefPtr<ProfileNode> create(ExecState* callerCallFrame, const CallIdentifier& callIdentifier, ProfileNode* headNode, ProfileNode* parentNode) argument
50 return adoptRef(new ProfileNode(callerCallFrame, callIdentifier, headNode, parentNode));
133 ProfileNode(ExecState* callerCallFrame, const CallIdentifier&, ProfileNode* headNode, ProfileNode* parentNode);
/external/webkit/Source/WebKit/chromium/src/
H A DWebNode.cpp81 WebNode WebNode::parentNode() const function in class:WebKit::WebNode
83 return WebNode(const_cast<ContainerNode*>(m_private->parentNode()));
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DXMPIteratorImpl.java534 * @param parentNode the node which children shall be iterated.
537 public NodeIteratorChildren(XMPNode parentNode, String parentPath) argument
539 if (parentNode.getOptions().isSchemaNode())
541 setBaseNS(parentNode.getName());
543 this.parentPath = accumulatePath(parentNode, parentPath, 1);
545 childrenIterator = parentNode.iterateChildren();
H A DXMPNodeUtils.java449 * @param parentNode the node to start to start from
456 XMPNode parentNode,
466 nextNode = findChildNode(parentNode, nextStep.getName(), createNodes);
471 parentNode, nextStep.getName().substring(1), createNodes);
477 if (!parentNode.getOptions().isArray())
484 index = findIndexedItem(parentNode, nextStep.getName(), createNodes);
488 index = parentNode.getChildrenLength();
495 index = lookupFieldSelector(parentNode, fieldName, fieldValue);
503 parentNode, qualName, qualValue, nextStep.getAliasForm());
511 if (1 <= index && index <= parentNode
455 followXPathStep( XMPNode parentNode, XMPPathSegment nextStep, boolean createNodes) argument
[all...]
H A DXMPSerializerRDF.java408 * @param parentNode the parent property node
413 private boolean serializeCompactRDFAttrProps(XMPNode parentNode, int indent) throws IOException argument
417 for (Iterator it = parentNode.iterateChildren(); it.hasNext();)
483 * @param parentNode the parent node
488 private void serializeCompactRDFElementProps(XMPNode parentNode, int indent) argument
491 for (Iterator it = parentNode.iterateChildren(); it.hasNext();)
/external/webkit/Source/WebCore/svg/
H A DSVGElementInstance.h68 SVGElementInstance* parentNode() const { return parent(); } function in class:WebCore::SVGElementInstance
H A DSVGUseElement.cpp331 ContainerNode* parentNode = shadowRoot->parentNode(); local
332 ASSERT(parentNode);
333 ASSERT(parentNode->isSVGElement());
334 ASSERT(parentNode->hasTagName(SVGNames::gTag));
335 ASSERT(static_cast<SVGGElement*>(parentNode)->isShadowTreeContainerElement());
337 SVGShadowTreeContainerElement* containerElement = static_cast<SVGShadowTreeContainerElement*>(parentNode);
394 String parentNodeName = element->parentNode() ? element->parentNode()->nodeName() : "null";
400 text += String::format("SVGElementInstance this=%p, (parentNode
[all...]
/external/webkit/Source/WebKit/win/
H A DDOMCoreClasses.h139 virtual HRESULT STDMETHODCALLTYPE parentNode(
363 virtual HRESULT STDMETHODCALLTYPE parentNode( function in class:DOMDocument
364 /* [retval][out] */ IDOMNode** result) { return DOMNode::parentNode(result); }
594 virtual HRESULT STDMETHODCALLTYPE parentNode( function in class:DOMElement
595 /* [retval][out] */ IDOMNode** result) { return DOMNode::parentNode(result); }
/external/webkit/Source/WebCore/inspector/front-end/
H A DStylesSidebarPane.js135 if (node && node.nodeType() === Node.TEXT_NODE && node.parentNode)
136 node = node.parentNode;
269 var parentNode = node.parentNode; variable
285 insertInheritedNodeSeparator(parentNode);
298 insertInheritedNodeSeparator(parentNode);
303 parentNode = parentNode.parentNode;
526 if (section.element.parentNode)
[all...]

Completed in 478 milliseconds

12