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

12

/external/llvm/lib/MC/
H A DMCInstPrinter.cpp42 StringRef MCInstPrinter::markup(StringRef s) const { function in class:MCInstPrinter
48 StringRef MCInstPrinter::markup(StringRef a, StringRef b) const { function in class:MCInstPrinter
/external/chromium/chrome/browser/ui/gtk/
H A Dsad_tab_gtk.cc35 char* markup = g_markup_printf_escaped(format, str.c_str()); local
36 gtk_label_set_markup(GTK_LABEL(label), markup); local
37 g_free(markup);
H A Dgtk_chrome_link_button.cc216 GtkWidget* gtk_chrome_link_button_new_with_markup(const char* markup) { argument
218 GTK_CHROME_LINK_BUTTON(lb)->text = g_strdup(markup);
H A Dtheme_install_bubble_view_gtk.cc90 gchar* markup = g_markup_printf_escaped( local
93 gtk_label_set_markup(GTK_LABEL(label), markup); local
94 g_free(markup);
H A Dabout_chrome_dialog.cc60 char* markup = g_markup_printf_escaped(format, str.c_str()); local
61 gtk_label_set_markup(GTK_LABEL(label), markup); local
62 g_free(markup);
H A Dfirst_run_bubble.cc131 char* markup = g_markup_printf_escaped(kSearchLabelMarkup, local
133 gtk_label_set_markup(GTK_LABEL(label1), markup); local
134 g_free(markup);
182 char* markup = g_markup_printf_escaped(kSearchLabelMarkup, local
186 gtk_label_set_markup(GTK_LABEL(label1), markup); local
187 g_free(markup);
H A Dfirst_run_dialog.cc354 char* markup = g_markup_printf_escaped( local
357 gtk_label_set_markup(GTK_LABEL(logo_label), markup); local
358 g_free(markup);
/external/webkit/Source/WebCore/platform/gtk/
H A DDataObjectGtk.cpp22 #include "markup.h"
42 String DataObjectGtk::markup() function in class:WebCore::DataObjectGtk
113 Vector<UChar> markup; local
114 append(markup, "<a href=\"");
115 append(markup, url.string());
116 append(markup, "\">");
118 append(markup, String::fromUTF8(escaped.get()));
119 append(markup, "</a>");
120 setMarkup(String::adopt(markup));
H A DPasteboardHelper.cpp43 static void removeMarkupPrefix(String& markup) argument
46 // The markup prefix is not harmful, but we remove it from the string anyway, so that
48 if (markup.startsWith(gMarkupPrefix))
49 markup.remove(0, gMarkupPrefix.length());
142 String markup(selectionDataToUTF8String(data));
143 removeMarkupPrefix(markup);
144 dataObject->setMarkup(markup);
163 // Some Linux applications refuse to accept pasted markup unless it is
165 CString markup = (gMarkupPrefix + dataObject->markup()) local
[all...]
/external/webkit/Source/WebCore/platform/chromium/
H A DPasteboardChromium.cpp47 #include "markup.h"
172 String markup; local
174 PlatformBridge::clipboardReadHTML(buffer, &markup, &srcURL);
177 createFragmentFromMarkup(frame->document(), markup, srcURL, FragmentScriptingNotAllowed);
183 String markup = PlatformBridge::clipboardReadPlainText(buffer); local
184 if (!markup.isEmpty()) {
188 createFragmentFromText(context.get(), markup);
H A DClipboardChromium.cpp48 #include "markup.h"
200 StringBuilder markup; local
201 markup.append("<img src=\"");
202 markup.append(url);
203 markup.append('"');
212 markup.append(' ');
213 markup.append(attr->localName());
214 markup.append("=\"");
217 markup.append(escapedAttr);
218 markup
[all...]
/external/webkit/Source/WebCore/platform/qt/
H A DPasteboardQt.cpp36 #include "markup.h"
67 QString markup = createMarkup(selectedRange, 0, AnnotateForInterchange, false, AbsoluteURLs); local
69 markup.prepend(QLatin1String("<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" /></head><body>"));
70 markup.append(QLatin1String("</body></html>"));
71 md->setData(QLatin1String("text/html"), markup.toUtf8());
73 md->setHtml(markup);
/external/chromium/chrome/browser/ui/gtk/extensions/
H A Dextension_install_dialog_gtk.cc32 char* markup = g_markup_printf_escaped(format, str.c_str()); local
33 gtk_label_set_markup(GTK_LABEL(label), markup); local
34 g_free(markup);
H A Dextension_installed_bubble_gtk.cc221 char* markup = g_markup_printf_escaped("<span size=\"larger\">%s</span>", local
223 gtk_label_set_markup(GTK_LABEL(heading_label), markup); local
224 g_free(markup);
/external/webkit/Source/WebKit/gtk/tests/
H A Dtestcopyandpaste.c95 // Verify that the markup starts with the proper content-type meta tag prefix.
99 char* markup = g_strndup((const char*) gtk_selection_data_get_data(selectionData), local
101 g_assert(strlen(markupPrefix) <= strlen(markup));
102 g_assert(!strncmp(markupPrefix, markup, strlen(markupPrefix)));
103 g_free(markup);
259 g_test_add("/webkit/copyandpaste/paste-markup", CopyAndPasteFixture,
/external/eigen/bench/spbench/
H A Dspbenchsolver.h247 string markup; local
253 markup = "<TD style=\"background-color:red\">";
255 markup = "<TD>";
258 compute << markup << stat[i].compute_time;
259 solve << markup << stat[i].solve_time;
260 total << markup << stat[i].total_time;
/external/webkit/Source/WebCore/editing/
H A DMarkupAccumulator.cpp124 Vector<UChar> markup; local
125 appendStartMarkup(markup, node, namespaces);
126 appendString(String::adopt(markup));
133 Vector<UChar> markup; local
134 appendEndMarkup(markup, node);
135 appendString(String::adopt(markup));
146 // FIXME: This is a very inefficient way of accumulating the markup.
H A Dmarkup.cpp27 #include "markup.h"
148 Vector<UChar> markup; local
150 appendElement(markup, static_cast<Element*>(node), convertBlocksToInlines && isBlock(const_cast<Node*>(node)), rangeFullySelectsNode);
152 appendStartMarkup(markup, node, 0);
153 m_reversedPrecedingMarkup.append(String::adopt(markup));
328 // This null check will prevent crashes (but create too much markup)
347 // Add the node to the markup if we're not skipping the descendants
374 // Surround the currently accumulated markup with markup for ancestors we never opened as we leave the subtree(s) rooted at those ancestors.
442 // Add an interchange newline if a paragraph break is selected and a br won't already be added to the markup t
673 createFragmentFromMarkup(Document* document, const String& markup, const String& baseURL, FragmentScriptingPermission scriptingPermission) argument
908 Vector<UChar> markup; local
[all...]
/external/chromium/chrome/browser/ui/gtk/notifications/
H A Dballoon_view_gtk.cc262 char* markup = g_markup_printf_escaped(kLabelMarkup, local
265 gtk_label_set_markup(GTK_LABEL(source_label_), markup); local
266 g_free(markup);
/external/expat/xmlwf/
H A Dxmlwf.c298 markup(void *userData, const XML_Char *s, int len) function
827 XML_SetDefaultHandler(parser, markup);
/external/webkit/Source/WebCore/html/
H A DHTMLElement.cpp48 #include "markup.h"
277 PassRefPtr<DocumentFragment> HTMLElement::deprecatedCreateContextualFragment(const String& markup, FragmentScriptingPermission scriptingPermission) argument
287 return Element::deprecatedCreateContextualFragment(markup, scriptingPermission);
341 static PassRefPtr<DocumentFragment> createFragmentFromSource(const String& markup, Element* contextElement, ExceptionCode& ec) argument
348 fragment->parseHTML(markup, contextElement);
352 bool wasValid = fragment->parseXML(markup, contextElement);
586 void HTMLElement::insertAdjacentHTML(const String& where, const String& markup, ExceptionCode& ec) argument
594 fragment->parseHTML(markup, contextElement);
596 if (!fragment->parseXML(markup, contextElement))
/external/webkit/Source/WebCore/svg/
H A DSVGUseElement.cpp620 String markup = serializer->serializeToString(shadowRoot, ec); local
623 fprintf(stderr, "Dumping <use> shadow tree markup:\n%s\n", markup.latin1().data());
956 // Event listeners created from markup have already been transfered to the shadow tree during cloning.
/external/webkit/Source/WebCore/platform/win/
H A DClipboardUtilitiesWin.cpp33 #include "markup.h"
239 // Find the markup between "<!--StartFragment -->" and "<!--EndFragment -->", accounting for browser quirks.
251 void markupToCFHTML(const String& markup, const String& srcURL, Vector<char>& result) argument
253 if (markup.isEmpty())
272 CString markupUTF8 = markup.utf8();
570 String markup = extractMarkupFromCFHTML(cfhtml); local
571 return createFragmentFromMarkup(doc, markup, srcURL, FragmentScriptingNotAllowed);
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebelement.cpp293 \a markup. The string may contain HTML or XML tags, which is parsed and
300 void QWebElement::setOuterXml(const QString &markup) argument
307 static_cast<HTMLElement*>(m_element)->setOuterHTML(markup, exception);
316 \note The format of the markup returned will obey the namespace of the
332 Replaces the contents of this element with \a markup. The string may
340 void QWebElement::setInnerXml(const QString &markup) argument
347 static_cast<HTMLElement*>(m_element)->setInnerHTML(markup, exception);
355 \note The format of the markup returned will obey the namespace of the
1010 Appends the result of parsing \a markup as the element's last child.
1016 void QWebElement::appendInside(const QString &markup) argument
1062 prependInside(const QString &markup) argument
1111 prependOutside(const QString &markup) argument
1161 appendOutside(const QString &markup) argument
1308 encloseContentsWith(const QString &markup) argument
1383 encloseWith(const QString &markup) argument
1444 replace(const QString &markup) argument
[all...]
/external/webkit/Tools/DumpRenderTree/qt/
H A DDumpRenderTreeQt.cpp940 QString markup = mainFrame->toHtml(); local
941 fprintf(stdout, "Source:\n\n%s\n", markup.toUtf8().constData());

Completed in 507 milliseconds

12