Home
last modified time | relevance | path

Searched refs:inDocument (Results 1 – 25 of 81) sorted by relevance

1234

/external/webkit/Source/WebCore/editing/
DReplaceNodeWithSpanCommand.cpp53 ASSERT(nodeToReplace->inDocument()); in swapInNodePreservingAttributesAndChildren()
74 if (!m_elementToReplace->inDocument()) in doApply()
83 if (!m_spanElement->inDocument()) in doUnapply()
DMoveSelectionCommand.cpp65 if (!pos.anchorNode()->inDocument()) in doApply()
69 if (!pos.anchorNode()->inDocument()) { in doApply()
DReplaceSelectionCommand.cpp429 if (m_lastLeafInserted && !m_lastLeafInserted->inDocument()) in removeNodeAndPruneAncestors()
431 if (m_firstNodeInserted && !m_firstNodeInserted->inDocument()) in removeNodeAndPruneAncestors()
432 … m_firstNodeInserted = m_lastLeafInserted && m_lastLeafInserted->inDocument() ? afterFirst : 0; in removeNodeAndPruneAncestors()
756 if (!m_firstNodeInserted->inDocument()) in mergeEndIfNeeded()
1001 if (!refNode->inDocument()) in doApply()
1012 if (!node->inDocument()) in doApply()
1029 if (!m_firstNodeInserted || !m_firstNodeInserted->inDocument()) in doApply()
1072 if (!startOfParagraphToMove.deepEquivalent().anchorNode()->inDocument()) in doApply()
1080 if (!m_lastLeafInserted->inDocument()) in doApply()
1173 if (!endBR || !endBR->inDocument()) in shouldRemoveEndBR()
[all …]
DDeleteSelectionCommand.cpp517 …tOf(m_downstreamEnd.deprecatedNode()) && m_downstreamEnd.anchorNode()->inDocument() && m_downstrea… in handleGeneralDelete()
534 … } else if (!(startNodeWasDescendantOfEndNode && !m_upstreamStart.anchorNode()->inDocument())) { in handleGeneralDelete()
586 if (!m_downstreamEnd.anchorNode()->inDocument() || !m_upstreamStart.anchorNode()->inDocument()) in mergeParagraphs()
657 if (m_endTableRow && m_endTableRow->inDocument() && m_endTableRow != m_startTableRow) { in removePreviouslySelectedEmptyTableRows()
670 if (m_startTableRow && m_startTableRow->inDocument() && m_startTableRow != m_endTableRow) { in removePreviouslySelectedEmptyTableRows()
680 if (m_endTableRow && m_endTableRow->inDocument() && m_endTableRow != m_startTableRow) in removePreviouslySelectedEmptyTableRows()
DIndentOutdentCommand.cpp208 …f (endAfterSelection.isNotNull() && !endAfterSelection.deepEquivalent().anchorNode()->inDocument()) in outdentRegion()
211 …ndOfNextParagraph.isNotNull() && !endOfNextParagraph.deepEquivalent().anchorNode()->inDocument()) { in outdentRegion()
DApplyStyleCommand.cpp785 for (RefPtr<Node> node = next; node && node->inDocument() && node != pastEndNode; node = next) { in removeStyleFromRunBeforeApplyingStyle()
794 if (!node->inDocument()) { in removeStyleFromRunBeforeApplyingStyle()
826 if (!element->inDocument()) in removeInlineStyleFromElement()
856 ASSERT(newSpanElement && newSpanElement->inDocument()); in replaceWithSpanOrRemoveIfWithoutAttributes()
1029 ASSERT(start.anchorNode()->inDocument()); in removeInlineStyle()
1030 ASSERT(end.anchorNode()->inDocument()); in removeInlineStyle()
1069 if (!elem->inDocument()) { in removeInlineStyle()
1360 if (!passedStart || !passedEnd || !passedStart->inDocument() || !passedEnd->inDocument()) in addInlineStyleIfNeeded()
DDeleteButtonController.cpp66 if (!node || !node->isHTMLElement() || !node->inDocument() || !node->rendererIsEditable()) in isDeletableElement()
263 if (!enabled() || !element || !element->inDocument() || !isDeletableElement(element)) in show()
/external/webkit/Source/WebCore/dom/
DScriptElement.cpp90 if (!m_parserInserted && m_element->inDocument()) in childrenChanged()
177 if (!m_element->inDocument()) in prepareScript()
246 if (!m_element->inDocument() || m_element->document() != originalDocument) in requestScript()
321 return m_alreadyStarted || m_isExternalScript || m_parserInserted || !m_element->inDocument(); in ignoresLoadRequest()
DContainerNode.cpp452 if (child->inDocument()) in removeChild()
498 if (oldChild->inDocument()) in parserRemoveChild()
563 if (removedChild->inDocument()) in removeChildren()
665 if (inDocument()) in parserAddChild()
757 for (it = children.begin(); it != children.end() && inDocument(); ++it) { in insertedIntoDocument()
1053 if (parentOrHostNode && parentOrHostNode->inDocument()) in notifyChildInserted()
1072 …if (c->inDocument() && document->hasListenerType(Document::DOMNODEINSERTEDINTODOCUMENT_LISTENER)) { in dispatchChildInsertionEvents()
1094 … if (c->inDocument() && document->hasListenerType(Document::DOMNODEREMOVEDFROMDOCUMENT_LISTENER)) { in dispatchChildRemovalEvents()
DStyleElement.cpp99 if (!e || !e->inDocument()) in process()
133 ASSERT(e->inDocument()); in createSheet()
DSelectorNodeList.cpp53 …if (strictParsing && rootNode->inDocument() && onlySelector && onlySelector->m_match == CSSSelecto… in createSelectorNodeList()
DScriptRunner.cpp58 ASSERT(element->inDocument()); in queueScriptForExecution()
/external/webkit/Source/WebCore/html/
DHTMLMapElement.cpp115 if (inDocument()) in parseMappedAttribute()
121 if (inDocument()) in parseMappedAttribute()
DHTMLObjectElement.cpp111 if (isDocNamedItem() && inDocument() && document()->isHTMLDocument()) { in parseMappedAttribute()
125 if (isDocNamedItem() && inDocument() && document()->isHTMLDocument()) { in parseMappedAttribute()
317 if (!inDocument()) in insertedIntoDocument()
352 if (inDocument() && !useFallbackContent()) { in childrenChanged()
374 if (!inDocument()) in renderFallbackContent()
DHTMLAppletElement.cpp61 if (inDocument() && document()->isHTMLDocument()) { in parseMappedAttribute()
69 if (inDocument() && document()->isHTMLDocument()) { in parseMappedAttribute()
DHTMLEmbedElement.cpp116 if (inDocument() && document()->isHTMLDocument()) { in parseMappedAttribute()
221 if (!inDocument()) in insertedIntoDocument()
DHTMLLinkElement.cpp218 if (!inDocument() || document() != originalDocument) in checkBeforeLoadEvent()
225 if (!inDocument() || m_isInShadowTree) { in process()
362 if (!inDocument()) { in setCSSStyleSheet()
DHTMLImageLoader.cpp83 if (!elem->inDocument()) { in notifyFinished()
DHTMLMetaElement.cpp76 if (!inDocument() || m_content.isNull()) in process()
DHTMLTitleElement.cpp61 if (inDocument()) in childrenChanged()
/external/webkit/Source/WebCore/bindings/v8/
DRetainedDOMInfo.cpp66 return m_root->inDocument() ? "Document DOM tree" : "Detached DOM tree"; in GetLabel()
/external/webkit/Source/WebCore/svg/
DSVGTitleElement.cpp56 if (inDocument()) in childrenChanged()
/external/webkit/Source/WebCore/page/
DFrameActionScheduler.cpp47 if (m_eventTarget->inDocument()) in fire()
/external/webkit/Source/WebCore/bindings/js/
DJSNodeCustom.h91 if (node->inDocument()) in root()
DJSClipboardCustom.cpp123 if (static_cast<Element*>(node)->hasLocalName(imgTag) && !node->inDocument()) in setDragImage()

1234