DocumentFragment  977 Source/bindings/tests/results/V8TestObject.cpp     V8TRYCATCH_VOID(DocumentFragment*, cppValue, V8DocumentFragment::toNativeWithTypeCheck(info.GetIsolate(), v8Value));
DocumentFragment  831 Source/core/dom/Document.cpp PassRefPtr<DocumentFragment> Document::createDocumentFragment()
DocumentFragment  833 Source/core/dom/Document.cpp     return DocumentFragment::create(*this);
DocumentFragment  942 Source/core/dom/Document.cpp         DocumentFragment* oldFragment = toDocumentFragment(importedNode);
DocumentFragment  943 Source/core/dom/Document.cpp         RefPtr<DocumentFragment> newFragment = createDocumentFragment();
DocumentFragment   85 Source/core/dom/Document.h class DocumentFragment;
DocumentFragment  315 Source/core/dom/Document.h     PassRefPtr<DocumentFragment> createDocumentFragment();
DocumentFragment   32 Source/core/dom/DocumentFragment.cpp DocumentFragment::DocumentFragment(Document* document, ConstructionType constructionType)
DocumentFragment   38 Source/core/dom/DocumentFragment.cpp PassRefPtr<DocumentFragment> DocumentFragment::create(Document& document)
DocumentFragment   40 Source/core/dom/DocumentFragment.cpp     return adoptRef(new DocumentFragment(&document, Node::CreateDocumentFragment));
DocumentFragment   43 Source/core/dom/DocumentFragment.cpp String DocumentFragment::nodeName() const
DocumentFragment   48 Source/core/dom/DocumentFragment.cpp Node::NodeType DocumentFragment::nodeType() const
DocumentFragment   53 Source/core/dom/DocumentFragment.cpp bool DocumentFragment::childTypeAllowed(NodeType type) const
DocumentFragment   67 Source/core/dom/DocumentFragment.cpp PassRefPtr<Node> DocumentFragment::cloneNode(bool deep)
DocumentFragment   69 Source/core/dom/DocumentFragment.cpp     RefPtr<DocumentFragment> clone = create(document());
DocumentFragment   75 Source/core/dom/DocumentFragment.cpp void DocumentFragment::parseHTML(const String& source, Element* contextElement, ParserContentPolicy parserContentPolicy)
DocumentFragment   80 Source/core/dom/DocumentFragment.cpp bool DocumentFragment::parseXML(const String& source, Element* contextElement, ParserContentPolicy parserContentPolicy)
DocumentFragment   34 Source/core/dom/DocumentFragment.h class DocumentFragment : public ContainerNode {
DocumentFragment   36 Source/core/dom/DocumentFragment.h     static PassRefPtr<DocumentFragment> create(Document&);
DocumentFragment   45 Source/core/dom/DocumentFragment.h     DocumentFragment(Document*, ConstructionType = CreateContainer);
DocumentFragment   54 Source/core/dom/DocumentFragment.h DEFINE_NODE_TYPE_CASTS(DocumentFragment, nodeType() == Node::DOCUMENT_FRAGMENT_NODE);
DocumentFragment 2247 Source/core/dom/Element.cpp     if (RefPtr<DocumentFragment> fragment = createFragmentForInnerOuterHTML(html, this, AllowScriptingContent, "innerHTML", exceptionState)) {
DocumentFragment 2271 Source/core/dom/Element.cpp     RefPtr<DocumentFragment> fragment = createFragmentForInnerOuterHTML(html, parent.get(), AllowScriptingContent, "outerHTML", exceptionState);
DocumentFragment 2359 Source/core/dom/Element.cpp     RefPtr<DocumentFragment> fragment = createFragmentForInnerOuterHTML(markup, contextElement.get(), AllowScriptingContent, "insertAdjacentHTML", exceptionState);
DocumentFragment  669 Source/core/dom/Range.cpp PassRefPtr<DocumentFragment> Range::processContents(ActionType action, ExceptionState& exceptionState)
DocumentFragment  673 Source/core/dom/Range.cpp     RefPtr<DocumentFragment> fragment;
DocumentFragment  675 Source/core/dom/Range.cpp         fragment = DocumentFragment::create(*m_ownerDocument.get());
DocumentFragment  784 Source/core/dom/Range.cpp PassRefPtr<Node> Range::processContentsBetweenOffsets(ActionType action, PassRefPtr<DocumentFragment> fragment,
DocumentFragment  929 Source/core/dom/Range.cpp PassRefPtr<DocumentFragment> Range::extractContents(ExceptionState& exceptionState)
DocumentFragment  938 Source/core/dom/Range.cpp PassRefPtr<DocumentFragment> Range::cloneContents(ExceptionState& exceptionState)
DocumentFragment 1100 Source/core/dom/Range.cpp PassRefPtr<DocumentFragment> Range::createContextualFragment(const String& markup, ExceptionState& exceptionState)
DocumentFragment 1113 Source/core/dom/Range.cpp     RefPtr<DocumentFragment> fragment = WebCore::createContextualFragment(markup, toHTMLElement(element), AllowScriptingContentAndDoNotMarkAlreadyStarted, exceptionState);
DocumentFragment 1432 Source/core/dom/Range.cpp     RefPtr<DocumentFragment> fragment = extractContents(exceptionState);
DocumentFragment   44 Source/core/dom/Range.h class DocumentFragment;
DocumentFragment   86 Source/core/dom/Range.h     PassRefPtr<DocumentFragment> extractContents(ExceptionState&);
DocumentFragment   87 Source/core/dom/Range.h     PassRefPtr<DocumentFragment> cloneContents(ExceptionState&);
DocumentFragment   94 Source/core/dom/Range.h     PassRefPtr<DocumentFragment> createContextualFragment(const String& html, ExceptionState&);
DocumentFragment  168 Source/core/dom/Range.h     PassRefPtr<DocumentFragment> processContents(ActionType, ExceptionState&);
DocumentFragment  169 Source/core/dom/Range.h     static PassRefPtr<Node> processContentsBetweenOffsets(ActionType, PassRefPtr<DocumentFragment>, Node*, unsigned startOffset, unsigned endOffset, ExceptionState&);
DocumentFragment   34 Source/core/dom/TemplateContentDocumentFragment.h class TemplateContentDocumentFragment FINAL : public DocumentFragment {
DocumentFragment   46 Source/core/dom/TemplateContentDocumentFragment.h         : DocumentFragment(&document, CreateDocumentFragment)
DocumentFragment   46 Source/core/dom/shadow/ShadowRoot.cpp struct SameSizeAsShadowRoot : public DocumentFragment, public TreeScope, public DoublyLinkedListNode<ShadowRoot> {
DocumentFragment   54 Source/core/dom/shadow/ShadowRoot.cpp     : DocumentFragment(0, CreateShadowRoot)
DocumentFragment  135 Source/core/dom/shadow/ShadowRoot.cpp     if (RefPtr<DocumentFragment> fragment = createFragmentForInnerOuterHTML(markup, host(), AllowScriptingContent, "innerHTML", exceptionState))
DocumentFragment  199 Source/core/dom/shadow/ShadowRoot.cpp     DocumentFragment::attach(context);
DocumentFragment  204 Source/core/dom/shadow/ShadowRoot.cpp     DocumentFragment::insertedInto(insertionPoint);
DocumentFragment  234 Source/core/dom/shadow/ShadowRoot.cpp     DocumentFragment::removedFrom(insertionPoint);
DocumentFragment   45 Source/core/dom/shadow/ShadowRoot.h class ShadowRoot FINAL : public DocumentFragment, public TreeScope, public DoublyLinkedListNode<ShadowRoot> {
DocumentFragment 1183 Source/core/editing/CompositeEditCommand.cpp     RefPtr<DocumentFragment> fragment = startOfParagraphToMove != endOfParagraphToMove ?
DocumentFragment  353 Source/core/editing/Editor.cpp void Editor::pasteAsFragment(PassRefPtr<DocumentFragment> pastingFragment, bool smartReplace, bool matchStyle)
DocumentFragment  391 Source/core/editing/Editor.cpp     RefPtr<DocumentFragment> fragment;
DocumentFragment  486 Source/core/editing/Editor.cpp void Editor::replaceSelectionWithFragment(PassRefPtr<DocumentFragment> fragment, bool selectReplacement, bool smartReplace, bool matchStyle)
DocumentFragment  196 Source/core/editing/Editor.h     void pasteAsFragment(PassRefPtr<DocumentFragment>, bool smartReplace, bool matchStyle);
DocumentFragment  219 Source/core/editing/Editor.h     void replaceSelectionWithFragment(PassRefPtr<DocumentFragment>, bool selectReplacement, bool smartReplace, bool matchStyle);
DocumentFragment  194 Source/core/editing/EditorCommand.cpp static bool executeInsertFragment(LocalFrame& frame, PassRefPtr<DocumentFragment> fragment)
DocumentFragment  204 Source/core/editing/EditorCommand.cpp     RefPtr<DocumentFragment> fragment = DocumentFragment::create(*frame.document());
DocumentFragment   34 Source/core/editing/MoveSelectionCommand.cpp MoveSelectionCommand::MoveSelectionCommand(PassRefPtr<DocumentFragment> fragment, const Position& position, bool smartInsert, bool smartDelete)
DocumentFragment   33 Source/core/editing/MoveSelectionCommand.h class DocumentFragment;
DocumentFragment   37 Source/core/editing/MoveSelectionCommand.h     static PassRefPtr<MoveSelectionCommand> create(PassRefPtr<DocumentFragment> fragment, const Position& position, bool smartInsert = false, bool smartDelete = false)
DocumentFragment   43 Source/core/editing/MoveSelectionCommand.h     MoveSelectionCommand(PassRefPtr<DocumentFragment>, const Position&, bool smartInsert, bool smartDelete);
DocumentFragment   48 Source/core/editing/MoveSelectionCommand.h     RefPtr<DocumentFragment> m_fragment;
DocumentFragment   69 Source/core/editing/ReplaceSelectionCommand.cpp     ReplacementFragment(Document*, DocumentFragment*, const VisibleSelection&);
DocumentFragment   91 Source/core/editing/ReplaceSelectionCommand.cpp     RefPtr<DocumentFragment> m_fragment;
DocumentFragment  134 Source/core/editing/ReplaceSelectionCommand.cpp ReplacementFragment::ReplacementFragment(Document* document, DocumentFragment* fragment, const VisibleSelection& selection)
DocumentFragment  358 Source/core/editing/ReplaceSelectionCommand.cpp ReplaceSelectionCommand::ReplaceSelectionCommand(Document& document, PassRefPtr<DocumentFragment> fragment, CommandOptions options, EditAction editAction)
DocumentFragment   34 Source/core/editing/ReplaceSelectionCommand.h class DocumentFragment;
DocumentFragment   50 Source/core/editing/ReplaceSelectionCommand.h     static PassRefPtr<ReplaceSelectionCommand> create(Document& document, PassRefPtr<DocumentFragment> fragment, CommandOptions options, EditAction action = EditActionPaste)
DocumentFragment   56 Source/core/editing/ReplaceSelectionCommand.h     ReplaceSelectionCommand(Document&, PassRefPtr<DocumentFragment>, CommandOptions, EditAction);
DocumentFragment  111 Source/core/editing/ReplaceSelectionCommand.h     RefPtr<DocumentFragment> m_documentFragment;
DocumentFragment   94 Source/core/editing/markup.cpp static void completeURLs(DocumentFragment& fragment, const String& baseURL)
DocumentFragment  638 Source/core/editing/markup.cpp PassRefPtr<DocumentFragment> createFragmentFromMarkup(Document& document, const String& markup, const String& baseURL, ParserContentPolicy parserContentPolicy)
DocumentFragment  642 Source/core/editing/markup.cpp     RefPtr<DocumentFragment> fragment = DocumentFragment::create(document);
DocumentFragment  669 Source/core/editing/markup.cpp static void trimFragment(DocumentFragment* fragment, Node* nodeBeforeContext, Node* nodeAfterContext)
DocumentFragment  691 Source/core/editing/markup.cpp PassRefPtr<DocumentFragment> createFragmentFromMarkupWithContext(Document& document, const String& markup, unsigned fragmentStart, unsigned fragmentEnd,
DocumentFragment  703 Source/core/editing/markup.cpp     RefPtr<DocumentFragment> taggedFragment = createFragmentFromMarkup(document, taggedMarkup.toString(), baseURL, parserContentPolicy);
DocumentFragment  726 Source/core/editing/markup.cpp     RefPtr<DocumentFragment> fragment = DocumentFragment::create(document);
DocumentFragment  817 Source/core/editing/markup.cpp PassRefPtr<DocumentFragment> createFragmentFromText(Range* context, const String& text)
DocumentFragment  823 Source/core/editing/markup.cpp     RefPtr<DocumentFragment> fragment = document.createDocumentFragment();
DocumentFragment  913 Source/core/editing/markup.cpp PassRefPtr<DocumentFragment> createFragmentForInnerOuterHTML(const String& markup, Element* contextElement, ParserContentPolicy parserContentPolicy, const char* method, ExceptionState& exceptionState)
DocumentFragment  917 Source/core/editing/markup.cpp     RefPtr<DocumentFragment> fragment = DocumentFragment::create(document);
DocumentFragment  932 Source/core/editing/markup.cpp PassRefPtr<DocumentFragment> createFragmentForTransformToFragment(const String& sourceString, const String& sourceMIMEType, Document& outputDoc)
DocumentFragment  934 Source/core/editing/markup.cpp     RefPtr<DocumentFragment> fragment = outputDoc.createDocumentFragment();
DocumentFragment  956 Source/core/editing/markup.cpp static inline void removeElementPreservingChildren(PassRefPtr<DocumentFragment> fragment, HTMLElement* element)
DocumentFragment  967 Source/core/editing/markup.cpp PassRefPtr<DocumentFragment> createContextualFragment(const String& markup, HTMLElement* element, ParserContentPolicy parserContentPolicy, ExceptionState& exceptionState)
DocumentFragment  976 Source/core/editing/markup.cpp     RefPtr<DocumentFragment> fragment = createFragmentForInnerOuterHTML(markup, element, parserContentPolicy, "createContextualFragment", exceptionState);
DocumentFragment  997 Source/core/editing/markup.cpp void replaceChildrenWithFragment(ContainerNode* container, PassRefPtr<DocumentFragment> fragment, ExceptionState& exceptionState)
DocumentFragment   38 Source/core/editing/markup.h class DocumentFragment;
DocumentFragment   50 Source/core/editing/markup.h PassRefPtr<DocumentFragment> createFragmentFromText(Range* context, const String& text);
DocumentFragment   51 Source/core/editing/markup.h PassRefPtr<DocumentFragment> createFragmentFromMarkup(Document&, const String& markup, const String& baseURL, ParserContentPolicy = AllowScriptingContent);
DocumentFragment   52 Source/core/editing/markup.h PassRefPtr<DocumentFragment> createFragmentFromMarkupWithContext(Document&, const String& markup, unsigned fragmentStart, unsigned fragmentEnd, const String& baseURL, ParserContentPolicy);
DocumentFragment   53 Source/core/editing/markup.h PassRefPtr<DocumentFragment> createFragmentForInnerOuterHTML(const String&, Element*, ParserContentPolicy, const char* method, ExceptionState&);
DocumentFragment   54 Source/core/editing/markup.h PassRefPtr<DocumentFragment> createFragmentForTransformToFragment(const String&, const String& sourceMIMEType, Document& outputDoc);
DocumentFragment   55 Source/core/editing/markup.h PassRefPtr<DocumentFragment> createContextualFragment(const String&, HTMLElement*, ParserContentPolicy, ExceptionState&);
DocumentFragment   61 Source/core/editing/markup.h void replaceChildrenWithFragment(ContainerNode*, PassRefPtr<DocumentFragment>, ExceptionState&);
DocumentFragment   49 Source/core/events/TextEvent.cpp PassRefPtrWillBeRawPtr<TextEvent> TextEvent::createForFragmentPaste(PassRefPtrWillBeRawPtr<AbstractView> view, PassRefPtr<DocumentFragment> data, bool shouldSmartReplace, bool shouldMatchStyle)
DocumentFragment   78 Source/core/events/TextEvent.cpp TextEvent::TextEvent(PassRefPtrWillBeRawPtr<AbstractView> view, const String& data, PassRefPtr<DocumentFragment> pastingFragment,
DocumentFragment   35 Source/core/events/TextEvent.h     class DocumentFragment;
DocumentFragment   43 Source/core/events/TextEvent.h         static PassRefPtrWillBeRawPtr<TextEvent> createForFragmentPaste(PassRefPtrWillBeRawPtr<AbstractView>, PassRefPtr<DocumentFragment> data, bool shouldSmartReplace, bool shouldMatchStyle);
DocumentFragment   61 Source/core/events/TextEvent.h         DocumentFragment* pastingFragment() const { return m_pastingFragment.get(); }
DocumentFragment   69 Source/core/events/TextEvent.h         TextEvent(PassRefPtrWillBeRawPtr<AbstractView>, const String& data, PassRefPtr<DocumentFragment>,
DocumentFragment   75 Source/core/events/TextEvent.h         RefPtr<DocumentFragment> m_pastingFragment;
DocumentFragment  327 Source/core/html/HTMLElement.cpp PassRefPtr<DocumentFragment> HTMLElement::textToFragment(const String& text, ExceptionState& exceptionState)
DocumentFragment  329 Source/core/html/HTMLElement.cpp     RefPtr<DocumentFragment> fragment = DocumentFragment::create(document());
DocumentFragment  402 Source/core/html/HTMLElement.cpp     RefPtr<DocumentFragment> fragment = textToFragment(text, exceptionState);
DocumentFragment   30 Source/core/html/HTMLElement.h class DocumentFragment;
DocumentFragment  113 Source/core/html/HTMLElement.h     PassRefPtr<DocumentFragment> textToFragment(const String&, ExceptionState&);
DocumentFragment   41 Source/core/html/HTMLLinkElement.h class DocumentFragment;
DocumentFragment   59 Source/core/html/HTMLTemplateElement.cpp DocumentFragment* HTMLTemplateElement::content() const
DocumentFragment   38 Source/core/html/HTMLTemplateElement.h class DocumentFragment;
DocumentFragment   46 Source/core/html/HTMLTemplateElement.h     DocumentFragment* content() const;
DocumentFragment  328 Source/core/html/parser/HTMLConstructionSite.cpp HTMLConstructionSite::HTMLConstructionSite(DocumentFragment* fragment, ParserContentPolicy parserContentPolicy)
DocumentFragment   96 Source/core/html/parser/HTMLConstructionSite.h     HTMLConstructionSite(DocumentFragment*, ParserContentPolicy);
DocumentFragment  122 Source/core/html/parser/HTMLDocumentParser.cpp HTMLDocumentParser::HTMLDocumentParser(DocumentFragment* fragment, Element* contextElement, ParserContentPolicy parserContentPolicy)
DocumentFragment  981 Source/core/html/parser/HTMLDocumentParser.cpp void HTMLDocumentParser::parseDocumentFragment(const String& source, DocumentFragment* fragment, Element* contextElement, ParserContentPolicy parserContentPolicy)
DocumentFragment   57 Source/core/html/parser/HTMLDocumentParser.h class DocumentFragment;
DocumentFragment   80 Source/core/html/parser/HTMLDocumentParser.h     static void parseDocumentFragment(const String&, DocumentFragment*, Element* contextElement, ParserContentPolicy = AllowScriptingContent);
DocumentFragment  114 Source/core/html/parser/HTMLDocumentParser.h     HTMLDocumentParser(DocumentFragment*, Element* contextElement, ParserContentPolicy);
DocumentFragment  121 Source/core/html/parser/HTMLDocumentParser.h     static PassRefPtr<HTMLDocumentParser> create(DocumentFragment* fragment, Element* contextElement, ParserContentPolicy parserContentPolicy)
DocumentFragment   40 Source/core/html/parser/HTMLElementStack.h class DocumentFragment;
DocumentFragment  283 Source/core/html/parser/HTMLTreeBuilder.cpp HTMLTreeBuilder::HTMLTreeBuilder(HTMLDocumentParser* parser, DocumentFragment* fragment, Element* contextElement, ParserContentPolicy parserContentPolicy, const HTMLParserOptions& options)
DocumentFragment  336 Source/core/html/parser/HTMLTreeBuilder.cpp HTMLTreeBuilder::FragmentParsingContext::FragmentParsingContext(DocumentFragment* fragment, Element* contextElement)
DocumentFragment   45 Source/core/html/parser/HTMLTreeBuilder.h class DocumentFragment;
DocumentFragment   60 Source/core/html/parser/HTMLTreeBuilder.h     static PassOwnPtr<HTMLTreeBuilder> create(HTMLDocumentParser* parser, DocumentFragment* fragment, Element* contextElement, ParserContentPolicy parserContentPolicy, const HTMLParserOptions& options)
DocumentFragment  119 Source/core/html/parser/HTMLTreeBuilder.h     HTMLTreeBuilder(HTMLDocumentParser*, DocumentFragment*, Element* contextElement, ParserContentPolicy, const HTMLParserOptions&);
DocumentFragment  199 Source/core/html/parser/HTMLTreeBuilder.h         FragmentParsingContext(DocumentFragment*, Element* contextElement);
DocumentFragment  202 Source/core/html/parser/HTMLTreeBuilder.h         DocumentFragment* fragment() const { return m_fragment; }
DocumentFragment  207 Source/core/html/parser/HTMLTreeBuilder.h         DocumentFragment* m_fragment;
DocumentFragment  436 Source/core/html/track/vtt/VTTCue.cpp PassRefPtr<DocumentFragment> VTTCue::getCueAsHTML()
DocumentFragment  439 Source/core/html/track/vtt/VTTCue.cpp     RefPtr<DocumentFragment> clonedFragment = DocumentFragment::create(document());
DocumentFragment  444 Source/core/html/track/vtt/VTTCue.cpp PassRefPtr<DocumentFragment> VTTCue::createCueRenderingTree()
DocumentFragment  446 Source/core/html/track/vtt/VTTCue.cpp     RefPtr<DocumentFragment> clonedFragment;
DocumentFragment  448 Source/core/html/track/vtt/VTTCue.cpp     clonedFragment = DocumentFragment::create(document());
DocumentFragment  527 Source/core/html/track/vtt/VTTCue.cpp static CSSValueID determineTextDirection(DocumentFragment* vttRoot)
DocumentFragment  710 Source/core/html/track/vtt/VTTCue.cpp     RefPtr<DocumentFragment> referenceTree = createCueRenderingTree();
DocumentFragment   93 Source/core/html/track/vtt/VTTCue.h     PassRefPtr<DocumentFragment> getCueAsHTML();
DocumentFragment   94 Source/core/html/track/vtt/VTTCue.h     PassRefPtr<DocumentFragment> createCueRenderingTree();
DocumentFragment  177 Source/core/html/track/vtt/VTTCue.h     RefPtr<DocumentFragment> m_vttNodeTree;
DocumentFragment  323 Source/core/html/track/vtt/VTTParser.cpp     PassRefPtr<DocumentFragment> buildFromString(const String& cueText);
DocumentFragment  334 Source/core/html/track/vtt/VTTParser.cpp PassRefPtr<DocumentFragment> VTTTreeBuilder::buildFromString(const String& cueText)
DocumentFragment  340 Source/core/html/track/vtt/VTTParser.cpp     RefPtr<DocumentFragment> fragment = DocumentFragment::create(m_document);
DocumentFragment  358 Source/core/html/track/vtt/VTTParser.cpp PassRefPtr<DocumentFragment> VTTParser::createDocumentFragmentFromCueText(Document& document, const String& cueText)
DocumentFragment  101 Source/core/html/track/vtt/VTTParser.h     static PassRefPtr<DocumentFragment> createDocumentFragmentFromCueText(Document&, const String&);
DocumentFragment  123 Source/core/inspector/DOMPatchSupport.cpp     RefPtr<DocumentFragment> fragment = DocumentFragment::create(m_document);
DocumentFragment  723 Source/core/inspector/InspectorDOMAgent.cpp     RefPtr<DocumentFragment> fragment = element->document().createDocumentFragment();
DocumentFragment  151 Source/core/page/DragController.cpp static PassRefPtr<DocumentFragment> documentFragmentFromDragData(DragData* dragData, LocalFrame* frame, RefPtrWillBeRawPtr<Range> context,
DocumentFragment  159 Source/core/page/DragController.cpp         if (PassRefPtr<DocumentFragment> fragment = dragData->asFragment(frame, context, allowPlainText, chosePlainText))
DocumentFragment  177 Source/core/page/DragController.cpp                 RefPtr<DocumentFragment> fragment = document.createDocumentFragment();
DocumentFragment  497 Source/core/page/DragController.cpp         RefPtr<DocumentFragment> fragment = documentFragmentFromDragData(dragData, innerFrame.get(), range, true, chosePlainText);
DocumentFragment  135 Source/core/page/DragData.cpp PassRefPtr<DocumentFragment> DragData::asFragment(LocalFrame* frame, PassRefPtrWillBeRawPtr<Range>, bool, bool&) const
DocumentFragment  157 Source/core/page/DragData.cpp         if (RefPtr<DocumentFragment> fragment = createFragmentFromMarkup(*frame->document(), html, baseURL, DisallowScriptingAndPluginContent))
DocumentFragment   39 Source/core/page/DragData.h class DocumentFragment;
DocumentFragment   70 Source/core/page/DragData.h     PassRefPtr<DocumentFragment> asFragment(LocalFrame*, PassRefPtrWillBeRawPtr<Range> context, bool allowPlainText, bool& chosePlainText) const;
DocumentFragment  117 Source/core/xml/XSLTProcessor.cpp PassRefPtr<DocumentFragment> XSLTProcessor::transformToFragment(Node* sourceNode, Document* outputDoc)
DocumentFragment   40 Source/core/xml/XSLTProcessor.h class DocumentFragment;
DocumentFragment   61 Source/core/xml/XSLTProcessor.h     PassRefPtr<DocumentFragment> transformToFragment(Node* source, Document* ouputDoc);
DocumentFragment  491 Source/core/xml/parser/XMLDocumentParser.cpp bool XMLDocumentParser::parseDocumentFragment(const String& chunk, DocumentFragment* fragment, Element* contextElement, ParserContentPolicy parserContentPolicy)
DocumentFragment  761 Source/core/xml/parser/XMLDocumentParser.cpp XMLDocumentParser::XMLDocumentParser(DocumentFragment* fragment, Element* parentElement, ParserContentPolicy parserContentPolicy)
DocumentFragment   45 Source/core/xml/parser/XMLDocumentParser.h class DocumentFragment;
DocumentFragment   73 Source/core/xml/parser/XMLDocumentParser.h         static PassRefPtr<XMLDocumentParser> create(DocumentFragment* fragment, Element* element, ParserContentPolicy parserContentPolicy)
DocumentFragment   88 Source/core/xml/parser/XMLDocumentParser.h         static bool parseDocumentFragment(const String&, DocumentFragment*, Element* parent = 0, ParserContentPolicy = AllowScriptingContent);
DocumentFragment  105 Source/core/xml/parser/XMLDocumentParser.h         XMLDocumentParser(DocumentFragment*, Element*, ParserContentPolicy);