Searched refs:DocumentFragment (Results 26 - 50 of 144) sorted by relevance

123456

/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLDocumentParser.h57 class DocumentFragment;
82 static void parseDocumentFragment(const String&, DocumentFragment*, Element* contextElement, ParserContentPolicy = AllowScriptingContent);
116 HTMLDocumentParser(DocumentFragment*, Element* contextElement, ParserContentPolicy);
123 static PassRefPtrWillBeRawPtr<HTMLDocumentParser> create(DocumentFragment* fragment, Element* contextElement, ParserContentPolicy parserContentPolicy)
H A DHTMLElementStack.h40 class DocumentFragment;
H A DHTMLConstructionSite.h113 HTMLConstructionSite(DocumentFragment*, ParserContentPolicy);
248 // constructed nodes. It points to a DocumentFragment when parsing fragments
H A DHTMLDocumentParser.cpp31 #include "core/dom/DocumentFragment.h"
126 HTMLDocumentParser::HTMLDocumentParser(DocumentFragment* fragment, Element* contextElement, ParserContentPolicy parserContentPolicy)
233 // We will not have a scriptRunner when parsing a DocumentFragment.
301 // We will not have a scriptRunner when parsing a DocumentFragment.
1005 // so this will not be called in the DocumentFragment case.
1021 void HTMLDocumentParser::parseDocumentFragment(const String& source, DocumentFragment* fragment, Element* contextElement, ParserContentPolicy parserContentPolicy)
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A Dmarkup.cpp43 #include "core/dom/DocumentFragment.h"
111 static void completeURLs(DocumentFragment& fragment, const String& baseURL)
659 PassRefPtrWillBeRawPtr<DocumentFragment> createFragmentFromMarkup(Document& document, const String& markup, const String& baseURL, ParserContentPolicy parserContentPolicy)
663 RefPtrWillBeRawPtr<DocumentFragment> fragment = DocumentFragment::create(document);
690 static void trimFragment(DocumentFragment* fragment, Comment* nodeBeforeContext, Comment* nodeAfterContext)
712 PassRefPtrWillBeRawPtr<DocumentFragment> createFragmentFromMarkupWithContext(Document& document, const String& markup, unsigned fragmentStart, unsigned fragmentEnd,
724 RefPtrWillBeRawPtr<DocumentFragment> taggedFragment = createFragmentFromMarkup(document, taggedMarkup.toString(), baseURL, parserContentPolicy);
747 RefPtrWillBeRawPtr<DocumentFragment> fragment = DocumentFragment
[all...]
H A DMoveSelectionCommand.cpp29 #include "core/dom/DocumentFragment.h"
34 MoveSelectionCommand::MoveSelectionCommand(PassRefPtrWillBeRawPtr<DocumentFragment> fragment, const Position& position, bool smartInsert, bool smartDelete)
H A DEditor.h198 void pasteAsFragment(PassRefPtrWillBeRawPtr<DocumentFragment>, bool smartReplace, bool matchStyle);
221 void replaceSelectionWithFragment(PassRefPtrWillBeRawPtr<DocumentFragment>, bool selectReplacement, bool smartReplace, bool matchStyle);
H A DEditor.cpp41 #include "core/dom/DocumentFragment.h"
353 void Editor::pasteAsFragment(PassRefPtrWillBeRawPtr<DocumentFragment> pastingFragment, bool smartReplace, bool matchStyle)
391 RefPtrWillBeRawPtr<DocumentFragment> fragment = nullptr;
504 void Editor::replaceSelectionWithFragment(PassRefPtrWillBeRawPtr<DocumentFragment> fragment, bool selectReplacement, bool smartReplace, bool matchStyle)
H A DReplaceSelectionCommand.cpp37 #include "core/dom/DocumentFragment.h"
77 ReplacementFragment(Document*, DocumentFragment*, const VisibleSelection&);
99 RefPtrWillBeMember<DocumentFragment> m_fragment;
148 ReplacementFragment::ReplacementFragment(Document* document, DocumentFragment* fragment, const VisibleSelection& selection)
375 ReplaceSelectionCommand::ReplaceSelectionCommand(Document& document, PassRefPtrWillBeRawPtr<DocumentFragment> fragment, CommandOptions options, EditAction editAction)
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLElement.h30 class DocumentFragment;
128 PassRefPtrWillBeRawPtr<DocumentFragment> textToFragment(const String&, ExceptionState&);
H A DHTMLLinkElement.h41 class DocumentFragment;
H A DHTMLElement.cpp37 #include "core/dom/DocumentFragment.h"
323 PassRefPtrWillBeRawPtr<DocumentFragment> HTMLElement::textToFragment(const String& text, ExceptionState& exceptionState)
325 RefPtrWillBeRawPtr<DocumentFragment> fragment = DocumentFragment::create(document());
409 RefPtrWillBeRawPtr<DocumentFragment> fragment = textToFragment(text, exceptionState);
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
H A DVTTParser.cpp325 PassRefPtrWillBeRawPtr<DocumentFragment> buildFromString(const String& cueText);
337 PassRefPtrWillBeRawPtr<DocumentFragment> VTTTreeBuilder::buildFromString(const String& cueText)
343 RefPtrWillBeRawPtr<DocumentFragment> fragment = DocumentFragment::create(document());
361 PassRefPtrWillBeRawPtr<DocumentFragment> VTTParser::createDocumentFragmentFromCueText(Document& document, const String& cueText)
528 // The only non-VTTElement would be the DocumentFragment root. (Text
H A DVTTParser.h35 #include "core/dom/DocumentFragment.h"
100 // Create the DocumentFragment representation of the WebVTT cue text.
101 static PassRefPtrWillBeRawPtr<DocumentFragment> createDocumentFragmentFromCueText(Document&, const String&);
H A DVTTCue.cpp37 #include "core/dom/DocumentFragment.h"
437 PassRefPtrWillBeRawPtr<DocumentFragment> VTTCue::getCueAsHTML()
440 RefPtrWillBeRawPtr<DocumentFragment> clonedFragment = DocumentFragment::create(document());
445 PassRefPtrWillBeRawPtr<DocumentFragment> VTTCue::createCueRenderingTree()
448 RefPtrWillBeRawPtr<DocumentFragment> clonedFragment = DocumentFragment::create(document());
527 static CSSValueID determineTextDirection(DocumentFragment* vttRoot)
713 RefPtrWillBeRawPtr<DocumentFragment> referenceTree = createCueRenderingTree();
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DDOMBuilder.java30 import org.w3c.dom.DocumentFragment;
62 /** First node of document fragment or null if not a DocumentFragment */
63 public DocumentFragment m_docFrag = null;
94 public DOMBuilder(Document doc, DocumentFragment docFrag)
112 * Get the root document or DocumentFragment of the DOM being created.
H A DUnImplNode.java32 import org.w3c.dom.DocumentFragment;
830 public DocumentFragment createDocumentFragment()
/external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
H A DShadowRoot.h31 #include "core/dom/DocumentFragment.h"
46 class ShadowRoot FINAL : public DocumentFragment, public TreeScope, public DoublyLinkedListNode<ShadowRoot> {
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXSLTProcessor.cpp28 #include "core/dom/DocumentFragment.h"
116 PassRefPtrWillBeRawPtr<DocumentFragment> XSLTProcessor::transformToFragment(Node* sourceNode, Document* outputDoc)
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
H A DDOMExtension.js395 DocumentFragment.prototype.createChild = Element.prototype.createChild;
408 DocumentFragment.prototype.createTextChild = Element.prototype.createTextChild;
419 DocumentFragment.prototype.createTextChildren = Element.prototype.createTextChildren;
393 DocumentFragment.prototype.createChild = Element.prototype.createChild; class
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DRange.cpp31 #include "core/dom/DocumentFragment.h"
587 PassRefPtrWillBeRawPtr<DocumentFragment> Range::processContents(ActionType action, ExceptionState& exceptionState)
591 RefPtrWillBeRawPtr<DocumentFragment> fragment = nullptr;
593 fragment = DocumentFragment::create(*m_ownerDocument.get());
698 PassRefPtrWillBeRawPtr<Node> Range::processContentsBetweenOffsets(ActionType action, PassRefPtrWillBeRawPtr<DocumentFragment> fragment,
843 PassRefPtrWillBeRawPtr<DocumentFragment> Range::extractContents(ExceptionState& exceptionState)
852 PassRefPtrWillBeRawPtr<DocumentFragment> Range::cloneContents(ExceptionState& exceptionState)
887 // check each child node, not the DocumentFragment itself
1001 PassRefPtrWillBeRawPtr<DocumentFragment> Range::createContextualFragment(const String& markup, ExceptionState& exceptionState)
1033 exceptionState.throwDOMException(NotSupportedError, "The range's container must be an HTML or SVG Element, Document, or DocumentFragment
[all...]
H A DDocument.idl35 DocumentFragment createDocumentFragment();
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DDragController.cpp37 #include "core/dom/DocumentFragment.h"
152 static PassRefPtrWillBeRawPtr<DocumentFragment> documentFragmentFromDragData(DragData* dragData, LocalFrame* frame, RefPtrWillBeRawPtr<Range> context, bool allowPlainText, bool& chosePlainText)
159 if (PassRefPtrWillBeRawPtr<DocumentFragment> fragment = dragData->asFragment(frame, context, allowPlainText, chosePlainText))
177 RefPtrWillBeRawPtr<DocumentFragment> fragment = document.createDocumentFragment();
497 RefPtrWillBeRawPtr<DocumentFragment> fragment = documentFragmentFromDragData(dragData, innerFrame.get(), range, true, chosePlainText);
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DTransformerIdentityImpl.java56 import org.w3c.dom.DocumentFragment;
245 ? new DOMBuilder(doc, (DocumentFragment) outputNode)
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMNodeProxy.java35 import org.w3c.dom.DocumentFragment;
65 ProcessingInstruction, Comment, DocumentFragment
647 public final DocumentFragment createDocumentFragment()

Completed in 752 milliseconds

123456