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

1 2

  /packages/apps/Calculator/src/com/android/calculator2/
CalculatorEditText.java 105 || !canPaste(primaryClip.getItemAt(0).coerceToText(getContext()))) {
147 if (canPaste(paste)) {
154 private boolean canPaste(CharSequence paste) {
155 boolean canPaste = true;
160 canPaste = false;
162 return canPaste;
  /external/webkit/Source/WebKit/android/WebCoreSupport/
EditorClientAndroid.h 89 virtual bool canPaste(bool defaultValue) const;
EditorClientAndroid.cpp 221 bool EditorClientAndroid::canPaste(bool defaultValue) const { return defaultValue; }
  /external/webkit/Source/WebKit/efl/WebCoreSupport/
EditorClientEfl.h 86 virtual bool canPaste(bool defaultValue) const;
EditorClientEfl.cpp 168 bool EditorClientEfl::canPaste(bool defaultValue) const
  /external/webkit/Source/WebKit/haiku/WebCoreSupport/
EditorClientHaiku.h 83 virtual bool canPaste(bool defaultValue) const;
EditorClientHaiku.cpp 212 bool EditorClientHaiku::canPaste(bool defaultValue) const
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
EditorClientQt.h 83 virtual bool canPaste(bool defaultValue) const;
EditorClientQt.cpp 267 bool EditorClientQt::canPaste(bool defaultValue) const
  /external/webkit/Source/WebKit/wx/WebKitSupport/
EditorClientWx.h 85 virtual bool canPaste(bool defaultValue) const;
EditorClientWx.cpp 321 bool EditorClientWx::canPaste(bool defaultValue) const
  /external/webkit/Source/WebCore/page/
EditorClient.h 112 virtual bool canPaste(bool defaultValue) const = 0;
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
EditorClientGtk.h 112 virtual bool canPaste(bool defaultValue) const;
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebEditorClient.h 82 bool canPaste(bool defaultValue) const;
  /external/webkit/Source/WebKit/wince/WebCoreSupport/
EditorClientWinCE.h 73 virtual bool canPaste(bool defaultValue) const;
EditorClientWinCE.cpp 167 bool EditorClientWinCE::canPaste(bool defaultValue) const
  /external/webkit/Source/WebKit/chromium/src/
EditorClientImpl.h 83 virtual bool canPaste(bool defaultValue) const;
ContextMenuClientImpl.cpp 168 if (m_webView->focusedWebCoreFrame()->editor()->canPaste())
169 data.editFlags |= WebContextMenuData::CanPaste;
EditorClientImpl.cpp 328 bool EditorClientImpl::canPaste(bool defaultValue) const
    [all...]
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebEditorClient.h 111 virtual bool canPaste(bool defaultValue) const;
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebEditorClient.h 79 virtual bool canPaste(bool defaultValue) const;
WebEditorClient.cpp 251 bool WebEditorClient::canPaste(bool defaultValue) const
  /external/webkit/Source/WebCore/editing/
Editor.h 110 bool canPaste() const;
  /external/webkit/Source/WebCore/loader/
EmptyClients.h 477 virtual bool canPaste(bool defaultValue) const { return defaultValue; }
  /external/webkit/Source/WebKit/wx/
WebFrame.cpp 444 bool wxWebFrame::CanPaste()
447 return (m_impl->frame->editor()->canPaste() || m_impl->frame->editor()->canDHTMLPaste());
454 if (CanPaste())

Completed in 980 milliseconds

1 2