OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:HitTestRect
(Results
1 - 16
of
16
) sorted by null
/external/chromium_org/chrome/browser/ui/views/
avatar_menu_button.cc
79
bool AvatarMenuButton::
HitTestRect
(const gfx::Rect& rect) const {
82
return views::MenuButton::
HitTestRect
(rect);
avatar_menu_bubble_view.cc
205
virtual bool
HitTestRect
(const gfx::Rect& rect) const OVERRIDE;
208
bool ProfileImageView::
HitTestRect
(const gfx::Rect& rect) const {
/external/chromium_org/ui/views/controls/
image_view.cc
196
bool ImageView::
HitTestRect
(const gfx::Rect& rect) const {
197
return interactive_ ? View::
HitTestRect
(rect) : false;
link.cc
85
bool Link::
HitTestRect
(const gfx::Rect& rect) const {
88
return View::
HitTestRect
(rect);
label.cc
269
// Label::
HitTestRect
() to determine if the point hits the label; and
270
// Label::
HitTestRect
() always fails. Instead, default
HitTestRect
()
272
if (!View::
HitTestRect
(gfx::Rect(point, gfx::Size(1, 1))))
281
bool Label::
HitTestRect
(const gfx::Rect& rect) const {
/external/chromium_org/ui/views/window/
non_client_view.cc
208
if (frame_view_->
HitTestRect
(rect_in_child_coords))
295
bool NonClientFrameView::
HitTestRect
(const gfx::Rect& rect) const {
/external/chromium_org/ui/app_list/views/
speech_view.cc
75
virtual bool
HitTestRect
(const gfx::Rect& rect) const OVERRIDE;
85
bool MicButton::
HitTestRect
(const gfx::Rect& rect) const {
86
if (!views::ImageButton::
HitTestRect
(rect))
/external/chromium_org/ui/message_center/views/
bounded_label.cc
324
bool BoundedLabel::
HitTestRect
(const gfx::Rect& rect) const {
325
return label_->
HitTestRect
(rect);
/external/chromium_org/ash/wm/
custom_frame_view_ash.cc
351
virtual bool
HitTestRect
(const gfx::Rect& rect) const OVERRIDE;
378
bool CustomFrameViewAsh::OverlayView::
HitTestRect
(const gfx::Rect& rect) const {
381
return header_view_->
HitTestRect
(rect);
485
bool CustomFrameViewAsh::
HitTestRect
(const gfx::Rect& rect) const {
/external/chromium_org/chrome/browser/ui/views/frame/
browser_non_client_frame_view_ash.cc
288
bool BrowserNonClientFrameViewAsh::
HitTestRect
(const gfx::Rect& rect) const {
289
if (!views::View::
HitTestRect
(rect)) {
306
return !tabstrip->
HitTestRect
(rect_in_tabstrip_coords) ||
glass_browser_frame_view.cc
277
bool GlassBrowserFrameView::
HitTestRect
(const gfx::Rect& rect) const {
opaque_browser_frame_view.cc
290
bool OpaqueBrowserFrameView::
HitTestRect
(const gfx::Rect& rect) const {
291
if (!views::View::
HitTestRect
(rect)) {
302
if (!frame()->client_view()->
HitTestRect
(rect_in_client_view_coords))
320
if (tabstrip->
HitTestRect
(rect_in_tabstrip_coords)) {
336
if (window_switcher_button->
HitTestRect
(rect_in_window_switcher_coords))
[
all
...]
/external/chromium_org/ash/shelf/
shelf_button.cc
138
virtual bool
HitTestRect
(const gfx::Rect& rect) const OVERRIDE {
215
bool ShelfButton::IconView::
HitTestRect
(const gfx::Rect& rect) const {
/external/chromium_org/chrome/browser/ui/views/toolbar/
toolbar_view.cc
628
bool ToolbarView::
HitTestRect
(const gfx::Rect& rect) const {
635
return AccessiblePaneView::
HitTestRect
(rect);
/external/chromium_org/chrome/browser/ui/views/bookmarks/
bookmark_bar_view.cc
672
bool BookmarkBarView::
HitTestRect
(const gfx::Rect& rect) const {
682
return DetachableToolbarView::
HitTestRect
(rect);
[
all
...]
/external/chromium_org/ui/views/
view.cc
862
if (!child->
HitTestRect
(rect_in_child_coords))
947
return
HitTestRect
(gfx::Rect(point, gfx::Size(1, 1)));
950
bool View::
HitTestRect
(const gfx::Rect& rect) const {
[
all
...]
Completed in 166 milliseconds