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

1 2

  /packages/apps/Calculator/src/com/android/calculator2/
CalculatorEditText.java 163 || !canPaste(primaryClip.getItemAt(0).coerceToText(getContext()))) {
205 if (canPaste(paste)) {
212 private boolean canPaste(CharSequence paste) {
213 boolean canPaste = true;
218 canPaste = false;
220 return canPaste;
  /frameworks/base/core/java/android/webkit/
SelectActionModeCallback.java 69 boolean canPaste = isEditable && cm.hasPrimaryClip() && isFocusable;
75 setMenuVisibility(menu, canPaste, com.android.internal.R.id.paste);
  /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;
  /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 473 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 663 milliseconds

1 2