OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:start_from
(Results
1 - 7
of
7
) sorted by null
/external/chromium/chrome/browser/ui/toolbar/
back_forward_menu_model.cc
326
int BackForwardMenuModel::GetIndexOfNextChapterStop(int
start_from
,
332
if (
start_from
< 0 ||
start_from
>= max_count)
336
if (
start_from
< max_count - 1) {
339
start_from
++;
345
NavigationEntry* start_entry = controller.GetEntryAtIndex(
start_from
);
351
for (int i =
start_from
- 1; i >= 0; --i) {
361
for (int i =
start_from
+ 1; i < max_count; ++i) {
back_forward_menu_model.h
115
// the index specified in |
start_from
| and continuing in the direction
117
// end, in which case -1 is returned. If |
start_from
| is out of bounds, -1
124
int GetIndexOfNextChapterStop(int
start_from
, bool forward) const;
/external/chromium_org/chrome/browser/ui/toolbar/
back_forward_menu_model.cc
346
int BackForwardMenuModel::GetIndexOfNextChapterStop(int
start_from
,
352
if (
start_from
< 0 ||
start_from
>= max_count)
356
if (
start_from
< max_count - 1) {
359
start_from
++;
365
NavigationEntry* start_entry = controller.GetEntryAtIndex(
start_from
);
371
for (int i =
start_from
- 1; i >= 0; --i) {
382
for (int i =
start_from
+ 1; i < max_count; ++i) {
back_forward_menu_model.h
130
// the index specified in |
start_from
| and continuing in the direction
132
// end, in which case -1 is returned. If |
start_from
| is out of bounds, -1
139
int GetIndexOfNextChapterStop(int
start_from
, bool forward) const;
/external/chromium/chrome/browser/chromeos/input_method/
candidate_window.cc
259
const size_t
start_from
= current_page_index * lookup_table.page_size;
local
263
for (size_t i = 0; i +
start_from
< lookup_table.candidates.size(); ++i) {
264
const size_t index =
start_from
+ i;
287
const size_t
start_from
= current_page_index * lookup_table.page_size;
local
291
for (size_t i = 0; i +
start_from
< lookup_table.annotations.size(); ++i) {
292
const size_t index =
start_from
+ i;
914
const size_t
start_from
= current_page_index * new_lookup_table.page_size;
local
[
all
...]
/external/chromium_org/chrome/browser/chromeos/input_method/
candidate_window_view.cc
237
const size_t
start_from
= current_page_index * candidate_window.page_size();
local
243
i +
start_from
< candidate_window.candidates().size();
245
const size_t index =
start_from
+ i;
271
const size_t
start_from
= current_page_index * candidate_window.page_size();
local
277
i +
start_from
< candidate_window.candidates().size();
279
const size_t index =
start_from
+ i;
714
const size_t
start_from
=
local
730
const size_t candidate_index =
start_from
+ index_in_page;
[
all
...]
/external/chromium/chrome/browser/chromeos/
wm_overview_controller.cc
103
// the snapshot whose index is given by |
start_from
|; When |
start_from
| is
106
// are no more tab contents (after |
start_from
|) to configure on this
108
int ConfigureNextUnconfiguredSnapshot(int
start_from
);
293
int BrowserListener::ConfigureNextUnconfiguredSnapshot(int
start_from
) {
294
for (SnapshotVector::size_type i =
start_from
+ 1;
Completed in 99 milliseconds