OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:total_pages_
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/ui/app_list/
pagination_model.cc
15
:
total_pages_
(-1),
28
if (total_pages ==
total_pages_
)
31
total_pages_
= total_pages;
34
if (selected_page_ >=
total_pages_
)
35
SelectPage(std::max(
total_pages_
- 1, 0), false /* animate */);
41
// -1 and |
total_pages_
| are valid target page for animation.
42
DCHECK(page >= -1 && page <=
total_pages_
);
85
DCHECK(
total_pages_
== 0 || (page >= 0 && page <
total_pages_
));
103
// -1 and |
total_pages_
| is a valid target page, which means user is a
[
all
...]
pagination_model.h
84
int total_pages() const { return
total_pages_
; }
89
return page >= 0 && page <
total_pages_
;
110
// -1 or |
total_pages_
| is returned to indicate the situation.
120
int
total_pages_
;
member in class:app_list::PaginationModel
Completed in 115 milliseconds