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

1234

/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLTemplateElement.idl34 [Custom] readonly attribute DocumentFragment content;
H A DHTMLTemplateElement.h36 #include "DocumentFragment.h"
46 DocumentFragment* content() const;
54 mutable RefPtr<DocumentFragment> m_content;
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DDocumentFragment.cpp24 #include "DocumentFragment.h"
34 DocumentFragment::DocumentFragment(Document* document, ConstructionType constructionType) function in class:WebCore::DocumentFragment
39 PassRefPtr<DocumentFragment> DocumentFragment::create(Document* document)
42 return adoptRef(new DocumentFragment(document, Node::CreateDocumentFragment));
45 String DocumentFragment::nodeName() const
50 Node::NodeType DocumentFragment::nodeType() const
55 bool DocumentFragment::childTypeAllowed(NodeType type) const
70 PassRefPtr<Node> DocumentFragment
[all...]
H A DDocumentFragment.idl20 interface DocumentFragment : Node {
H A DDocumentFragment.h32 class DocumentFragment : public ContainerNode { class in namespace:WebCore
34 static PassRefPtr<DocumentFragment> create(Document*);
43 DocumentFragment(Document*, ConstructionType = CreateContainer);
H A DTemplateContentDocumentFragment.h32 #include "DocumentFragment.h"
36 class TemplateContentDocumentFragment FINAL : public DocumentFragment {
47 : DocumentFragment(document, CreateDocumentFragment)
H A DTextEvent.h36 class DocumentFragment;
44 static PassRefPtr<TextEvent> createForFragmentPaste(PassRefPtr<AbstractView> view, PassRefPtr<DocumentFragment> data, bool shouldSmartReplace, bool shouldMatchStyle);
65 DocumentFragment* pastingFragment() const { return m_pastingFragment.get(); }
72 TextEvent(PassRefPtr<AbstractView>, const String& data, PassRefPtr<DocumentFragment>,
79 RefPtr<DocumentFragment> m_pastingFragment;
H A DShadowRoot.cpp41 struct SameSizeAsShadowRoot : public DocumentFragment, public TreeScope {
54 : DocumentFragment(0, CreateShadowRoot)
106 if (RefPtr<DocumentFragment> fragment = createFragmentForInnerOuterHTML(markup, host(), AllowScriptingContent, ec))
172 DocumentFragment::attach(context);
H A DShadowRoot.idl31 ] interface ShadowRoot : DocumentFragment {
H A DRange.h43 class DocumentFragment;
84 PassRefPtr<DocumentFragment> extractContents(ExceptionCode&);
85 PassRefPtr<DocumentFragment> cloneContents(ExceptionCode&);
92 PassRefPtr<DocumentFragment> createContextualFragment(const String& html, ExceptionCode&);
165 PassRefPtr<DocumentFragment> processContents(ActionType, ExceptionCode&);
166 static PassRefPtr<Node> processContentsBetweenOffsets(ActionType, PassRefPtr<DocumentFragment>, Node*, unsigned startOffset, unsigned endOffset, ExceptionCode&);
H A DRange.idl55 [RaisesException] DocumentFragment extractContents();
56 [RaisesException] DocumentFragment cloneContents();
73 [RaisesException] DocumentFragment createContextualFragment([Default=Undefined] optional DOMString html);
H A DTextEvent.cpp30 #include "DocumentFragment.h"
50 PassRefPtr<TextEvent> TextEvent::createForFragmentPaste(PassRefPtr<AbstractView> view, PassRefPtr<DocumentFragment> data, bool shouldSmartReplace, bool shouldMatchStyle)
82 TextEvent::TextEvent(PassRefPtr<AbstractView> view, const String& data, PassRefPtr<DocumentFragment> pastingFragment,
/macosx-10.9.5/WebCore-7537.78.1/editing/
H A DMoveSelectionCommand.h33 class DocumentFragment;
37 static PassRefPtr<MoveSelectionCommand> create(PassRefPtr<DocumentFragment> fragment, const Position& position, bool smartInsert = false, bool smartDelete = false)
43 MoveSelectionCommand(PassRefPtr<DocumentFragment>, const Position&, bool smartInsert, bool smartDelete);
48 RefPtr<DocumentFragment> m_fragment;
H A Dmarkup.h38 class DocumentFragment;
51 PassRefPtr<DocumentFragment> createFragmentFromText(Range* context, const String& text);
52 PassRefPtr<DocumentFragment> createFragmentFromMarkup(Document*, const String& markup, const String& baseURL, ParserContentPolicy = AllowScriptingContent);
53 PassRefPtr<DocumentFragment> createFragmentFromMarkupWithContext(Document*, const String& markup, unsigned fragmentStart, unsigned fragmentEnd, const String& baseURL, ParserContentPolicy);
54 PassRefPtr<DocumentFragment> createFragmentFromNodes(Document*, const Vector<Node*>&);
55 PassRefPtr<DocumentFragment> createFragmentForInnerOuterHTML(const String&, Element*, ParserContentPolicy, ExceptionCode&);
56 PassRefPtr<DocumentFragment> createFragmentForTransformToFragment(const String&, const String& sourceMIMEType, Document* outputDoc);
57 PassRefPtr<DocumentFragment> createContextualFragment(const String&, HTMLElement*, ParserContentPolicy, ExceptionCode&);
63 void replaceChildrenWithFragment(ContainerNode*, PassRefPtr<DocumentFragment>, ExceptionCode&);
H A DReplaceSelectionCommand.h34 class DocumentFragment;
50 static PassRefPtr<ReplaceSelectionCommand> create(Document* document, PassRefPtr<DocumentFragment> fragment, CommandOptions options, EditAction action = EditActionPaste)
56 ReplaceSelectionCommand(Document*, PassRefPtr<DocumentFragment>, CommandOptions, EditAction);
112 RefPtr<DocumentFragment> m_documentFragment;
/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DJSHTMLTemplateElementCustom.cpp51 DocumentFragment* content = imp->content();
57 wrapper = CREATE_DOM_WRAPPER(exec, globalObject(), DocumentFragment, content);
/macosx-10.9.5/WebCore-7537.78.1/platform/win/
H A DClipboardUtilitiesWin.h64 PassRefPtr<DocumentFragment> fragmentFromFilenames(Document*, const IDataObject*);
65 PassRefPtr<DocumentFragment> fragmentFromFilenames(Document*, const DragDataMap*);
66 PassRefPtr<DocumentFragment> fragmentFromHTML(Document*, IDataObject*);
67 PassRefPtr<DocumentFragment> fragmentFromHTML(Document*, const DragDataMap*);
68 PassRefPtr<DocumentFragment> fragmentFromCFHTML(Document*, const String& cfhtml);
H A DDragDataWin.cpp33 #include "DocumentFragment.h"
209 PassRefPtr<DocumentFragment> DragData::asFragment(Frame* frame, PassRefPtr<Range>, bool, bool&) const
223 if (PassRefPtr<DocumentFragment> fragment = fragmentFromFilenames(frame->document(), m_platformDragData))
228 if (PassRefPtr<DocumentFragment> fragment = fragmentFromHTML(frame->document(), m_platformDragData))
233 if (PassRefPtr<DocumentFragment> fragment = fragmentFromFilenames(frame->document(), &m_dragDataMap))
238 if (PassRefPtr<DocumentFragment> fragment = fragmentFromHTML(frame->document(), &m_dragDataMap))
/macosx-10.9.5/WebCore-7537.78.1/platform/efl/
H A DDragDataEfl.cpp25 #include "DocumentFragment.h"
83 PassRefPtr<DocumentFragment> DragData::asFragment(Frame*, PassRefPtr<Range>, bool, bool&) const
/macosx-10.9.5/WebCore-7537.78.1/xml/
H A DXSLTProcessor.idl40 DocumentFragment transformToFragment([Default=Undefined] optional Node source, [Default=Undefined] optional Document docVal);
H A DXSLTProcessor.h42 class DocumentFragment;
59 PassRefPtr<DocumentFragment> transformToFragment(Node* source, Document* ouputDoc);
/macosx-10.9.5/WebCore-7537.78.1/html/parser/
H A DHTMLDocumentParser.h56 class DocumentFragment;
79 static void parseDocumentFragment(const String&, DocumentFragment*, Element* contextElement, ParserContentPolicy = AllowScriptingContent);
108 HTMLDocumentParser(DocumentFragment*, Element* contextElement, ParserContentPolicy);
115 static PassRefPtr<HTMLDocumentParser> create(DocumentFragment* fragment, Element* contextElement, ParserContentPolicy parserContentPolicy)
H A DHTMLTreeBuilder.h50 class DocumentFragment;
65 static PassOwnPtr<HTMLTreeBuilder> create(HTMLDocumentParser* parser, DocumentFragment* fragment, Element* contextElement, ParserContentPolicy parserContentPolicy, const HTMLParserOptions& options)
125 HTMLTreeBuilder(HTMLDocumentParser*, DocumentFragment*, Element* contextElement, ParserContentPolicy, const HTMLParserOptions&);
207 FragmentParsingContext(DocumentFragment*, Element* contextElement);
210 DocumentFragment* fragment() const { return m_fragment; }
214 DocumentFragment* m_fragment;
/macosx-10.9.5/WebCore-7537.78.1/platform/blackberry/
H A DDragDataBlackBerry.cpp23 #include "DocumentFragment.h"
89 PassRefPtr<DocumentFragment> DragData::asFragment(Frame*, PassRefPtr<Range>, bool, bool&) const
/macosx-10.9.5/WebCore-7537.78.1/html/track/
H A DTextTrackCue.idl51 DocumentFragment getCueAsHTML();

Completed in 101 milliseconds

1234