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

1234

/external/webkit/Source/WebCore/dom/
H A DDocumentFragment.cpp24 #include "DocumentFragment.h"
34 DocumentFragment::DocumentFragment(Document* document) function in class:WebCore::DocumentFragment
40 PassRefPtr<DocumentFragment> DocumentFragment::create(Document* document)
42 return adoptRef(new DocumentFragment(document));
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.h32 class DocumentFragment : public ContainerNode { class in namespace:WebCore
34 static PassRefPtr<DocumentFragment> create(Document*);
40 DocumentFragment(Document*);
H A DDocumentFragment.idl22 interface DocumentFragment : Node {
H A DShadowRoot.cpp33 : DocumentFragment(document)
H A DTextEvent.h30 #include "DocumentFragment.h"
42 static PassRefPtr<TextEvent> createForFragmentPaste(PassRefPtr<AbstractView> view, PassRefPtr<DocumentFragment> data, bool shouldSmartReplace, bool shouldMatchStyle);
61 DocumentFragment* pastingFragment() const { return m_pastingFragment.get(); }
67 TextEvent(PassRefPtr<AbstractView>, const String& data, PassRefPtr<DocumentFragment>,
73 RefPtr<DocumentFragment> m_pastingFragment;
H A DShadowRoot.h30 #include "DocumentFragment.h"
36 class ShadowRoot : public DocumentFragment {
H A DXMLDocumentParser.h42 class DocumentFragment;
51 XMLTokenizer(DocumentFragment *, Element *);
131 bool parseXMLDocumentFragment(const String&, DocumentFragment*, Element* parent = 0);
158 class DocumentFragment;
189 static PassRefPtr<XMLDocumentParser> create(DocumentFragment* fragment, Element* element, FragmentScriptingPermission permission)
211 static bool parseDocumentFragment(const String&, DocumentFragment*, Element* parent = 0, FragmentScriptingPermission = FragmentScriptingAllowed);
223 XMLDocumentParser(DocumentFragment*, Element*, FragmentScriptingPermission);
/external/webkit/Source/WebCore/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.h37 class DocumentFragment;
45 PassRefPtr<DocumentFragment> createFragmentFromText(Range* context, const String& text);
46 PassRefPtr<DocumentFragment> createFragmentFromMarkup(Document*, const String& markup, const String& baseURL, FragmentScriptingPermission = FragmentScriptingAllowed);
47 PassRefPtr<DocumentFragment> createFragmentFromNodes(Document*, const Vector<Node*>&);
H A DReplaceSelectionCommand.h33 class DocumentFragment;
49 static PassRefPtr<ReplaceSelectionCommand> create(Document* document, PassRefPtr<DocumentFragment> fragment, CommandOptions options, EditAction action = EditActionPaste)
55 ReplaceSelectionCommand(Document*, PassRefPtr<DocumentFragment>, CommandOptions, EditAction);
97 RefPtr<DocumentFragment> m_documentFragment;
/external/webkit/Source/WebCore/platform/win/
H A DClipboardUtilitiesWin.h62 PassRefPtr<DocumentFragment> fragmentFromFilenames(Document*, const IDataObject*);
63 PassRefPtr<DocumentFragment> fragmentFromFilenames(Document*, const DragDataMap*);
64 PassRefPtr<DocumentFragment> fragmentFromHTML(Document*, IDataObject*);
65 PassRefPtr<DocumentFragment> fragmentFromHTML(Document*, const DragDataMap*);
66 PassRefPtr<DocumentFragment> fragmentFromCFHTML(Document*, const String& cfhtml);
H A DDragDataWin.cpp32 #include "DocumentFragment.h"
164 PassRefPtr<DocumentFragment> DragData::asFragment(Frame* frame, PassRefPtr<Range>, bool, bool&) const
178 if (PassRefPtr<DocumentFragment> fragment = fragmentFromFilenames(frame->document(), m_platformDragData))
183 if (PassRefPtr<DocumentFragment> fragment = fragmentFromHTML(frame->document(), m_platformDragData))
188 if (PassRefPtr<DocumentFragment> fragment = fragmentFromFilenames(frame->document(), &m_dragDataMap))
193 if (PassRefPtr<DocumentFragment> fragment = fragmentFromHTML(frame->document(), &m_dragDataMap))
/external/webkit/Source/WebCore/platform/brew/
H A DDragDataBrew.cpp31 #include "DocumentFragment.h"
75 PassRefPtr<DocumentFragment> DragData::asFragment(Document*) const
H A DPasteboardBrew.cpp31 #include "DocumentFragment.h"
87 PassRefPtr<DocumentFragment> Pasteboard::documentFragment(Frame* frame, PassRefPtr<Range> context, bool allowPlainText, bool& chosePlainText)
/external/webkit/Source/WebCore/html/parser/
H A DHTMLTreeBuilder.h48 class DocumentFragment;
62 static PassOwnPtr<HTMLTreeBuilder> create(HTMLDocumentParser* parser, DocumentFragment* fragment, Element* contextElement, FragmentScriptingPermission scriptingPermission, bool usePreHTML5ParserQuirks)
120 HTMLTreeBuilder(HTMLDocumentParser* parser, DocumentFragment*, Element* contextElement, FragmentScriptingPermission, bool usePreHTML5ParserQuirks);
212 FragmentParsingContext(DocumentFragment*, Element* contextElement, FragmentScriptingPermission);
215 DocumentFragment* fragment() const { return m_fragment; }
220 DocumentFragment* m_fragment;
H A DHTMLDocumentParser.h44 class DocumentFragment;
63 static PassRefPtr<HTMLDocumentParser> create(DocumentFragment* fragment, Element* contextElement, FragmentScriptingPermission permission)
73 static void parseDocumentFragment(const String&, DocumentFragment*, Element* contextElement, FragmentScriptingPermission = FragmentScriptingAllowed);
92 HTMLDocumentParser(DocumentFragment*, Element* contextElement, FragmentScriptingPermission);
/external/webkit/Source/WebCore/platform/
H A DPasteboard.h76 class DocumentFragment;
107 PassRefPtr<DocumentFragment> documentFragment(Frame*, PassRefPtr<Range>, bool allowPlainText, bool& chosePlainText);
126 PassRefPtr<DocumentFragment> documentFragmentWithImageResource(Frame* frame, PassRefPtr<ArchiveResource> resource);
127 PassRefPtr<DocumentFragment> documentFragmentWithRtf(Frame* frame, NSString* pboardType);
/external/webkit/Source/WebCore/platform/android/
H A DDragDataAndroid.cpp31 #include "DocumentFragment.h"
76 PassRefPtr<DocumentFragment> DragData::asFragment(Frame*, PassRefPtr<Range>, bool, bool&) const
/external/webkit/Source/WebCore/platform/efl/
H A DDragDataEfl.cpp25 #include "DocumentFragment.h"
78 PassRefPtr<DocumentFragment> DragData::asFragment(Frame*, PassRefPtr<Range>, bool, bool&) const
H A DPasteboardEfl.cpp26 #include "DocumentFragment.h"
80 PassRefPtr<DocumentFragment> Pasteboard::documentFragment(Frame* frame, PassRefPtr<Range> context,
/external/webkit/Source/WebCore/platform/wince/
H A DDragDataWinCE.cpp24 #include "DocumentFragment.h"
79 PassRefPtr<DocumentFragment> DragData::asFragment(Frame* frame, PassRefPtr<Range>, bool, bool&) const
/external/webkit/Source/WebCore/platform/wx/
H A DDragDataWx.cpp30 #include "DocumentFragment.h"
85 PassRefPtr<DocumentFragment> DragData::asFragment(Frame*, PassRefPtr<Range>, bool, bool&) const
H A DPasteboardWx.cpp29 #include "DocumentFragment.h"
81 PassRefPtr<DocumentFragment> Pasteboard::documentFragment(Frame* frame, PassRefPtr<Range> context,
84 RefPtr<DocumentFragment> fragment = 0;
/external/webkit/Source/WebCore/xml/
H A DXSLTProcessor.idl43 [Custom] DocumentFragment transformToFragment(in Node source, in Document docVal);
/external/webkit/Source/WebCore/html/
H A DHTMLElement.h30 class DocumentFragment;
48 PassRefPtr<DocumentFragment> deprecatedCreateContextualFragment(const String&, FragmentScriptingPermission = FragmentScriptingAllowed);
104 PassRefPtr<DocumentFragment> textToFragment(const String&, ExceptionCode&);

Completed in 230 milliseconds

1234