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

1 2

  /external/webkit/WebKit/haiku/WebCoreSupport/
EditorClientHaiku.h 83 virtual bool canUndo() const;
EditorClientHaiku.cpp 214 bool EditorClientHaiku::canUndo() const
  /external/webkit/WebKit/qt/WebCoreSupport/
EditorClientQt.h 82 virtual bool canUndo() const;
EditorClientQt.cpp 278 bool EditorClientQt::canUndo() const
283 return m_page->undoStack()->canUndo();
  /external/webkit/WebKit/wx/WebKitSupport/
EditorClientWx.h 84 virtual bool canUndo() const;
EditorClientWx.cpp 321 bool EditorClientWx::canUndo() const
  /external/webkit/WebKit/android/WebCoreSupport/
EditorClientAndroid.h 81 virtual bool canUndo() const;
EditorClientAndroid.cpp 213 bool EditorClientAndroid::canUndo() const { return false; }
  /external/webkit/WebCore/page/
EditorClient.h 124 virtual bool canUndo() const = 0;
  /external/webkit/WebKit/chromium/src/
EditorClientImpl.h 81 virtual bool canUndo() const;
ContextMenuClientImpl.cpp 230 if (m_webView->focusedWebCoreFrame()->editor()->canUndo())
231 data.editFlags |= WebContextMenuData::CanUndo;
EditorClientImpl.cpp 316 bool EditorClientImpl::canUndo() const
328 if (canUndo()) {
    [all...]
  /external/webkit/WebKit/gtk/WebCoreSupport/
EditorClientGtk.h 93 virtual bool canUndo() const;
EditorClientGtk.cpp 265 bool EditorClient::canUndo() const
277 if (canUndo()) {
  /external/webkit/WebKit/mac/WebCoreSupport/
WebEditorClient.h 103 virtual bool canUndo() const;
WebEditorClient.mm 499 bool WebEditorClient::canUndo() const
501 return [[m_webView undoManager] canUndo];
511 if (canUndo())
  /external/webkit/WebKit/win/WebCoreSupport/
WebEditorClient.h 84 bool canUndo() const;
WebInspectorDelegate.h 246 virtual HRESULT STDMETHODCALLTYPE canUndo(
WebEditorClient.cpp 568 bool WebEditorClient::canUndo() const
573 uiDelegate->canUndo(&result);
  /external/webkit/WebKitTools/DumpRenderTree/win/
UIDelegate.cpp 96 bool canUndo() { return !m_undoStack->isEmpty(); }
144 if (!canUndo())
257 HRESULT STDMETHODCALLTYPE UIDelegate::canUndo(
263 *result = m_undoManager->canUndo();
  /external/webkit/WebKit/win/Interfaces/
IWebUndoManager.idl 53 - (BOOL)canUndo
55 HRESULT canUndo([out, retval] BOOL* result);
  /external/webkit/WebCore/editing/
Editor.h 232 bool canUndo();
  /external/webkit/WebKitTools/WinLauncher/
PrintWebUIDelegate.h 87 virtual HRESULT STDMETHODCALLTYPE canUndo(BOOL*) { return E_NOTIMPL; }
  /external/webkit/WebCore/loader/
EmptyClients.h 376 virtual bool canUndo() const { return false; }
  /external/webkit/WebKit/wx/
WebFrame.cpp 280 if (m_impl->frame && m_impl->frame->editor() && CanUndo())
290 bool wxWebFrame::CanUndo()
293 return m_impl->frame->editor()->canUndo();

Completed in 737 milliseconds

1 2