Searched refs:ownerDocument (Results 1 - 25 of 88) sorted by relevance

1234

/macosx-10.10/tcl-105/tcl_ext/tdom/tdom/generic/
H A Ddom.c531 if (node->ownerDocument != other->ownerDocument) {
537 return (node->ownerDocument->documentNumber <
538 other->ownerDocument->documentNumber);
542 if (node->ownerDocument->nodeFlags & NEEDS_RENUMBERING) {
543 domRenumberTree (node->ownerDocument->rootNode);
544 node->ownerDocument->nodeFlags &= ~NEEDS_RENUMBERING;
548 if (!(node->ownerDocument->nodeFlags & NEEDS_RENUMBERING)) {
590 if (node == node->ownerDocument->rootNode) {
606 node->nodeNumber = NODE_NO(node->ownerDocument);
[all...]
H A Dxmlsimple.c471 tnode->ownerDocument = doc;
558 tnode->ownerDocument = doc;
638 tnode->ownerDocument = doc;
682 pinode->ownerDocument = doc;
764 node->ownerDocument = doc;
766 node->ownerDocument = doc;
H A Ddomhtml.c767 tnode->ownerDocument = doc;
975 tnode->ownerDocument = doc;
1055 tnode->ownerDocument = doc;
1099 pinode->ownerDocument = doc;
1209 node->ownerDocument = doc;
1421 tnode->ownerDocument = doc;
H A Dtcldom.c262 " ownerDocument \n"
307 " ownerDocument \n"
1094 if (node->ownerDocument->extResolver) {
1095 extResolver = tdomstrdup (node->ownerDocument->extResolver);
1608 mappings = node->ownerDocument->prefixNSMappings;
1614 if (!node->ownerDocument->xpathCache) {
1615 node->ownerDocument->xpathCache = MALLOC (sizeof (Tcl_HashTable));
1616 Tcl_InitHashTable (node->ownerDocument->xpathCache,
1620 node->ownerDocument->xpathCache, &errMsg, &rs);
1838 newnode = (domNode*)domNewTextNode(node->ownerDocument, valu
[all...]
H A Ddomxpath.c2333 (node->ownerDocument->rootNode != node)) return 1;
3062 if (!ctxNode->ownerDocument->ids) {
3082 entryPtr = Tcl_FindHashEntry (ctxNode->ownerDocument->ids,
3088 (node == node->ownerDocument->documentElement)) {
3108 entryPtr = Tcl_FindHashEntry (ctxNode->ownerDocument->ids,
3114 (node == node->ownerDocument->documentElement)) {
3130 entryPtr = Tcl_FindHashEntry (ctxNode->ownerDocument->ids,
3136 (node == node->ownerDocument->documentElement)) {
3580 if (!ctxNode->ownerDocument->unparsedEntities) {
3591 entryPtr = Tcl_FindHashEntry (ctxNode->ownerDocument
[all...]
/macosx-10.10/WebCore-7600.1.25/xml/
H A DXSLTProcessor.cpp73 Ref<Document> ownerDocument(sourceNode->document());
74 bool sourceIsDocument = (sourceNode == &ownerDocument.get());
79 result = Document::create(frame, sourceIsDocument ? ownerDocument->url() : URL());
82 result = DOMImplementation::createDocument(sourceMIMEType, frame, sourceIsDocument ? ownerDocument->url() : URL());
H A DXSLStyleSheetLibxslt.cpp111 if (m_embedded && ownerDocument() && ownerDocument()->transformSource())
112 return (xmlDocPtr)ownerDocument()->transformSource()->platformSource();
128 Document* document = ownerDocument();
144 Frame* frame = ownerDocument()->frame();
262 Document* XSLStyleSheet::ownerDocument() function in class:WebCore::XSLStyleSheet
H A DXSLTProcessorLibxslt.cpp142 Frame* frame = globalProcessor->xslStylesheet()->ownerDocument()->frame();
271 Ref<Document> ownerDocument(sourceNode.document());
272 bool sourceIsDocument = (&sourceNode == &ownerDocument.get());
275 if (sourceIsDocument && ownerDocument->transformSource())
276 sourceDoc = (xmlDocPtr)ownerDocument->transformSource()->platformSource();
278 sourceDoc = (xmlDocPtr)xmlDocPtrForString(ownerDocument->cachedResourceLoader(), createMarkup(sourceNode),
279 sourceIsDocument ? ownerDocument->url().string() : String());
306 Ref<Document> ownerDocument(sourceNode.document());
308 setXSLTLoadCallBack(docLoaderFunc, this, ownerDocument->cachedResourceLoader());
H A DXSLStyleSheet.h76 Document* ownerDocument();
H A DXPathPath.cpp95 context = context->ownerDocument();
/macosx-10.10/WebCore-7600.1.25/loader/
H A DDocumentWriter.h50 void replaceDocument(const String&, Document* ownerDocument);
53 void begin(const URL&, bool dispatchWindowObjectAvailable = true, Document* ownerDocument = 0);
H A DDocumentWriter.cpp74 void DocumentWriter::replaceDocument(const String& source, Document* ownerDocument) argument
77 begin(m_frame->document()->url(), true, ownerDocument);
120 void DocumentWriter::begin(const URL& urlReference, bool dispatch, Document* ownerDocument) argument
155 if (ownerDocument) {
156 document->setCookieURL(ownerDocument->cookieURL());
157 document->setSecurityOrigin(ownerDocument->securityOrigin());
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DDOMDetailsSidebarPanel.js104 if (this._domNode && this._domNode.ownerDocument) {
105 var mainResource = WebInspector.frameResourceManager.resourceForURL(this._domNode.ownerDocument.documentURL);
H A DContentFlowDOMTreeContentView.js70 var documentURL = contentNodes.length ? contentNodes[0].ownerDocument.documentURL : null;
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Models/
H A DDOMNode.js49 this.ownerDocument = this;
51 this.ownerDocument = doc;
73 var node = new WebInspector.DOMNode(this._domAgent, this.ownerDocument, true, root);
89 if (this.ownerDocument && !this.ownerDocument.documentElement && this._nodeName === "HTML")
90 this.ownerDocument.documentElement = this;
91 if (this.ownerDocument && !this.ownerDocument.body && this._nodeName === "BODY")
92 this.ownerDocument.body = this;
466 var node = new WebInspector.DOMNode(this._domAgent, this.ownerDocument, thi
[all...]
/macosx-10.10/WebCore-7600.1.25/css/
H A DCSSStyleSheet.cpp164 Document* owner = ownerDocument();
183 Document* owner = ownerDocument();
191 Document* owner = ownerDocument();
224 reportMediaQueryWarningIfNeeded(ownerDocument(), m_mediaQueries.get());
261 Document* document = ownerDocument();
395 Document* CSSStyleSheet::ownerDocument() const function in class:WebCore::CSSStyleSheet
H A DCSSStyleSheet.h85 Document* ownerDocument() const;
/macosx-10.10/WebCore-7600.1.25/dom/
H A DRange.cpp63 inline Range::Range(Document& ownerDocument) argument
64 : m_ownerDocument(ownerDocument)
65 , m_start(&ownerDocument)
66 , m_end(&ownerDocument)
75 PassRefPtr<Range> Range::create(Document& ownerDocument) argument
77 return adoptRef(new Range(ownerDocument));
80 inline Range::Range(Document& ownerDocument, PassRefPtr<Node> startContainer, int startOffset, PassRefPtr<Node> endContainer, int endOffset) argument
81 : m_ownerDocument(ownerDocument)
82 , m_start(&ownerDocument)
83 , m_end(&ownerDocument)
97 create(Document& ownerDocument, PassRefPtr<Node> startContainer, int startOffset, PassRefPtr<Node> endContainer, int endOffset) argument
102 create(Document& ownerDocument, const Position& start, const Position& end) argument
113 create(Document& ownerDocument, const VisiblePosition& visibleStart, const VisiblePosition& visibleEnd) argument
[all...]
H A DNode.idl61 readonly attribute Document ownerDocument;
/macosx-10.10/WebCore-7600.1.25/html/track/
H A DTextTrackCue.h117 Document& ownerDocument() { return toDocument(m_scriptExecutionContext); } function in class:WebCore::TextTrackCue
H A DVTTRegion.h101 Document* ownerDocument() { return toDocument(m_scriptExecutionContext); } function in class:WebCore::VTTRegion
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Controllers/
H A DDOMTreeManager.js648 var regionFlowKey = WebInspector.DOMTreeManager._flowPayloadHashKey({documentNodeId: domNode.ownerDocument.id, name: regionFlowNameProperty.value.value});
655 var contentFlowKey = WebInspector.DOMTreeManager._flowPayloadHashKey({documentNodeId: domNode.ownerDocument.id, name: contentFlowNameProperty.value.value});
679 if (!node.ownerDocument || !node.ownerDocument.defaultView)
681 var computedStyle = node.ownerDocument.defaultView.getComputedStyle(node);
697 // Even detached nodes have an ownerDocument.
698 console.assert(node.ownerDocument);
707 var flowThread = node.ownerDocument.webkitGetNamedFlows().namedItem(result.contentFlowName);
/macosx-10.10/WebKit2-7600.1.25/WebProcess/InjectedBundle/API/mac/
H A DWKDOMRange.mm143 _impl->ownerDocument().updateLayoutIgnorePendingStylesheets();
/macosx-10.10/WebCore-7600.1.25/inspector/
H A DInspectorStyleSheet.cpp254 sourceURL = InspectorDOMAgent::documentURLString(parentStyleSheet->ownerDocument());
268 Document* doc = styleSheet->ownerDocument();
361 Document* ownerDocument = m_parentStyleSheet->pageStyleSheet() ? m_parentStyleSheet->pageStyleSheet()->ownerDocument() : nullptr; local
362 createCSSParser(ownerDocument)->parseDeclaration(tempMutableStyle.get(), propertyText + " " + bogusPropertyName + ": none", sourceData, &m_style->parentStyleSheet()->contents());
867 if (!checkStyleRuleSelector(m_pageStyleSheet->ownerDocument(), selector)) {
982 Document* document = styleSheet->ownerDocument();
1203 Document* InspectorStyleSheet::ownerDocument() const function in class:WebCore::InspectorStyleSheet
1205 return m_pageStyleSheet->ownerDocument();
1273 createCSSParser(m_pageStyleSheet->ownerDocument())
1483 Document* InspectorStyleSheetForInlineStyle::ownerDocument() const function in class:WebCore::InspectorStyleSheetForInlineStyle
[all...]
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Base/
H A DUtilities.js107 for (var node = this; node && node !== this.ownerDocument; node = node.parentNode)
119 for (var node = this; node && node !== this.ownerDocument; node = node.parentNode) {
305 var result = this.ownerDocument.createRange();
366 var element = this.ownerDocument.createElement(elementName);
387 this.ownerDocument.defaultView.getComputedStyle(this);

Completed in 408 milliseconds

1234