Home
last modified time | relevance | path

Searched refs:current_index (Results 1 – 9 of 9) sorted by relevance

/external/v8/src/
Dd8-readline.cc135 static unsigned current_index; in CompletionGenerator() local
143 current_index = 0; in CompletionGenerator()
145 if (current_index < current_completions->Length()) { in CompletionGenerator()
147 Handle<Integer> index = Integer::New(current_index); in CompletionGenerator()
149 current_index++; in CompletionGenerator()
Dliveedit-debugger.js276 var current_index = 0;
282 while (current_index < compile_info.length &&
283 compile_info[current_index].outer_index == old_parent_index) {
284 var saved_index = current_index;
290 current_index++;
299 Assert(current_index == compile_info.length);
Dobjects.cc4237 int current_index = descs->GetFieldIndex(i); in NextFreePropertyIndex() local
4238 if (current_index > max_index) max_index = current_index; in NextFreePropertyIndex()
Dhydrogen.cc3412 HValue* current_index = Pop(); in VisitForInStatement() local
3414 current_index, in VisitForInStatement()
/external/qemu/distrib/sdl-1.2.12/src/video/fbcon/
DSDL_fbvideo.c490 int current_index; in FB_VideoInit() local
625 current_index = ((vinfo.bits_per_pixel+7)/8)-1; in FB_VideoInit()
632 FB_AddMode(this, current_index, current_w, current_h, 0); in FB_VideoInit()
641 if ( i == current_index ) { in FB_VideoInit()
645 current_index = -1; in FB_VideoInit()
663 if ( i == current_index ) { in FB_VideoInit()
667 current_index = -1; in FB_VideoInit()
/external/chromium/chrome/browser/sync/glue/
Dsession_model_associator.cc264 const int current_index = tab.controller().GetCurrentEntryIndex(); in WriteTabContentsToSyncModel() local
266 current_index - max_sync_navigation_count); in WriteTabContentsToSyncModel()
267 const int max_index = std::min(current_index + max_sync_navigation_count, in WriteTabContentsToSyncModel()
295 tab_s->set_current_navigation_index(current_index); in WriteTabContentsToSyncModel()
/external/chromium/chrome/browser/history/
Dtop_sites.cc432 int current_index; in GetPinnedURLAtIndex() local
433 if (pinned_urls_->GetIntegerWithoutPathExpansion(*it, &current_index)) { in GetPinnedURLAtIndex()
434 if (static_cast<size_t>(current_index) == index) { in GetPinnedURLAtIndex()
/external/chromium/chrome/browser/sessions/
Dsession_service.cc1067 const int current_index = controller->GetCurrentEntryIndex(); in BuildCommandsForTab() local
1069 current_index - max_persist_navigation_count); in BuildCommandsForTab()
1070 const int max_index = std::min(current_index + max_persist_navigation_count, in BuildCommandsForTab()
1105 current_index)); in BuildCommandsForTab()
/external/chromium/chrome/browser/ui/
Dbrowser.cc860 size_t current_index = 0; in FormatTitleForDisplay() local
862 while ((match_index = title->find(L'\n', current_index)) != string16::npos) { in FormatTitleForDisplay()
864 current_index = match_index; in FormatTitleForDisplay()