HomeSort by relevance Sort by last modified time
    Searched defs:kUnselectedIndex (Results 1 - 2 of 2) sorted by null

  /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 569 milliseconds