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

1 2 3 4 5 6 7 8

  /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/dom/
DocumentFragment.cpp 24 #include "core/dom/DocumentFragment.h"
32 DocumentFragment::DocumentFragment(Document* document, ConstructionType constructionType)
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::cloneNode(bool deep
    [all...]
DocumentFragment.idl 23 ] interface DocumentFragment : Node {
28 DocumentFragment implements ParentNode;
DocumentFragment.h 32 class DocumentFragment : public ContainerNode {
35 static PassRefPtrWillBeRawPtr<DocumentFragment> create(Document&);
44 DocumentFragment(Document*, ConstructionType = CreateContainer);
55 DEFINE_NODE_TYPE_CASTS(DocumentFragment, isDocumentFragment());
TemplateContentDocumentFragment.h 30 #include "core/dom/DocumentFragment.h"
34 class TemplateContentDocumentFragment FINAL : public DocumentFragment {
49 DocumentFragment::trace(visitor);
54 : DocumentFragment(&document, CreateDocumentFragment)
Range.idl 54 [RaisesException, CustomElementCallbacks] DocumentFragment extractContents();
55 [RaisesException, CustomElementCallbacks] DocumentFragment cloneContents();
76 [RaisesException, CustomElementCallbacks] DocumentFragment createContextualFragment(DOMString html);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTemplateElement.idl 32 readonly attribute DocumentFragment content;
HTMLTemplateElement.h 38 class DocumentFragment;
48 DocumentFragment* content() const;
HTMLTemplateElement.cpp 36 #include "core/dom/DocumentFragment.h"
58 DocumentFragment* HTMLTemplateElement::content() const
  /external/chromium_org/third_party/WebKit/Source/core/editing/
MoveSelectionCommand.h 33 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;
markup.h 39 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&);
ReplaceSelectionCommand.h 34 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;
  /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/events/
TextEvent.h 35 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;
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLTreeBuilder.h 46 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;
HTMLDocumentParser.h 57 class DocumentFragment;
82 static void parseDocumentFragment(const String&, DocumentFragment*, Element* contextElement, ParserContentPolicy = AllowScriptingContent);
116 HTMLDocumentParser(DocumentFragment*, Element* contextElement, ParserContentPolicy);
123 static PassRefPtrWillBeRawPtr<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/vtt/
VTTCue.idl 46 DocumentFragment getCueAsHTML();
  /external/chromium_org/third_party/WebKit/Source/core/page/
DragData.h 39 class DocumentFragment;
69 PassRefPtrWillBeRawPtr<DocumentFragment> asFragment(LocalFrame*, PassRefPtrWillBeRawPtr<Range> context, bool allowPlainText, bool& chosePlainText) const;
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XSLTProcessor.idl 42 [CustomElementCallbacks] DocumentFragment transformToFragment([Default=Undefined] optional Node source, [Default=Undefined] optional Document docVal);
  /external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
ShadowRoot.cpp 46 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);
  /external/chromium_org/third_party/WebKit/Source/core/xml/parser/
XMLDocumentParser.h 46 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);
  /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 391 milliseconds

1 2 3 4 5 6 7 8