HomeSort by relevance Sort by last modified time
    Searched refs:DocumentFragment (Results 1 - 25 of 175) sorted by null

1 2 3 4 5 6 7

  /libcore/luni/src/main/java/org/w3c/dom/
DocumentFragment.java 16 * <code>DocumentFragment</code> is a "lightweight" or "minimal"
26 * <code>DocumentFragment</code> is such an object.
28 * of another <code>Node</code> -- may take <code>DocumentFragment</code>
30 * <code>DocumentFragment</code> being moved to the child list of this node.
31 * <p>The children of a <code>DocumentFragment</code> node are zero or more
33 * the document. <code>DocumentFragment</code> nodes do not need to be
36 * nodes). For example, a <code>DocumentFragment</code> might have only one
40 * <p>When a <code>DocumentFragment</code> is inserted into a
42 * take children) the children of the <code>DocumentFragment</code> and not
43 * the <code>DocumentFragment</code> itself are inserted into th
    [all...]
  /external/webkit/Source/WebCore/dom/
DocumentFragment.cpp 24 #include "DocumentFragment.h"
34 DocumentFragment::DocumentFragment(Document* document)
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::cloneNode(bool deep
    [all...]
DocumentFragment.h 32 class DocumentFragment : public ContainerNode {
34 static PassRefPtr<DocumentFragment> create(Document*);
40 DocumentFragment(Document*);
DocumentFragment.idl 22 interface DocumentFragment : Node {
ShadowRoot.cpp 33 : DocumentFragment(document)
ShadowRoot.h 30 #include "DocumentFragment.h"
36 class ShadowRoot : public DocumentFragment {
TextEvent.h 30 #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;
  /external/webkit/Source/WebCore/editing/
MoveSelectionCommand.h 33 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;
markup.h 37 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*>&);
ReplaceSelectionCommand.h 33 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;
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DocumentFragmentImpl.java 19 import org.w3c.dom.DocumentFragment;
33 DocumentFragment {
  /external/webkit/Source/WebCore/platform/win/
ClipboardUtilitiesWin.h 62 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);
DragDataWin.cpp 32 #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/html/parser/
HTMLDocumentParser.h 44 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);
HTMLTreeBuilder.h 48 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;
  /external/webkit/Source/WebCore/platform/brew/
DragDataBrew.cpp 31 #include "DocumentFragment.h"
75 PassRefPtr<DocumentFragment> DragData::asFragment(Document*) const
  /libcore/luni/src/test/java/tests/org/w3c/dom/
HCNodeDocumentFragmentNormalize.java 5 import org.w3c.dom.DocumentFragment;
51 DocumentFragment docFragment;
71 DocumentFragment docFragment;
  /external/webkit/Source/WebCore/platform/
Pasteboard.h 76 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/
DragDataAndroid.cpp 31 #include "DocumentFragment.h"
76 PassRefPtr<DocumentFragment> DragData::asFragment(Frame*, PassRefPtr<Range>, bool, bool&) const
  /external/webkit/Source/WebCore/platform/efl/
DragDataEfl.cpp 25 #include "DocumentFragment.h"
78 PassRefPtr<DocumentFragment> DragData::asFragment(Frame*, PassRefPtr<Range>, bool, bool&) const
  /external/webkit/Source/WebCore/platform/wince/
DragDataWinCE.cpp 24 #include "DocumentFragment.h"
79 PassRefPtr<DocumentFragment> DragData::asFragment(Frame* frame, PassRefPtr<Range>, bool, bool&) const
  /external/webkit/Source/WebCore/platform/wx/
DragDataWx.cpp 30 #include "DocumentFragment.h"
85 PassRefPtr<DocumentFragment> DragData::asFragment(Frame*, PassRefPtr<Range>, bool, bool&) const
PasteboardWx.cpp 29 #include "DocumentFragment.h"
81 PassRefPtr<DocumentFragment> Pasteboard::documentFragment(Frame* frame, PassRefPtr<Range> context,
84 RefPtr<DocumentFragment> fragment = 0;
  /external/webkit/Source/WebCore/xml/
XSLTProcessor.h 42 class DocumentFragment;
55 PassRefPtr<DocumentFragment> transformToFragment(Node* source, Document* ouputDoc);
XSLTProcessor.idl 43 [Custom] DocumentFragment transformToFragment(in Node source, in Document docVal);

Completed in 257 milliseconds

1 2 3 4 5 6 7