OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:kUnselectedIndex
(Results
1 - 4
of
4
) sorted by null
/external/chromium/chrome/browser/tabs/
tab_strip_selection_model.h
26
static const int
kUnselectedIndex
;
87
// Sets the anchor and active to
kUnselectedIndex
, and removes all the
tab_strip_selection_model.cc
13
const int TabStripSelectionModel::
kUnselectedIndex
= -1;
22
*value = TabStripSelectionModel::
kUnselectedIndex
;
31
: active_(
kUnselectedIndex
),
32
anchor_(
kUnselectedIndex
) {
85
if (anchor_ ==
kUnselectedIndex
) {
98
if (anchor_ ==
kUnselectedIndex
) {
132
anchor_ = active_ =
kUnselectedIndex
;
/external/chromium_org/ui/base/models/
list_selection_model.h
29
static const int
kUnselectedIndex
;
90
// Sets the anchor and active to
kUnselectedIndex
, and removes all the
list_selection_model.cc
15
const int ListSelectionModel::
kUnselectedIndex
= -1;
24
*value = ListSelectionModel::
kUnselectedIndex
;
33
: active_(
kUnselectedIndex
),
34
anchor_(
kUnselectedIndex
) {
65
if (index !=
kUnselectedIndex
)
89
if (anchor_ ==
kUnselectedIndex
) {
102
if (anchor_ ==
kUnselectedIndex
) {
136
anchor_ = active_ =
kUnselectedIndex
;
Completed in 250 milliseconds