Searched refs:DocumentFragment (Results 26 - 50 of 95) sorted by relevance

1234

/external/webkit/Source/WebCore/platform/haiku/
H A DDragDataHaiku.cpp31 #include "DocumentFragment.h"
95 PassRefPtr<DocumentFragment> DragData::asFragment(Frame*, PassRefPtr<Range>, bool, bool&) const
H A DPasteboardHaiku.cpp31 #include "DocumentFragment.h"
152 PassRefPtr<DocumentFragment> Pasteboard::documentFragment(Frame* frame, PassRefPtr<Range> context,
173 RefPtr<DocumentFragment> fragment = createFragmentFromMarkup(frame->document(), html, "", FragmentScriptingNotAllowed);
186 RefPtr<DocumentFragment> fragment = createFragmentFromText(context.get(), plainText);
/external/webkit/Source/WebCore/dom/
H A DTextEvent.cpp49 PassRefPtr<TextEvent> TextEvent::createForFragmentPaste(PassRefPtr<AbstractView> view, PassRefPtr<DocumentFragment> data, bool shouldSmartReplace, bool shouldMatchStyle)
76 TextEvent::TextEvent(PassRefPtr<AbstractView> view, const String& data, PassRefPtr<DocumentFragment> pastingFragment,
H A DRange.h38 class DocumentFragment;
77 PassRefPtr<DocumentFragment> extractContents(ExceptionCode&);
78 PassRefPtr<DocumentFragment> cloneContents(ExceptionCode&);
85 PassRefPtr<DocumentFragment> createContextualFragment(const String& html, ExceptionCode&) const;
151 PassRefPtr<DocumentFragment> processContents(ActionType, ExceptionCode&);
152 static PassRefPtr<Node> processContentsBetweenOffsets(ActionType, PassRefPtr<DocumentFragment>, Node*, unsigned startOffset, unsigned endOffset, ExceptionCode&);
H A DRange.idl72 DocumentFragment extractContents()
74 DocumentFragment cloneContents()
97 DocumentFragment createContextualFragment(in DOMString html)
/external/webkit/Source/WebCore/platform/chromium/
H A DDragDataChromium.cpp35 #include "DocumentFragment.h"
119 PassRefPtr<DocumentFragment> DragData::asFragment(Frame* frame, PassRefPtr<Range>, bool, bool&) const
134 //if (RefPtr<DocumentFragment> fragment = createFragmentFromMarkup(doc,
141 RefPtr<DocumentFragment> fragment = createFragmentFromMarkup(frame->document(),
H A DPasteboardChromium.cpp36 #include "DocumentFragment.h"
166 PassRefPtr<DocumentFragment> Pasteboard::documentFragment(Frame* frame, PassRefPtr<Range> context, bool allowPlainText, bool& chosePlainText)
176 RefPtr<DocumentFragment> fragment =
187 RefPtr<DocumentFragment> fragment =
/external/webkit/Source/WebCore/xml/
H A DXSLTProcessor.h42 class DocumentFragment;
55 PassRefPtr<DocumentFragment> transformToFragment(Node* source, Document* ouputDoc);
H A DXSLTProcessor.cpp31 #include "DocumentFragment.h"
100 static inline RefPtr<DocumentFragment> createFragmentFromSource(const String& sourceString, const String& sourceMIMEType, Document* outputDoc)
102 RefPtr<DocumentFragment> fragment = outputDoc->createDocumentFragment();
136 PassRefPtr<DocumentFragment> XSLTProcessor::transformToFragment(Node* sourceNode, Document* outputDoc)
/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXObject.java37 import org.w3c.dom.DocumentFragment;
347 public DocumentFragment rtree(XPathContext support)
349 DocumentFragment docFrag = null;
359 docFrag = (DocumentFragment)frag.getNode(frag.getDocument());
364 docFrag = (DocumentFragment)frag.getNode(frag.getDocument());
376 public DocumentFragment rtree()
/external/webkit/Source/WebCore/platform/gtk/
H A DPasteboardGtk.cpp24 #include "DocumentFragment.h"
123 PassRefPtr<DocumentFragment> Pasteboard::documentFragment(Frame* frame, PassRefPtr<Range> context,
133 RefPtr<DocumentFragment> fragment = createFragmentFromMarkup(frame->document(), dataObject->markup(), "", FragmentScriptingNotAllowed);
143 RefPtr<DocumentFragment> fragment = createFragmentFromText(context.get(), dataObject->text());
H A DDragDataGtk.cpp23 #include "DocumentFragment.h"
91 PassRefPtr<DocumentFragment> DragData::asFragment(Frame* frame, PassRefPtr<Range>, bool, bool&) const
/external/webkit/Source/WebCore/platform/qt/
H A DPasteboardQt.cpp31 #include "DocumentFragment.h"
101 PassRefPtr<DocumentFragment> Pasteboard::documentFragment(Frame* frame, PassRefPtr<Range> context,
113 RefPtr<DocumentFragment> fragment = createFragmentFromMarkup(frame->document(), html, "", FragmentScriptingNotAllowed);
121 RefPtr<DocumentFragment> fragment = createFragmentFromText(context.get(), mimeData->text());
H A DDragDataQt.cpp30 #include "DocumentFragment.h"
132 PassRefPtr<DocumentFragment> DragData::asFragment(Frame* frame, PassRefPtr<Range>, bool, bool&) const
/external/webkit/Source/WebCore/platform/
H A DDragData.h78 class DocumentFragment;
117 PassRefPtr<DocumentFragment> asFragment(Frame*, PassRefPtr<Range> context,
/external/webkit/Source/WebCore/editing/
H A DMoveSelectionCommand.cpp29 #include "DocumentFragment.h"
34 MoveSelectionCommand::MoveSelectionCommand(PassRefPtr<DocumentFragment> fragment, const Position& position, bool smartInsert, bool smartDelete)
H A DSpellingCorrectionCommand.cpp30 #include "DocumentFragment.h"
93 RefPtr<DocumentFragment> fragment = createFragmentFromText(m_rangeToBeCorrected.get(), m_correction);
/external/webkit/Source/WebCore/platform/win/
H A DPasteboardWin.cpp32 #include "DocumentFragment.h"
283 PassRefPtr<DocumentFragment> Pasteboard::documentFragment(Frame* frame, PassRefPtr<Range> context, bool allowPlainText, bool& chosePlainText)
296 PassRefPtr<DocumentFragment> fragment = fragmentFromCFHTML(frame->document(), cfhtml);
312 RefPtr<DocumentFragment> fragment = createFragmentFromText(context.get(), str);
329 RefPtr<DocumentFragment> fragment = createFragmentFromText(context.get(), str);
/external/webkit/Source/WebCore/platform/wince/
H A DPasteboardWinCE.cpp33 #include "DocumentFragment.h"
264 PassRefPtr<DocumentFragment> Pasteboard::documentFragment(Frame* frame, PassRefPtr<Range> context, bool allowPlainText, bool& chosePlainText)
277 PassRefPtr<DocumentFragment> fragment = fragmentFromCF_HTML(frame->document(), cf_html);
293 RefPtr<DocumentFragment> fragment = createFragmentFromText(context.get(), str);
310 RefPtr<DocumentFragment> fragment = createFragmentFromText(context.get(), str);
/external/webkit/Source/WebCore/editing/mac/
H A DEditorMac.mm32 #import "DocumentFragment.h"
71 RefPtr<DocumentFragment> fragment = pasteboard->documentFragment(m_frame, range, allowPlainText, choosePlainText);
79 RefPtr<DocumentFragment> fragment = pasteboard->documentFragment(m_frame, range, allowPlainText, choosePlainText);
84 RefPtr<DocumentFragment>fragment = pasteboard->documentFragment(m_frame, range, allowPlainText, choosePlainText);
/external/webkit/Source/WebCore/page/
H A DEditorClient.h60 class DocumentFragment;
131 virtual DocumentFragment* documentFragmentFromAttributedString(NSAttributedString*, Vector< RefPtr<ArchiveResource> >&) = 0;
/external/webkit/Source/WebCore/html/
H A DHTMLElement.cpp30 #include "DocumentFragment.h"
277 PassRefPtr<DocumentFragment> HTMLElement::deprecatedCreateContextualFragment(const String& markup, FragmentScriptingPermission scriptingPermission)
301 static void replaceChildrenWithFragment(HTMLElement* element, PassRefPtr<DocumentFragment> fragment, ExceptionCode& ec)
340 // We may want to move a version of this function into DocumentFragment.h/cpp
341 static PassRefPtr<DocumentFragment> createFragmentFromSource(const String& markup, Element* contextElement, ExceptionCode& ec)
344 RefPtr<DocumentFragment> fragment;
346 fragment = DocumentFragment::create(document);
362 RefPtr<DocumentFragment> fragment = createFragmentFromSource(html, this, ec);
376 RefPtr<DocumentFragment> fragment = createFragmentFromSource(html, parent, ec);
383 PassRefPtr<DocumentFragment> HTMLElemen
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DDOMBuilder.java30 import org.w3c.dom.DocumentFragment;
62 /** First node of document fragment or null if not a DocumentFragment */
63 public DocumentFragment m_docFrag = null;
94 public DOMBuilder(Document doc, DocumentFragment docFrag)
112 * Get the root document or DocumentFragment of the DOM being created.
/external/webkit/Source/WebCore/html/parser/
H A DHTMLConstructionSite.h48 HTMLConstructionSite(DocumentFragment*, FragmentScriptingPermission);
138 // constructed nodes. It points to a DocumentFragment when parsing fragments
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/mac/
H A DWebEditorClientMac.mm39 #import <WebCore/DocumentFragment.h>
109 DocumentFragment* WebEditorClient::documentFragmentFromAttributedString(NSAttributedString *string, Vector<RefPtr<ArchiveResource> >& resources)

Completed in 299 milliseconds

1234