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

1 2 3

  /external/webkit/Source/WebCore/platform/gtk/
DataObjectGtk.cpp 22 #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));
PasteboardHelper.cpp 43 static void removeMarkupPrefix(String& markup)
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()).utf8() local
    [all...]
DataObjectGtk.h 59 String markup();
DragDataGtk.cpp 25 #include "markup.h"
96 return createFragmentFromMarkup(frame->document(), m_platformDragData->markup(), "");
  /external/llvm/lib/Target/ARM/InstPrinter/
ARMInstPrinter.cpp 70 OS << markup("<reg:")
72 << markup(">");
145 << markup("<imm:")
147 << markup(">");
295 O << markup("<imm:")
297 << markup(">");
321 O << markup("<mem:") << "[pc, "
322 << markup("<imm:") << "#" << formatImm(MO1.getImm())
323 << markup(">]>", "]");
376 O << markup("<mem:") << "["
    [all...]
  /external/chromium/webkit/glue/
webclipboard_impl.cc 39 std::string markup("<a href=\"");
40 markup.append(url.spec());
41 markup.append("\">");
43 markup.append(EscapeForHTML(UTF16ToUTF8(title)));
44 markup.append("</a>");
45 return markup;
51 std::string markup("<img src=\"");
52 markup.append(url.spec());
53 markup.append("\"");
55 markup.append(" alt=\"")
    [all...]
  /external/llvm/lib/MC/
MCInstPrinter.cpp 42 StringRef MCInstPrinter::markup(StringRef s) const { function in class:MCInstPrinter
48 StringRef MCInstPrinter::markup(StringRef a, StringRef b) const { function in class:MCInstPrinter
  /external/llvm/lib/Target/X86/InstPrinter/
X86ATTInstPrinter.cpp 37 OS << markup("<reg:")
39 << markup(">");
159 O << markup("<imm:")
161 << markup(">");
168 O << markup("<imm:")
170 << markup(">");
181 O << markup("<mem:");
209 << markup("<imm:")
211 << markup(">");
217 O << markup(">");
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/thirdparty/
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/LayoutTests/fast/dom/Node/script-tests/
normalize-with-cdata.js 9 '<![CDATA[This is some <bold>markup</bold> inside of a CDATA]]>' +
15 shouldBe('serializer.serializeToString(xmlChunk)', '"<foo>This is some text before the CDATA<![CDATA[This is some <bold>markup</bold> inside of a CDATA]]>This is some text after the CDATA</foo>"');
19 shouldBe('serializer.serializeToString(xmlChunk)', '"<foo>This is some text before the CDATA<![CDATA[This is some <bold>markup</bold> inside of a CDATA]]>This is some text after the CDATA</foo>"');
  /external/webkit/Source/WebCore/platform/chromium/
PasteboardChromium.cpp 47 #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);
ClipboardChromium.cpp 48 #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.append('"')
    [all...]
  /external/llvm/include/llvm/MC/
MCInstPrinter.h 77 StringRef markup(StringRef s) const;
78 StringRef markup(StringRef a, StringRef b) const;
  /external/webkit/Source/WebCore/platform/qt/
PasteboardQt.cpp 36 #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/webkit/Source/WebKit/qt/Api/
qwebelement.h 76 void setOuterXml(const QString& markup);
79 void setInnerXml(const QString& markup);
119 void appendInside(const QString& markup);
123 void prependInside(const QString& markup);
127 void appendOutside(const QString& markup);
131 void prependOutside(const QString& markup);
136 void encloseContentsWith(const QString& markup);
137 void encloseWith(const QString& markup);
140 void replace(const QString& markup);
qwebelement.cpp 293 \a markup. The string may contain HTML or XML tags, which is parsed and
300 void QWebElement::setOuterXml(const QString &markup)
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)
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)
    [all...]
  /external/webkit/Source/WebCore/editing/
markup.h 46 PassRefPtr<DocumentFragment> createFragmentFromMarkup(Document*, const String& markup, const String& baseURL, FragmentScriptingPermission = FragmentScriptingAllowed);
MarkupAccumulator.cpp 124 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.
EditingAllInOne.cpp 79 #include <markup.cpp>
markup.cpp 27 #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 to represent it
908 Vector<UChar> markup; local
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
first_run_bubble.cc 24 // Markup for the text of the Omnibox search label
131 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);
sad_tab_gtk.cc 35 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);
theme_install_bubble_view_gtk.cc 90 gchar* markup = g_markup_printf_escaped( local
93 gtk_label_set_markup(GTK_LABEL(label), markup); local
94 g_free(markup);
gtk_chrome_link_button.h 58 // As above, but don't escape markup in the text.
59 GtkWidget* gtk_chrome_link_button_new_with_markup(const char* markup);
  /external/webkit/Source/WebKit/qt/tests/benchmarks/painting/
tst_painting.cpp 119 QString markup("<textarea cols='1' rows='1'></textarea>");
120 bodyElement.appendInside(markup);

Completed in 725 milliseconds

1 2 3