HomeSort by relevance Sort by last modified time
    Searched refs:htmlText (Results 1 - 14 of 14) sorted by null

  /external/webkit/Source/WebCore/platform/chromium/
ChromiumDataObject.cpp 161 String htmlText;
163 PlatformBridge::clipboardReadHTML(buffer, &htmlText, &sourceURL);
164 success = !htmlText.isEmpty();
165 return htmlText;
ChromiumDataObjectLegacy.cpp 159 String htmlText;
161 PlatformBridge::clipboardReadHTML(buffer, &htmlText, &sourceURL);
162 success = !htmlText.isEmpty();
163 return htmlText;
  /external/webkit/Source/WebKit/chromium/public/
WebClipboard.h 71 const WebString& htmlText, const WebURL&,
WebDragData.h 89 WEBKIT_API WebString htmlText() const;
  /frameworks/base/core/java/android/content/
ClipData.java 206 public Item(CharSequence text, String htmlText) {
208 mHtmlText = htmlText;
250 public Item(CharSequence text, String htmlText, Intent intent, Uri uri) {
251 if (htmlText != null && text == null) {
256 mHtmlText = htmlText;
390 String htmlText = getHtmlText();
391 if (htmlText != null) {
393 CharSequence newText = Html.fromHtml(htmlText);
437 String htmlText = getHtmlText();
438 if (htmlText != null)
    [all...]
Intent.java     [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebDragData.cpp 160 WebString WebDragData::htmlText() const
167 void WebDragData::setHTMLText(const WebString& htmlText)
170 m_private->setData(mimeTypeTextHTML, htmlText);
PlatformBridge.cpp 169 String* htmlText, KURL* sourceURL)
172 *htmlText = webKitClient()->clipboard()->readHTML(
183 void PlatformBridge::clipboardWriteSelection(const String& htmlText,
189 htmlText, sourceURL, plainText, writeSmartPaste);
    [all...]
  /external/jdiff/src/jdiff/
API.java 274 public static String stuffHTMLTags(String htmlText) {
275 if (htmlText.indexOf("]]>") != -1) {
279 return "<![CDATA[" + htmlText + "]]>";
292 public static String hideHTMLTags(String htmlText) {
293 StringBuffer sb = new StringBuffer(htmlText);
385 public static String convertHTMLTagsToXHTML(String htmlText) {
386 StringBuffer sb = new StringBuffer(htmlText);
398 htmlText.indexOf("</" + tag + ">", i) == -1)
  /external/chromium/webkit/glue/
webdropdata.cc 24 text_html(drag_data.htmlText()),
  /external/webkit/Tools/iExploder/iexploder-1.7.2/src/
iexploder.rb 735 htmlText = header_tags[0..1].join("\n\t")
736 htmlText << buildRedirect(@test_num, @subtest_data, @lookup_mode, @stop_num)
737 htmlText << "<title>[#{@test_num}:#{@subtest_data}] iExploder #{$VERSION} - #{generateGarbageText()}</title>\n"
743 htmlText << "\n<!-- iExploder #{$VERSION} | test #{@test_num}:#{@subtest_data} at #{Time.now} -->\n"
744 htmlText << "<!-- browser: #{show_browser} -->\n"
745 htmlText << header_tags[2..-1].join("\n\t")
746 htmlText << "\n</head>\n\n"
747 htmlText << body_tags.join("\n")
748 htmlText << "</body>\n</html>"
749 return htmlText
    [all...]
  /frameworks/support/v4/java/android/support/v4/app/
ShareCompat.java 441 * @param htmlText A string containing HTML markup as a richer version of the text
446 public IntentBuilder setHtmlText(String htmlText) {
447 mIntent.putExtra(IntentCompat.EXTRA_HTML_TEXT, htmlText);
450 setText(Html.fromHtml(htmlText));
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
TextUtilities.java 339 * @param htmlText some HTML text
344 /*package*/ static int findTagEnd(String htmlText, String tag, int startPos) {
348 int length = htmlText.length();
351 char c = htmlText.charAt(i);
361 return htmlText.indexOf("/" + tag, startPos);
    [all...]
  /external/guava/guava/lib/
jdiff.jar 

Completed in 232 milliseconds