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

1 2 3 4 5 6

  /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/chromium_org/third_party/WebKit/Source/core/html/
HTMLTemplateElement.idl 32 [KeepAttributeAliveForGC] readonly attribute DocumentFragment content;
HTMLTemplateElement.h 38 class DocumentFragment;
46 DocumentFragment* content() const;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentFragment.idl 23 ] interface DocumentFragment : Node {
29 DocumentFragment implements ParentNode;
DocumentFragment.cpp 24 #include "core/dom/DocumentFragment.h"
32 DocumentFragment::DocumentFragment(Document* document, ConstructionType constructionType)
38 PassRefPtr<DocumentFragment> DocumentFragment::create(Document* document)
41 return adoptRef(new DocumentFragment(document, Node::CreateDocumentFragment));
44 String DocumentFragment::nodeName() const
49 Node::NodeType DocumentFragment::nodeType() const
54 bool DocumentFragment::childTypeAllowed(NodeType type) const
68 PassRefPtr<Node> DocumentFragment::cloneNode(bool deep
    [all...]
DocumentFragment.h 34 class DocumentFragment : public ContainerNode {
36 static PassRefPtr<DocumentFragment> create(Document*);
45 DocumentFragment(Document*, ConstructionType = CreateContainer);
TemplateContentDocumentFragment.h 30 #include "core/dom/DocumentFragment.h"
34 class TemplateContentDocumentFragment FINAL : public DocumentFragment {
46 : DocumentFragment(document, CreateDocumentFragment)
TextEvent.h 35 class DocumentFragment;
43 static PassRefPtr<TextEvent> createForFragmentPaste(PassRefPtr<AbstractView> view, PassRefPtr<DocumentFragment> data, bool shouldSmartReplace, bool shouldMatchStyle);
62 DocumentFragment* pastingFragment() const { return m_pastingFragment.get(); }
68 TextEvent(PassRefPtr<AbstractView>, const String& data, PassRefPtr<DocumentFragment>,
74 RefPtr<DocumentFragment> m_pastingFragment;
  /external/chromium_org/third_party/WebKit/Source/core/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 38 class DocumentFragment;
50 PassRefPtr<DocumentFragment> createFragmentFromText(Range* context, const String& text);
51 PassRefPtr<DocumentFragment> createFragmentFromMarkup(Document*, const String& markup, const String& baseURL, ParserContentPolicy = AllowScriptingContent);
52 PassRefPtr<DocumentFragment> createFragmentFromMarkupWithContext(Document*, const String& markup, unsigned fragmentStart, unsigned fragmentEnd, const String& baseURL, ParserContentPolicy);
53 PassRefPtr<DocumentFragment> createFragmentFromNodes(Document*, const Vector<Node*>&);
54 PassRefPtr<DocumentFragment> createFragmentForInnerOuterHTML(const String&, Element*, ParserContentPolicy, ExceptionState&);
55 PassRefPtr<DocumentFragment> createFragmentForTransformToFragment(const String&, const String& sourceMIMEType, Document* outputDoc);
56 PassRefPtr<DocumentFragment> createContextualFragment(const String&, HTMLElement*, ParserContentPolicy, ExceptionState&);
62 void replaceChildrenWithFragment(ContainerNode*, PassRefPtr<DocumentFragment>, ExceptionState&);
ReplaceSelectionCommand.h 34 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;
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DocumentFragmentImpl.java 19 import org.w3c.dom.DocumentFragment;
33 DocumentFragment {
  /external/chromium_org/third_party/WebKit/Source/core/platform/
Pasteboard.h 43 class DocumentFragment;
69 PassRefPtr<DocumentFragment> documentFragment(Frame*, PassRefPtr<Range>, bool allowPlainText, bool& chosePlainText);
DragData.h 39 class DocumentFragment;
70 PassRefPtr<DocumentFragment> asFragment(Frame*, PassRefPtr<Range> context,
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLTreeBuilder.h 45 class DocumentFragment;
60 static PassOwnPtr<HTMLTreeBuilder> create(HTMLDocumentParser* parser, DocumentFragment* fragment, Element* contextElement, ParserContentPolicy parserContentPolicy, const HTMLParserOptions& options)
116 HTMLTreeBuilder(HTMLDocumentParser*, DocumentFragment*, Element* contextElement, ParserContentPolicy, const HTMLParserOptions&);
196 FragmentParsingContext(DocumentFragment*, Element* contextElement);
199 DocumentFragment* fragment() const { return m_fragment; }
203 DocumentFragment* m_fragment;
HTMLDocumentParser.h 55 class DocumentFragment;
78 static void parseDocumentFragment(const String&, DocumentFragment*, Element* contextElement, ParserContentPolicy = AllowScriptingContent);
105 HTMLDocumentParser(DocumentFragment*, Element* contextElement, ParserContentPolicy);
112 static PassRefPtr<HTMLDocumentParser> create(DocumentFragment* fragment, Element* contextElement, ParserContentPolicy parserContentPolicy)
  /libcore/luni/src/test/java/tests/org/w3c/dom/
HCNodeDocumentFragmentNormalize.java 5 import org.w3c.dom.DocumentFragment;
51 DocumentFragment docFragment;
71 DocumentFragment docFragment;
  /external/chromium_org/third_party/WebKit/Source/core/html/track/
TextTrackCue.idl 46 DocumentFragment getCueAsHTML();
TextTrackCue.h 42 class DocumentFragment;
129 PassRefPtr<DocumentFragment> getCueAsHTML();
130 PassRefPtr<DocumentFragment> createCueRenderingTree();
252 RefPtr<DocumentFragment> m_webVTTNodeTree;
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XSLTProcessor.h 39 class DocumentFragment;
56 PassRefPtr<DocumentFragment> transformToFragment(Node* source, Document* ouputDoc);
XSLTProcessor.idl 39 [CustomElementCallbacks=Enable] DocumentFragment transformToFragment([Default=Undefined] optional Node source, [Default=Undefined] optional Document docVal);
  /external/chromium_org/third_party/WebKit/Source/core/xml/parser/
XMLDocumentParser.h 45 class DocumentFragment;
73 static PassRefPtr<XMLDocumentParser> create(DocumentFragment* fragment, Element* element, ParserContentPolicy parserContentPolicy)
88 static bool parseDocumentFragment(const String&, DocumentFragment*, Element* parent = 0, ParserContentPolicy = AllowScriptingContent);
105 XMLDocumentParser(DocumentFragment*, Element*, ParserContentPolicy);
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_nodedocumentfragmentnodename.java 32 * DocumentFragment Node is "#document-frament".
64 DocumentFragment docFragment;
hc_nodedocumentfragmentnodetype.java 31 * The "getNodeType()" method for a DocumentFragment Node
64 DocumentFragment documentFragmentNode;
hc_nodedocumentfragmentnodevalue.java 32 * DocumentFragment Node is null.
67 DocumentFragment docFragment;

Completed in 822 milliseconds

1 2 3 4 5 6