Searched defs:markup (Results 1 - 11 of 11) sorted by relevance

/external/webkit/WebCore/platform/gtk/
H A DDataObjectGtk.cpp22 #include "markup.h"
34 String DataObjectGtk::markup() function in class:WebCore::DataObjectGtk
H A DPasteboardGtk.cpp32 #include "markup.h"
40 PasteboardSelectionData(gchar* text, gchar* markup) argument
42 , m_markup(markup) { }
50 const gchar* markup() const { return m_markup; } function in class:WebCore::PasteboardSelectionData
63 reinterpret_cast<const guchar*>(clipboardData->markup()),
64 g_utf8_strlen(clipboardData->markup(), -1));
101 gchar* markup = g_strdup(createMarkup(selectedRange, 0, AnnotateForInterchange).utf8().data()); local
102 PasteboardSelectionData* data = new PasteboardSelectionData(text, markup);
/external/webkit/WebCore/platform/chromium/
H A DPasteboardChromium.cpp43 #include "markup.h"
167 String markup; local
169 ChromiumBridge::clipboardReadHTML(buffer, &markup, &srcURL);
172 createFragmentFromMarkup(frame->document(), markup, srcURL, FragmentScriptingNotAllowed);
178 String markup = ChromiumBridge::clipboardReadPlainText(buffer); local
179 if (!markup.isEmpty()) {
183 createFragmentFromText(context.get(), markup);
H A DClipboardChromium.cpp41 #include "markup.h"
251 StringBuilder markup; local
252 markup.append("<img src=\"");
253 markup.append(url);
254 markup.append("\"");
263 markup.append(" ");
264 markup.append(attr->localName());
265 markup.append("=\"");
268 markup.append(escapedAttr);
269 markup
[all...]
/external/expat/xmlwf/
H A Dxmlwf.c298 markup(void *userData, const XML_Char *s, int len) function
827 XML_SetDefaultHandler(parser, markup);
/external/webkit/WebCore/platform/win/
H A DClipboardUtilitiesWin.cpp34 #include "markup.h"
158 void markupToCF_HTML(const String& markup, const String& srcURL, Vector<char>& result) argument
160 if (markup.isEmpty())
179 CString markupUTF8 = markup.utf8();
207 Vector<UChar> markup; local
208 append(markup, "<a href=\"");
209 append(markup, url.string());
210 append(markup, "\">");
211 append(markup, title);
212 append(markup, "</
416 String markup = cf_html.substring(fragmentStart, fragmentEnd - fragmentStart).stripWhiteSpace(); local
[all...]
/external/webkit/WebCore/svg/
H A DSVGUseElement.cpp535 String markup = serializer->serializeToString(shadowRoot, ec); local
538 fprintf(stderr, "Dumping <use> shadow tree markup:\n%s\n", markup.latin1().data());
854 // Event listeners created from markup have already been transfered to the shadow tree during cloning.
/external/webkit/WebKit/qt/Api/
H A Dqwebelement.cpp266 \a markup. The string may contain HTML or XML tags, which is parsed and
273 void QWebElement::setOuterXml(const QString &markup) argument
280 static_cast<HTMLElement*>(m_element)->setOuterHTML(markup, exception);
300 Replaces the contents of this element with \a markup. The string may
308 void QWebElement::setInnerXml(const QString &markup) argument
315 static_cast<HTMLElement*>(m_element)->setInnerHTML(markup, exception);
962 Appends the result of parsing \a markup as the element's last child.
968 void QWebElement::appendInside(const QString &markup) argument
977 RefPtr<DocumentFragment> fragment = htmlElement->createContextualFragment(markup);
1008 Prepends the result of parsing \a markup a
1014 prependInside(const QString &markup) argument
1063 prependOutside(const QString &markup) argument
1113 appendOutside(const QString &markup) argument
1258 encloseContentsWith(const QString &markup) argument
1333 encloseWith(const QString &markup) argument
1394 replace(const QString &markup) argument
[all...]
/external/webkit/WebKitTools/DumpRenderTree/qt/
H A DDumpRenderTreeQt.cpp662 QString markup = mainFrame->toHtml(); local
663 fprintf(stdout, "Source:\n\n%s\n", markup.toUtf8().constData());
/external/webkit/WebCore/dom/
H A DRange.cpp40 #include "markup.h"
1052 PassRefPtr<DocumentFragment> Range::createContextualFragment(const String& markup, ExceptionCode& ec) const argument
1065 RefPtr<DocumentFragment> fragment = static_cast<HTMLElement*>(element)->createContextualFragment(markup);
/external/webkit/WebCore/editing/
H A Dmarkup.cpp27 #include "markup.h"
419 String markup = escapeContentText(useRenderedText ? renderedText(node, range) : stringValueForRange(node, range), false); local
420 markup = convertHTMLTextToInterchangeFormat(markup, static_cast<const Text*>(node));
421 append(result, markup);
678 // Add an interchange newline if a paragraph break is selected and a br won't already be added to the markup to represent it.
802 // Disable the delete button so it's elements are not serialized into the markup,
855 // This null check will prevent crashes (but create too much markup)
878 // Add the node to the markup.
907 // Surround the currently accumulated markup wit
1059 createFragmentFromMarkup(Document* document, const String& markup, const String& baseURL, FragmentScriptingPermission scriptingPermission) argument
[all...]

Completed in 688 milliseconds