Searched refs:DocumentFragment (Results 1 - 25 of 144) sorted by relevance

123456

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocumentFragment.cpp24 #include "core/dom/DocumentFragment.h"
32 DocumentFragment::DocumentFragment(Document* document, ConstructionType constructionType) function in class:blink::DocumentFragment
37 PassRefPtrWillBeRawPtr<DocumentFragment> DocumentFragment::create(Document& document)
39 return adoptRefWillBeNoop(new DocumentFragment(&document, Node::CreateDocumentFragment));
42 String DocumentFragment::nodeName() const
47 Node::NodeType DocumentFragment::nodeType() const
52 bool DocumentFragment::childTypeAllowed(NodeType type) const
66 PassRefPtrWillBeRawPtr<Node> DocumentFragment
[all...]
H A DDocumentFragment.idl23 ] interface DocumentFragment : Node {
28 DocumentFragment implements ParentNode;
H A DDocumentFragment.h32 class DocumentFragment : public ContainerNode { class in namespace:blink
35 static PassRefPtrWillBeRawPtr<DocumentFragment> create(Document&);
44 DocumentFragment(Document*, ConstructionType = CreateContainer);
55 DEFINE_NODE_TYPE_CASTS(DocumentFragment, isDocumentFragment());
H A DTemplateContentDocumentFragment.h30 #include "core/dom/DocumentFragment.h"
34 class TemplateContentDocumentFragment FINAL : public DocumentFragment {
49 DocumentFragment::trace(visitor);
54 : DocumentFragment(&document, CreateDocumentFragment)
H A DRange.idl54 [RaisesException, CustomElementCallbacks] DocumentFragment extractContents();
55 [RaisesException, CustomElementCallbacks] DocumentFragment cloneContents();
76 [RaisesException, CustomElementCallbacks] DocumentFragment createContextualFragment(DOMString html);
H A DRange.h43 class DocumentFragment;
83 PassRefPtrWillBeRawPtr<DocumentFragment> extractContents(ExceptionState&);
84 PassRefPtrWillBeRawPtr<DocumentFragment> cloneContents(ExceptionState&);
91 PassRefPtrWillBeRawPtr<DocumentFragment> createContextualFragment(const String& html, ExceptionState&);
165 PassRefPtrWillBeRawPtr<DocumentFragment> processContents(ActionType, ExceptionState&);
166 static PassRefPtrWillBeRawPtr<Node> processContentsBetweenOffsets(ActionType, PassRefPtrWillBeRawPtr<DocumentFragment>, Node*, unsigned startOffset, unsigned endOffset, ExceptionState&);
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLTemplateElement.idl32 readonly attribute DocumentFragment content;
H A DHTMLTemplateElement.h38 class DocumentFragment;
48 DocumentFragment* content() const;
H A DHTMLTemplateElement.cpp36 #include "core/dom/DocumentFragment.h"
58 DocumentFragment* HTMLTemplateElement::content() const
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DMoveSelectionCommand.h33 class DocumentFragment;
37 static PassRefPtrWillBeRawPtr<MoveSelectionCommand> create(PassRefPtrWillBeRawPtr<DocumentFragment> fragment, const Position& position, bool smartInsert = false, bool smartDelete = false)
45 MoveSelectionCommand(PassRefPtrWillBeRawPtr<DocumentFragment>, const Position&, bool smartInsert, bool smartDelete);
50 RefPtrWillBeMember<DocumentFragment> m_fragment;
H A Dmarkup.h39 class DocumentFragment;
50 PassRefPtrWillBeRawPtr<DocumentFragment> createFragmentFromText(Range* context, const String& text);
51 PassRefPtrWillBeRawPtr<DocumentFragment> createFragmentFromMarkup(Document&, const String& markup, const String& baseURL, ParserContentPolicy = AllowScriptingContent);
52 PassRefPtrWillBeRawPtr<DocumentFragment> createFragmentFromMarkupWithContext(Document&, const String& markup, unsigned fragmentStart, unsigned fragmentEnd, const String& baseURL, ParserContentPolicy);
53 PassRefPtrWillBeRawPtr<DocumentFragment> createFragmentForInnerOuterHTML(const String&, Element*, ParserContentPolicy, const char* method, ExceptionState&);
54 PassRefPtrWillBeRawPtr<DocumentFragment> createFragmentForTransformToFragment(const String&, const String& sourceMIMEType, Document& outputDoc);
55 PassRefPtrWillBeRawPtr<DocumentFragment> createContextualFragment(const String&, Element*, ParserContentPolicy, ExceptionState&);
61 void replaceChildrenWithFragment(ContainerNode*, PassRefPtrWillBeRawPtr<DocumentFragment>, ExceptionState&);
H A DReplaceSelectionCommand.h34 class DocumentFragment;
50 static PassRefPtrWillBeRawPtr<ReplaceSelectionCommand> create(Document& document, PassRefPtrWillBeRawPtr<DocumentFragment> fragment, CommandOptions options, EditAction action = EditActionPaste)
58 ReplaceSelectionCommand(Document&, PassRefPtrWillBeRawPtr<DocumentFragment>, CommandOptions, EditAction);
114 RefPtrWillBeMember<DocumentFragment> m_documentFragment;
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DTextEvent.h35 class DocumentFragment;
43 static PassRefPtrWillBeRawPtr<TextEvent> createForFragmentPaste(PassRefPtrWillBeRawPtr<AbstractView>, PassRefPtrWillBeRawPtr<DocumentFragment> data, bool shouldSmartReplace, bool shouldMatchStyle);
61 DocumentFragment* pastingFragment() const { return m_pastingFragment.get(); }
69 TextEvent(PassRefPtrWillBeRawPtr<AbstractView>, const String& data, PassRefPtrWillBeRawPtr<DocumentFragment>, bool shouldSmartReplace, bool shouldMatchStyle);
74 RefPtrWillBeMember<DocumentFragment> m_pastingFragment;
H A DTextEvent.cpp30 #include "core/dom/DocumentFragment.h"
49 PassRefPtrWillBeRawPtr<TextEvent> TextEvent::createForFragmentPaste(PassRefPtrWillBeRawPtr<AbstractView> view, PassRefPtrWillBeRawPtr<DocumentFragment> data, bool shouldSmartReplace, bool shouldMatchStyle)
76 TextEvent::TextEvent(PassRefPtrWillBeRawPtr<AbstractView> view, const String& data, PassRefPtrWillBeRawPtr<DocumentFragment> pastingFragment,
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLTreeBuilder.h46 class DocumentFragment;
61 static PassOwnPtrWillBeRawPtr<HTMLTreeBuilder> create(HTMLDocumentParser* parser, DocumentFragment* fragment, Element* contextElement, ParserContentPolicy parserContentPolicy, const HTMLParserOptions& options)
122 HTMLTreeBuilder(HTMLDocumentParser*, DocumentFragment*, Element* contextElement, ParserContentPolicy, const HTMLParserOptions&);
203 FragmentParsingContext(DocumentFragment*, Element* contextElement);
206 DocumentFragment* fragment() const { return m_fragment; }
213 RawPtrWillBeMember<DocumentFragment> m_fragment;
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
H A DVTTCue.idl46 DocumentFragment getCueAsHTML();
H A DVTTCue.h96 PassRefPtrWillBeRawPtr<DocumentFragment> getCueAsHTML();
97 PassRefPtrWillBeRawPtr<DocumentFragment> createCueRenderingTree();
182 RefPtrWillBeMember<DocumentFragment> m_vttNodeTree;
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DDragData.h39 class DocumentFragment;
69 PassRefPtrWillBeRawPtr<DocumentFragment> asFragment(LocalFrame*, PassRefPtrWillBeRawPtr<Range> context, bool allowPlainText, bool& chosePlainText) const;
H A DDragData.cpp31 #include "core/dom/DocumentFragment.h"
133 PassRefPtrWillBeRawPtr<DocumentFragment> DragData::asFragment(LocalFrame* frame, PassRefPtrWillBeRawPtr<Range>, bool, bool&) const
155 if (RefPtrWillBeRawPtr<DocumentFragment> fragment = createFragmentFromMarkup(*frame->document(), html, baseURL, DisallowScriptingAndPluginContent))
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXSLTProcessor.idl42 [CustomElementCallbacks] DocumentFragment transformToFragment([Default=Undefined] optional Node source, [Default=Undefined] optional Document docVal);
H A DXSLTProcessor.h40 class DocumentFragment;
62 PassRefPtrWillBeRawPtr<DocumentFragment> transformToFragment(Node* source, Document* ouputDoc);
/external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
H A DShadowRoot.cpp46 struct SameSizeAsShadowRoot : public DocumentFragment, public TreeScope, public DoublyLinkedListNode<ShadowRoot> {
54 : DocumentFragment(0, CreateShadowRoot)
128 if (RefPtrWillBeRawPtr<DocumentFragment> fragment = createFragmentForInnerOuterHTML(markup, host(), AllowScriptingContent, "innerHTML", exceptionState))
152 DocumentFragment::attach(context);
157 DocumentFragment::insertedInto(insertionPoint);
187 DocumentFragment::removedFrom(insertionPoint);
325 DocumentFragment::trace(visitor);
H A DShadowRoot.idl27 interface ShadowRoot : DocumentFragment {
/external/chromium_org/third_party/WebKit/Source/core/xml/parser/
H A DXMLDocumentParser.h46 class DocumentFragment;
75 static PassRefPtrWillBeRawPtr<XMLDocumentParser> create(DocumentFragment* fragment, Element* element, ParserContentPolicy parserContentPolicy)
90 static bool parseDocumentFragment(const String&, DocumentFragment*, Element* parent = 0, ParserContentPolicy = AllowScriptingContent);
107 XMLDocumentParser(DocumentFragment*, Element*, ParserContentPolicy);
/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXObject.java37 import org.w3c.dom.DocumentFragment;
347 public DocumentFragment rtree(XPathContext support)
349 DocumentFragment docFrag = null;
359 docFrag = (DocumentFragment)frag.getNode(frag.getDocument());
364 docFrag = (DocumentFragment)frag.getNode(frag.getDocument());
376 public DocumentFragment rtree()

Completed in 274 milliseconds

123456