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

1 2

  /external/webkit/WebCore/platform/chromium/
ClipboardUtilitiesChromium.cpp 57 String markup("<a href=\"");
58 markup.append(url.string());
59 markup.append("\">");
62 markup.append(title);
63 markup.append("</a>");
64 return markup;
PasteboardChromium.cpp 43 #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);
ClipboardChromium.cpp 41 #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.append("\"")
    [all...]
  /external/bluetooth/glib/tests/
run-markup-tests.sh 23 ./markup-test $I > /dev/null 2> $error_out && fail "failed to generate error on $I"
34 ./markup-test $F > actual 2> $error_out || fail "failed on $F"
makefile.msc.in 43 markup-escape-test.exe \
44 markup-test.exe \
  /external/webkit/WebKitTools/Scripts/webkitpy/
BeautifulSoup.py 105 # First, the classes that represent markup elements.
842 """Encapsulates a number of ways of matching a markup element (tag or
867 markup = None
869 markup = markupName
870 markupAttrs = markup
    [all...]
  /external/webkit/WebKit/qt/Api/
qwebelement.h 61 void setOuterXml(const QString& markup);
64 void setInnerXml(const QString& markup);
104 void appendInside(const QString& markup);
108 void prependInside(const QString& markup);
112 void appendOutside(const QString& markup);
116 void prependOutside(const QString& markup);
121 void encloseContentsWith(const QString& markup);
122 void encloseWith(const QString& markup);
125 void replace(const QString& markup);
qwebelement.cpp 266 \a markup. The string may contain HTML or XML tags, which is parsed and
273 void QWebElement::setOuterXml(const QString &markup)
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)
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)
977 RefPtr<DocumentFragment> fragment = htmlElement->createContextualFragment(markup);
1008 Prepends the result of parsing \a markup as the element's first child
    [all...]
  /external/webkit/WebCore/platform/gtk/
PasteboardGtk.cpp 32 #include "markup.h"
40 PasteboardSelectionData(gchar* text, gchar* markup)
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);
DataObjectGtk.h 56 String markup();
DataObjectGtk.cpp 22 #include "markup.h"
34 String DataObjectGtk::markup() function in class:WebCore::DataObjectGtk
  /external/webkit/WebCore/platform/win/
ClipboardUtilitiesWin.cpp 34 #include "markup.h"
158 void markupToCF_HTML(const String& markup, const String& srcURL, Vector<char>& result)
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, "</a>")
416 String markup = cf_html.substring(fragmentStart, fragmentEnd - fragmentStart).stripWhiteSpace(); local
    [all...]
ClipboardUtilitiesWin.h 52 void markupToCF_HTML(const String& markup, const String& srcURL, Vector<char>& result);
ClipboardWin.cpp 55 #include "markup.h"
650 String markup("<img src=\"");
651 markup.append(url);
652 markup.append("\"/>");
653 return markup;
  /external/webkit/WebCore/editing/
markup.h 45 PassRefPtr<DocumentFragment> createFragmentFromMarkup(Document*, const String& markup, const String& baseURL, FragmentScriptingPermission = FragmentScriptingAllowed);
markup.cpp 27 #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,
    [all...]
  /external/webkit/WebKit/gtk/WebCoreSupport/
PasteboardHelperGtk.cpp 88 GOwnPtr<gchar> markup(g_strdup(dataObject->markup().utf8().data()));
90 reinterpret_cast<const guchar*>(markup.get()),
91 strlen(markup.get()));
  /external/webkit/WebKit/mac/DOM/
WebDOMOperations.mm 42 #import <WebCore/markup.h>
  /external/webkit/WebCore/inspector/
InspectorBackend.cpp 64 #include "markup.h"
343 String markup = createMarkup(node);
344 Pasteboard::generalPasteboard()->writePlainText(markup);
  /dalvik/docs/
prettify.js 164 /** token style for a markup declaration such as a DOCTYPE. */
174 * A class that indicates a section of markup that is not code, e.g. to allow
433 /** split markup into chunks of html tags (style null) and
624 /** split markup on tags, comments, application directives, and other top
829 /** identify regions of markup that are really source code, and recursivley
837 // Recurse using the non-markup lexer
    [all...]
  /external/expat/xmlwf/
xmlwf.c 298 markup(void *userData, const XML_Char *s, int len) function
827 XML_SetDefaultHandler(parser, markup);
  /external/webkit/WebCore/svg/
SVGUseElement.cpp 535 String markup = serializer->serializeToString(shadowRoot, ec); local
538 fprintf(stderr, "Dumping <use> shadow tree markup:\n%s\n", markup.latin1().data());
    [all...]
  /external/webkit/WebCore/dom/
Range.cpp 40 #include "markup.h"
    [all...]
  /build/tools/droiddoc/templates/assets/
prettify.js 6 Cc="</span>",Dc='<span class="',Ec='">',Fc="$1&nbsp;",Gc="&nbsp;<br />",Hc="<br />",Ic="console",Jc="cannot override language handler %s",Kc="default-markup",Lc="default-code",Mc="dec",Z="lang-js",$="lang-css",Nc="lang-in.tag",Oc="htm",Pc="html",Qc="mxml",Rc="xhtml",Sc="xml",Tc="xsl",Uc=" \t\r\n",Vc="atv",Wc="tag",Xc="atn",Yc="lang-uq.val",Zc="in.tag",$c="uq.val",ad="break continue do else for if return while auto case char const default double enum extern float goto int long register short signed sizeof static struct switch typedef union unsigned void volatile catch class delete false import new operator private protected public this throw true try alignof align_union asm axiom bool concept concept_map const_cast constexpr decltype dynamic_cast explicit export friend inline late_check mutable namespace nullptr reinterpret_cast static_assert static_cast template typeid typename typeof using virtual wchar_t where ",
  /external/webkit/WebCore/
Android.mk 233 editing/markup.cpp \

Completed in 243 milliseconds

1 2