/external/chromium/webkit/glue/ |
D | webclipboard_impl.cc | 39 std::string markup("<a href=\""); in URLToMarkup() local 40 markup.append(url.spec()); in URLToMarkup() 41 markup.append("\">"); in URLToMarkup() 43 markup.append(EscapeForHTML(UTF16ToUTF8(title))); in URLToMarkup() 44 markup.append("</a>"); in URLToMarkup() 45 return markup; in URLToMarkup() 51 std::string markup("<img src=\""); in URLToImageMarkup() local 52 markup.append(url.spec()); in URLToImageMarkup() 53 markup.append("\""); in URLToImageMarkup() 55 markup.append(" alt=\""); in URLToImageMarkup() [all …]
|
/external/webkit/Tools/Scripts/webkitpy/thirdparty/ |
D | BeautifulSoup.py | 867 markup = None 869 markup = markupName 870 markupAttrs = markup 876 or (markup and self._matches(markup, self.name)) \ 877 or (not markup and self._matches(markupName, self.name)): 896 if markup: 897 found = markup 902 def search(self, markup): argument 907 if isList(markup) and not isinstance(markup, Tag): 908 for element in markup: [all …]
|
/external/webkit/Source/WebCore/platform/gtk/ |
D | DataObjectGtk.cpp | 42 String DataObjectGtk::markup() in markup() function in WebCore::DataObjectGtk 113 Vector<UChar> markup; in setURL() local 114 append(markup, "<a href=\""); in setURL() 115 append(markup, url.string()); in setURL() 116 append(markup, "\">"); in setURL() 118 append(markup, String::fromUTF8(escaped.get())); in setURL() 119 append(markup, "</a>"); in setURL() 120 setMarkup(String::adopt(markup)); in setURL()
|
D | PasteboardHelper.cpp | 43 static void removeMarkupPrefix(String& markup) in removeMarkupPrefix() argument 48 if (markup.startsWith(gMarkupPrefix)) in removeMarkupPrefix() 49 markup.remove(0, gMarkupPrefix.length()); in removeMarkupPrefix() 142 String markup(selectionDataToUTF8String(data)); in getClipboardContents() local 143 removeMarkupPrefix(markup); in getClipboardContents() 144 dataObject->setMarkup(markup); in getClipboardContents() 165 CString markup = (gMarkupPrefix + dataObject->markup()).utf8(); in fillSelectionData() local 167 reinterpret_cast<const guchar*>(markup.data()), markup.length() + 1); in fillSelectionData() 222 String markup(selectionDataToUTF8String(data)); in fillDataObjectFromDropData() local 223 removeMarkupPrefix(markup); in fillDataObjectFromDropData() [all …]
|
/external/webkit/Source/WebCore/platform/chromium/ |
D | ClipboardChromium.cpp | 200 StringBuilder markup; in imageToMarkup() local 201 markup.append("<img src=\""); in imageToMarkup() 202 markup.append(url); in imageToMarkup() 203 markup.append('"'); in imageToMarkup() 212 markup.append(' '); in imageToMarkup() 213 markup.append(attr->localName()); in imageToMarkup() 214 markup.append("=\""); in imageToMarkup() 217 markup.append(escapedAttr); in imageToMarkup() 218 markup.append('"'); in imageToMarkup() 221 markup.append("/>"); in imageToMarkup() [all …]
|
D | PasteboardChromium.cpp | 172 String markup; in documentFragment() local 174 PlatformBridge::clipboardReadHTML(buffer, &markup, &srcURL); in documentFragment() 177 … createFragmentFromMarkup(frame->document(), markup, srcURL, FragmentScriptingNotAllowed); in documentFragment() 183 String markup = PlatformBridge::clipboardReadPlainText(buffer); in documentFragment() local 184 if (!markup.isEmpty()) { in documentFragment() 188 createFragmentFromText(context.get(), markup); in documentFragment()
|
/external/webkit/Source/WebKit/qt/Api/ |
D | 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);
|
D | qwebelement.cpp | 300 void QWebElement::setOuterXml(const QString &markup) in setOuterXml() argument 307 static_cast<HTMLElement*>(m_element)->setOuterHTML(markup, exception); in setOuterXml() 340 void QWebElement::setInnerXml(const QString &markup) in setInnerXml() argument 347 static_cast<HTMLElement*>(m_element)->setInnerHTML(markup, exception); in setInnerXml() 1016 void QWebElement::appendInside(const QString &markup) in appendInside() argument 1025 …fPtr<DocumentFragment> fragment = htmlElement->Element::deprecatedCreateContextualFragment(markup); in appendInside() 1062 void QWebElement::prependInside(const QString &markup) in prependInside() argument 1071 RefPtr<DocumentFragment> fragment = htmlElement->deprecatedCreateContextualFragment(markup); in prependInside() 1111 void QWebElement::prependOutside(const QString &markup) in prependOutside() argument 1123 RefPtr<DocumentFragment> fragment = htmlElement->deprecatedCreateContextualFragment(markup); in prependOutside() [all …]
|
/external/webkit/Source/WebCore/platform/qt/ |
D | PasteboardQt.cpp | 67 QString markup = createMarkup(selectedRange, 0, AnnotateForInterchange, false, AbsoluteURLs); in writeSelection() local 69 …markup.prepend(QLatin1String("<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; c… in writeSelection() 70 markup.append(QLatin1String("</body></html>")); in writeSelection() 71 md->setData(QLatin1String("text/html"), markup.toUtf8()); in writeSelection() 73 md->setHtml(markup); in writeSelection()
|
/external/chromium/chrome/browser/ui/gtk/ |
D | first_run_bubble.cc | 131 char* markup = g_markup_printf_escaped(kSearchLabelMarkup, in InitializeContentForLarge() local 133 gtk_label_set_markup(GTK_LABEL(label1), markup); in InitializeContentForLarge() 134 g_free(markup); in InitializeContentForLarge() 182 char* markup = g_markup_printf_escaped(kSearchLabelMarkup, in InitializeContentForMinimal() local 186 gtk_label_set_markup(GTK_LABEL(label1), markup); in InitializeContentForMinimal() 187 g_free(markup); in InitializeContentForMinimal()
|
D | sad_tab_gtk.cc | 35 char* markup = g_markup_printf_escaped(format, str.c_str()); in MakeWhiteMarkupLabel() local 36 gtk_label_set_markup(GTK_LABEL(label), markup); in MakeWhiteMarkupLabel() 37 g_free(markup); in MakeWhiteMarkupLabel()
|
D | theme_install_bubble_view_gtk.cc | 90 gchar* markup = g_markup_printf_escaped( in InitWidgets() local 93 gtk_label_set_markup(GTK_LABEL(label), markup); in InitWidgets() 94 g_free(markup); in InitWidgets()
|
/external/webkit/Source/WebCore/editing/ |
D | markup.cpp | 148 Vector<UChar> markup; in wrapWithNode() local 150 …appendElement(markup, static_cast<Element*>(node), convertBlocksToInlines && isBlock(const_cast<No… in wrapWithNode() 152 appendStartMarkup(markup, node, 0); in wrapWithNode() 153 m_reversedPrecedingMarkup.append(String::adopt(markup)); in wrapWithNode() 673 PassRefPtr<DocumentFragment> createFragmentFromMarkup(Document* document, const String& markup, con… in createFragmentFromMarkup() argument 680 …RefPtr<DocumentFragment> fragment = fakeBody->deprecatedCreateContextualFragment(markup, scripting… in createFragmentFromMarkup() 908 Vector<UChar> markup; in urlToMarkup() local 909 append(markup, "<a href=\""); in urlToMarkup() 910 append(markup, url.string()); in urlToMarkup() 911 append(markup, "\">"); in urlToMarkup() [all …]
|
D | MarkupAccumulator.cpp | 124 Vector<UChar> markup; in appendStartTag() local 125 appendStartMarkup(markup, node, namespaces); in appendStartTag() 126 appendString(String::adopt(markup)); in appendStartTag() 133 Vector<UChar> markup; in appendEndTag() local 134 appendEndMarkup(markup, node); in appendEndTag() 135 appendString(String::adopt(markup)); in appendEndTag()
|
/external/webkit/LayoutTests/fast/dom/Node/ |
D | normalize-with-cdata-expected.txt | 7 …) is "<foo>This is some text before the CDATA<![CDATA[This is some <bold>markup</bold> inside of a… 10 …) is "<foo>This is some text before the CDATA<![CDATA[This is some <bold>markup</bold> inside of a…
|
/external/webkit/Source/WebKit/gtk/tests/ |
D | testcopyandpaste.c | 99 char* markup = g_strndup((const char*) gtk_selection_data_get_data(selectionData), in load_status_cb() local 101 g_assert(strlen(markupPrefix) <= strlen(markup)); in load_status_cb() 102 g_assert(!strncmp(markupPrefix, markup, strlen(markupPrefix))); in load_status_cb() 103 g_free(markup); in load_status_cb()
|
/external/eigen/bench/spbench/ |
D | spbenchsolver.h | 247 string markup; in printHtmlStatLine() local 253 markup = "<TD style=\"background-color:red\">"; in printHtmlStatLine() 255 markup = "<TD>"; in printHtmlStatLine() 258 compute << markup << stat[i].compute_time; in printHtmlStatLine() 259 solve << markup << stat[i].solve_time; in printHtmlStatLine() 260 total << markup << stat[i].total_time; in printHtmlStatLine()
|
/external/webkit/Source/WebKit/qt/tests/benchmarks/painting/ |
D | tst_painting.cpp | 119 QString markup("<textarea cols='1' rows='1'></textarea>"); in textAreas() local 120 bodyElement.appendInside(markup); in textAreas()
|
/external/chromium/chrome/browser/ui/gtk/extensions/ |
D | extension_install_dialog_gtk.cc | 32 char* markup = g_markup_printf_escaped(format, str.c_str()); in MakeMarkupLabel() local 33 gtk_label_set_markup(GTK_LABEL(label), markup); in MakeMarkupLabel() 34 g_free(markup); in MakeMarkupLabel()
|
/external/chromium/chrome/browser/autocomplete/ |
D | autocomplete_edit_view_mac_unittest.mm | 61 const string16 markup(ASCIIToUTF16("<strong>Hi!</string>")); 63 clipboard_writer.WriteHTML(markup, url);
|
/external/webkit/LayoutTests/fast/encoding/ |
D | floraexpress-ru-expected.txt | 1 Test a particular example of broken markup that was making us ignore a charset declaration.
|
D | bandai-co-jp-releases-expected.txt | 1 Test a particular example of broken markup that was making us ignore a charset declaration.
|
D | yahoo-mail-expected.txt | 1 Test a particular example of broken markup that was making us ignore a charset declaration.
|
D | ahram-org-eg-expected.txt | 1 Test a particular example of broken markup that was making us ignore a charset declaration.
|
D | hanarei-blog32-fc2-com-expected.txt | 1 Test a particular example of broken markup that was making us ignore a charset declaration.
|