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

1 2

  /external/webkit/WebKit/haiku/WebCoreSupport/
EditorClientHaiku.h 84 virtual bool canRedo() const;
EditorClientHaiku.cpp 220 bool EditorClientHaiku::canRedo() const
  /external/webkit/WebKit/qt/WebCoreSupport/
EditorClientQt.h 83 virtual bool canRedo() const;
EditorClientQt.cpp 287 bool EditorClientQt::canRedo() const
292 return m_page->undoStack()->canRedo();
  /external/webkit/WebKit/wx/WebKitSupport/
EditorClientWx.h 85 virtual bool canRedo() const;
EditorClientWx.cpp 334 bool EditorClientWx::canRedo() const
  /external/webkit/WebKit/android/WebCoreSupport/
EditorClientAndroid.h 82 virtual bool canRedo() const;
EditorClientAndroid.cpp 214 bool EditorClientAndroid::canRedo() const { return false; }
  /external/webkit/WebCore/page/
EditorClient.h 125 virtual bool canRedo() const = 0;
  /external/webkit/WebKit/chromium/src/
EditorClientImpl.h 82 virtual bool canRedo() const;
ContextMenuClientImpl.cpp 232 if (m_webView->focusedWebCoreFrame()->editor()->canRedo())
233 data.editFlags |= WebContextMenuData::CanRedo;
EditorClientImpl.cpp 321 bool EditorClientImpl::canRedo() const
339 if (canRedo()) {
    [all...]
  /external/webkit/WebKit/gtk/WebCoreSupport/
EditorClientGtk.h 94 virtual bool canRedo() const;
EditorClientGtk.cpp 270 bool EditorClient::canRedo() const
287 if (canRedo()) {
  /external/webkit/WebKit/mac/WebCoreSupport/
WebEditorClient.h 104 virtual bool canRedo() const;
WebEditorClient.mm 504 bool WebEditorClient::canRedo() const
506 return [[m_webView undoManager] canRedo];
517 if (canRedo())
  /external/webkit/WebKit/win/WebCoreSupport/
WebEditorClient.h 85 bool canRedo() const;
WebInspectorDelegate.h 249 virtual HRESULT STDMETHODCALLTYPE canRedo(
WebEditorClient.cpp 579 bool WebEditorClient::canRedo() const
584 uiDelegate->canRedo(&result);
  /external/webkit/WebKitTools/DumpRenderTree/win/
UIDelegate.cpp 95 bool canRedo() { return !m_redoStack->isEmpty(); }
130 if (!canRedo())
267 HRESULT STDMETHODCALLTYPE UIDelegate::canRedo(
273 *result = m_undoManager->canRedo();
  /external/webkit/WebKit/win/Interfaces/
IWebUndoManager.idl 48 - (BOOL)canRedo
50 HRESULT canRedo([out, retval] BOOL* result);
  /external/webkit/WebCore/editing/
Editor.h 234 bool canRedo();
  /external/webkit/WebKitTools/WinLauncher/
PrintWebUIDelegate.h 88 virtual HRESULT STDMETHODCALLTYPE canRedo(BOOL*) { return E_NOTIMPL; }
  /external/webkit/WebCore/loader/
EmptyClients.h 377 virtual bool canRedo() const { return false; }
  /external/webkit/WebKit/wx/
WebFrame.cpp 286 if (m_impl->frame && m_impl->frame->editor() && CanRedo())
298 bool wxWebFrame::CanRedo()
301 return m_impl->frame->editor()->canRedo();

Completed in 272 milliseconds

1 2