OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CanFocus
(Results
1 - 25
of
26
) sorted by null
1
2
/external/chromium_org/ui/aura/
window_delegate.h
62
virtual bool
CanFocus
() = 0;
window.h
325
virtual bool
CanFocus
() const;
window.cc
778
bool Window::
CanFocus
() const {
785
if (!parent_ || (delegate_ && !delegate_->
CanFocus
()))
794
return parent_->
CanFocus
();
[
all
...]
/external/chromium_org/content/browser/web_contents/aura/
image_window_delegate.cc
60
bool ImageWindowDelegate::
CanFocus
() {
image_window_delegate.h
36
virtual bool
CanFocus
() OVERRIDE;
/external/chromium_org/ui/aura/test/
test_focus_client.cc
34
if (window && !window->
CanFocus
())
test_window_delegate.h
41
// Sets the return value for
CanFocus
(). Default is true.
54
virtual bool
CanFocus
() OVERRIDE;
test_window_delegate.cc
67
bool TestWindowDelegate::
CanFocus
() {
/external/chromium_org/ui/views/corewm/
base_focus_rules.cc
75
if (!window->
CanFocus
())
92
return window->
CanFocus
();
compound_event_filter_unittest.cc
163
EXPECT_TRUE(window->
CanFocus
());
/external/chromium_org/ui/oak/
oak_aura_window_display.cc
145
return PropertyWithBool("Can Focus: ", window_->
CanFocus
());
/external/chromium_org/ui/aura/demo/
demo_main.cc
60
virtual bool
CanFocus
() OVERRIDE { return true; }
/external/chromium_org/content/browser/web_contents/
web_contents_view_aura.h
164
virtual bool
CanFocus
() OVERRIDE;
web_contents_view_aura.cc
[
all
...]
/external/chromium_org/ui/keyboard/
keyboard_controller.cc
68
virtual bool
CanFocus
() OVERRIDE { return false; }
/external/chromium_org/ui/views/widget/
native_widget_aura.h
150
virtual bool
CanFocus
() OVERRIDE;
native_widget_aura.cc
757
bool NativeWidgetAura::
CanFocus
() {
[
all
...]
/external/chromium_org/ash/display/
mirror_window_controller.cc
106
virtual bool
CanFocus
() OVERRIDE {
/external/chromium_org/ui/views/widget/desktop_aura/
desktop_native_widget_aura.h
182
virtual bool
CanFocus
() OVERRIDE;
desktop_native_widget_aura.cc
891
bool DesktopNativeWidgetAura::
CanFocus
() {
[
all
...]
/external/chromium_org/ash/wm/
window_manager_unittest.cc
113
virtual bool
CanFocus
() OVERRIDE {
364
EXPECT_FALSE(w11->
CanFocus
());
/external/chromium_org/ash/drag_drop/
drag_drop_controller.cc
109
virtual bool
CanFocus
() OVERRIDE { return true; }
/external/chromium_org/content/browser/renderer_host/
render_widget_host_view_aura.h
303
virtual bool
CanFocus
() OVERRIDE;
[
all
...]
/external/chromium_org/ash/
root_window_controller.cc
189
virtual bool
CanFocus
() OVERRIDE {
[
all
...]
root_window_controller_unittest.cc
74
virtual bool
CanFocus
() OVERRIDE {
Completed in 818 milliseconds
1
2