Home
last modified time | relevance | path

Searched refs:cursor_lock_count_ (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/ui/views/corewm/
Dcursor_manager.cc83 cursor_lock_count_(0), in CursorManager()
93 if (cursor_lock_count_ == 0 && in SetCursor()
105 if (cursor_lock_count_ == 0 && in ShowCursor()
115 if (cursor_lock_count_ == 0 && in HideCursor()
149 if (cursor_lock_count_ == 0 && in EnableMouseEvents()
158 if (cursor_lock_count_ == 0 && in DisableMouseEvents()
174 cursor_lock_count_++; in LockCursor()
178 cursor_lock_count_--; in UnlockCursor()
179 DCHECK_GE(cursor_lock_count_, 0); in UnlockCursor()
180 if (cursor_lock_count_ > 0) in UnlockCursor()
[all …]
Dcursor_manager.h76 int cursor_lock_count_; variable
/external/chromium_org/ui/aura/test/
Dtest_cursor_client.cc15 cursor_lock_count_(0), in TestCursorClient()
77 cursor_lock_count_++; in LockCursor()
81 cursor_lock_count_--; in UnlockCursor()
82 if (cursor_lock_count_ < 0) in UnlockCursor()
83 cursor_lock_count_ = 0; in UnlockCursor()
87 return cursor_lock_count_ > 0; in IsCursorLocked()
Dtest_cursor_client.h46 int cursor_lock_count_; variable