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

1 2

  /external/webkit/WebCore/platform/chromium/
ChromiumDataObject.cpp 44 plainText = "";
59 || !plainText.isEmpty()
71 , plainText(other.plainText)
PasteboardChromium.cpp 87 String plainText = frame->selectedText();
89 replaceNewlinesWithWindowsStyleNewlines(plainText);
91 replaceNBSPWithSpace(plainText);
93 ChromiumBridge::clipboardWriteSelection(html, url, plainText, canSmartCopyOrDelete);
99 String plainText(text);
100 replaceNewlinesWithWindowsStyleNewlines(plainText);
101 ChromiumBridge::clipboardWritePlainText(plainText);
156 String Pasteboard::plainText(Frame* frame)
DragDataChromium.cpp 95 return !m_platformDragData->plainText.isEmpty();
100 return m_platformDragData->plainText;
115 return !m_platformDragData->plainText.isEmpty()
ChromiumDataObject.h 68 String plainText;
ClipboardChromium.cpp 100 m_dataObject->plainText = "";
129 } else if (!m_dataObject->plainText.isEmpty()) {
131 text = m_dataObject->plainText;
158 m_dataObject->plainText = data;
191 if (!m_dataObject->plainText.isEmpty()) {
351 m_dataObject->plainText = url.string();
373 m_dataObject->plainText = str;
386 m_dataObject->plainText = str;
  /external/webkit/WebCore/inspector/front-end/
DOMSyntaxHighlighter.js 61 var plainText = line.substring(plainTextStart, column);
62 node.appendChild(document.createTextNode(plainText));
72 var plainText = line.substring(plainTextStart, line.length);
73 node.appendChild(document.createTextNode(plainText));
  /external/webkit/WebCore/editing/
RemoveFormatCommand.cpp 54 String string = plainText(frame->selection()->selection().toNormalizedRange().get());
TextIterator.h 48 String plainText(const Range*);
  /external/webkit/WebKit/chromium/public/
WebClipboard.h 65 const WebString& plainText, bool writeSmartPaste) = 0;
WebDragData.h 88 WEBKIT_API WebString plainText() const;
  /external/webkit/WebKit/chromium/src/
WebDragData.cpp 152 WebString WebDragData::plainText() const
155 return m_private->plainText;
158 void WebDragData::setPlainText(const WebString& plainText)
161 m_private->plainText = plainText;
ChromiumBridge.cpp 145 const String& plainText,
149 htmlText, sourceURL, plainText, writeSmartPaste);
152 void ChromiumBridge::clipboardWritePlainText(const String& plainText)
154 webKitClient()->clipboard()->writePlainText(plainText);
  /external/webkit/SunSpider/tests/sunspider-0.9/
crypto-sha1.js 205 var plainText = "Two households, both alike in dignity,\n\
221 plainText += plainText;
224 var sha1Output = hex_sha1(plainText);
crypto-md5.js 258 var plainText = "Rebellious subjects, enemies to peace,\n\
283 plainText += plainText;
286 var md5Output = hex_md5(plainText);
  /external/webkit/SunSpider/tests/sunspider-0.9.1/
crypto-sha1.js 205 var plainText = "Two households, both alike in dignity,\n\
221 plainText += plainText;
224 var sha1Output = hex_sha1(plainText);
crypto-md5.js 258 var plainText = "Rebellious subjects, enemies to peace,\n\
283 plainText += plainText;
286 var md5Output = hex_md5(plainText);
  /external/webkit/WebCore/platform/wx/
PasteboardWx.cpp 75 String Pasteboard::plainText(Frame* frame)
  /external/webkit/WebCore/platform/
Pasteboard.h 99 String plainText(Frame* = 0);
  /external/webkit/WebCore/platform/haiku/
PasteboardHaiku.cpp 94 String Pasteboard::plainText(Frame* frame)
  /external/webkit/WebCore/platform/qt/
PasteboardQt.cpp 84 String Pasteboard::plainText(Frame*)
  /external/webkit/WebCore/dom/
InputElement.cpp 176 unsigned selectionLength = plainText(element->document()->frame()->selection()->selection().toNormalizedRange().get()).numGraphemeClusters();
  /external/webkit/WebCore/platform/android/
TemporaryLinkStubs.cpp 207 String Pasteboard::plainText(Frame*)
  /external/webkit/WebCore/platform/gtk/
PasteboardGtk.cpp 196 String Pasteboard::plainText(Frame* frame)
  /external/webkit/WebCore/platform/wince/
PasteboardWince.cpp 234 String Pasteboard::plainText(Frame* frame)
  /external/webkit/WebCore/html/
HTMLTextAreaElement.cpp 243 unsigned selectionLength = plainText(document()->frame()->selection()->selection().toNormalizedRange().get()).numGraphemeClusters();

Completed in 526 milliseconds

1 2