OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:shoulddeleterange
(Results
1 - 25
of
29
) sorted by null
1
2
/external/webkit/WebKit/android/WebCoreSupport/
EditorClientAndroid.h
44
virtual bool
shouldDeleteRange
(Range*);
EditorClientAndroid.cpp
48
bool EditorClientAndroid::
shouldDeleteRange
(Range*) { return true; }
/external/webkit/WebKit/haiku/WebCoreSupport/
EditorClientHaiku.h
50
virtual bool
shouldDeleteRange
(Range*);
EditorClientHaiku.cpp
65
bool EditorClientHaiku::
shouldDeleteRange
(Range*)
/external/webkit/WebKit/qt/WebCoreSupport/
EditorClientQt.h
48
virtual bool
shouldDeleteRange
(Range*);
EditorClientQt.cpp
104
bool EditorClientQt::
shouldDeleteRange
(Range* range)
/external/webkit/WebKit/win/WebCoreSupport/
WebEditorClient.h
67
bool
shouldDeleteRange
(WebCore::Range*);
WebEditorClient.cpp
235
bool WebEditorClient::
shouldDeleteRange
(Range* /*range*/)
/external/webkit/WebKit/wx/WebKitSupport/
EditorClientWx.h
48
virtual bool
shouldDeleteRange
(Range*);
EditorClientWx.cpp
143
bool EditorClientWx::
shouldDeleteRange
(Range*)
/external/webkit/WebCore/page/
EditorClient.h
87
virtual bool
shouldDeleteRange
(Range*) = 0;
Frame.cpp
854
return editor()->client()->
shouldDeleteRange
(selection.toNormalizedRange().get());
[
all
...]
/external/webkit/WebKit/gtk/WebCoreSupport/
EditorClientGtk.h
60
virtual bool
shouldDeleteRange
(WebCore::Range*);
EditorClientGtk.cpp
107
bool EditorClient::
shouldDeleteRange
(Range*)
/external/webkit/WebKit/mac/WebCoreSupport/
WebEditorClient.h
54
virtual bool
shouldDeleteRange
(WebCore::Range*);
WebEditorClient.mm
210
bool WebEditorClient::
shouldDeleteRange
(Range* range)
/external/webkit/WebCore/editing/
Editor.h
110
bool
shouldDeleteRange
(Range*) const;
Editor.cpp
327
bool Editor::
shouldDeleteRange
(Range* range) const
336
return client() && client()->
shouldDeleteRange
(range);
[
all
...]
CompositeEditCommand.cpp
[
all
...]
/external/webkit/WebKit/chromium/src/
EditorClientImpl.h
65
virtual bool
shouldDeleteRange
(WebCore::Range*);
EditorClientImpl.cpp
223
bool EditorClientImpl::
shouldDeleteRange
(Range* range)
226
return m_webView->client()->
shouldDeleteRange
(WebRange(range));
[
all
...]
/external/webkit/WebCore/loader/
EmptyClients.h
337
virtual bool
shouldDeleteRange
(Range*) { return false; }
/external/webkit/WebKit/chromium/public/
WebViewClient.h
117
virtual bool
shouldDeleteRange
(const WebRange&) { return true; }
/external/webkit/WebKit/
ChangeLog
788
(WebCore::EditorClientHaiku::
shouldDeleteRange
):
[
all
...]
/external/webkit/WebCore/
ChangeLog-2006-12-31
626
(WebCore::SVGEmptyEditorClient::
shouldDeleteRange
):
[
all
...]
Completed in 2795 milliseconds
1
2