OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:canUndo
(Results
1 - 25
of
43
) sorted by null
1
2
/packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/
ActionBar.java
79
public void updateButtons(boolean
canUndo
, boolean canRedo) {
80
setViewEnabled(R.id.undo_button,
canUndo
);
82
setViewEnabled(R.id.save_button,
canUndo
);
PhotoEditor.java
53
public void onStackChanged(boolean
canUndo
, boolean canRedo) {
54
actionBar.updateButtons(
canUndo
, canRedo);
FilterStack.java
35
void onStackChanged(boolean
canUndo
, boolean canRedo);
125
final boolean
canUndo
= !appliedStack.empty();
131
stackListener.onStackChanged(
canUndo
, canRedo);
/external/webkit/Source/WebKit/android/WebCoreSupport/
EditorClientAndroid.h
90
virtual bool
canUndo
() const;
EditorClientAndroid.cpp
216
bool EditorClientAndroid::
canUndo
() const { return false; }
/external/webkit/Source/WebKit/efl/WebCoreSupport/
EditorClientEfl.h
87
virtual bool
canUndo
() const;
/external/webkit/Source/WebKit/haiku/WebCoreSupport/
EditorClientHaiku.h
84
virtual bool
canUndo
() const;
EditorClientHaiku.cpp
217
bool EditorClientHaiku::
canUndo
() const
/external/webkit/Source/WebKit/qt/WebCoreSupport/
EditorClientQt.h
84
virtual bool
canUndo
() const;
EditorClientQt.cpp
272
bool EditorClientQt::
canUndo
() const
277
return m_page->undoStack()->
canUndo
();
/external/webkit/Source/WebKit/wx/WebKitSupport/
EditorClientWx.h
86
virtual bool
canUndo
() const;
/external/webkit/Source/WebCore/page/
EditorClient.h
113
virtual bool
canUndo
() const = 0;
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
EditorClientGtk.h
113
virtual bool
canUndo
() const;
EditorClientGtk.cpp
514
bool EditorClient::
canUndo
() const
526
if (
canUndo
()) {
[
all
...]
/external/webkit/Source/WebKit/win/WebCoreSupport/
WebEditorClient.h
83
bool
canUndo
() const;
WebInspectorDelegate.h
240
virtual HRESULT STDMETHODCALLTYPE
canUndo
(
WebEditorClient.cpp
577
bool WebEditorClient::
canUndo
() const
582
uiDelegate->
canUndo
(&result);
/external/webkit/Source/WebKit/wince/WebCoreSupport/
EditorClientWinCE.h
74
virtual bool
canUndo
() const;
/external/webkit/Tools/DumpRenderTree/win/
UIDelegate.cpp
96
bool
canUndo
() { return !m_undoStack->isEmpty(); }
144
if (!
canUndo
())
261
HRESULT STDMETHODCALLTYPE UIDelegate::
canUndo
(
267
*result = m_undoManager->
canUndo
();
/external/webkit/Source/WebKit/chromium/src/
EditorClientImpl.h
84
virtual bool
canUndo
() const;
EditorClientImpl.cpp
333
bool EditorClientImpl::
canUndo
() const
345
if (
canUndo
()) {
[
all
...]
/external/webkit/Source/WebKit/mac/WebCoreSupport/
WebEditorClient.h
112
virtual bool
canUndo
() const;
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebEditorClient.h
80
virtual bool
canUndo
() const;
/external/webkit/Source/WebKit/win/Interfaces/
IWebUndoManager.idl
53
- (BOOL)
canUndo
55
HRESULT
canUndo
([out, retval] BOOL* result);
/external/webkit/Tools/WinLauncher/
PrintWebUIDelegate.h
87
virtual HRESULT STDMETHODCALLTYPE
canUndo
(BOOL*) { return E_NOTIMPL; }
Completed in 125 milliseconds
1
2