Home
last modified time | relevance | path

Searched refs:repeat_count (Results 1 – 7 of 7) sorted by relevance

/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
Dregress-191633.js70 function repeat_str(str, repeat_count) argument
72 var arr = new Array(repeat_count);
74 while (repeat_count != 0)
75 arr[--repeat_count] = str;
Dregress-192414.js87 function repeat_str(str, repeat_count) argument
89 var arr = new Array(--repeat_count);
90 while (repeat_count != 0)
91 arr[--repeat_count] = str;
/external/chromium/chrome/browser/autocomplete/
Dautocomplete_edit_view_win.h278 void OnChar(TCHAR ch, UINT repeat_count, UINT flags);
284 void OnKeyDown(TCHAR key, UINT repeat_count, UINT flags);
285 void OnKeyUp(TCHAR key, UINT repeat_count, UINT flags);
303 void OnSysChar(TCHAR ch, UINT repeat_count, UINT flags);
308 void HandleKeystroke(UINT message, TCHAR key, UINT repeat_count, UINT flags);
313 bool OnKeyDownOnlyWritable(TCHAR key, UINT repeat_count, UINT flags);
314 bool OnKeyDownAllModes(TCHAR key, UINT repeat_count, UINT flags);
Dautocomplete_edit_view_win.cc1278 void AutocompleteEditViewWin::OnChar(TCHAR ch, UINT repeat_count, UINT flags) { in OnChar() argument
1296 HandleKeystroke(GetCurrentMessage()->message, ch, repeat_count, flags); in OnChar()
1380 UINT repeat_count, in OnKeyDown() argument
1384 if (OnKeyDownAllModes(key, repeat_count, flags)) in OnKeyDown()
1389 DefWindowProc(GetCurrentMessage()->message, key, MAKELPARAM(repeat_count, in OnKeyDown()
1394 if (OnKeyDownOnlyWritable(key, repeat_count, flags)) in OnKeyDown()
1399 HandleKeystroke(GetCurrentMessage()->message, key, repeat_count, flags); in OnKeyDown()
1403 UINT repeat_count, in OnKeyUp() argument
1426 DefWindowProc(WM_KEYUP, key, MAKELPARAM(repeat_count, flags)); in OnKeyUp()
1811 UINT repeat_count, in OnSysChar() argument
[all …]
/external/chromium/base/threading/
Dsimple_thread.cc116 void DelegateSimpleThreadPool::AddWork(Delegate* delegate, int repeat_count) { in AddWork() argument
118 for (int i = 0; i < repeat_count; ++i) in AddWork()
Dsimple_thread.h165 void AddWork(Delegate* work, int repeat_count);
/external/v8/src/
Dserialize.cc1476 int repeat_count = 1; in VisitPointers() local
1477 while (current < end - 1 && current[repeat_count] == current_contents) { in VisitPointers()
1478 repeat_count++; in VisitPointers()
1480 current += repeat_count; in VisitPointers()
1481 bytes_processed_so_far_ += repeat_count * kPointerSize; in VisitPointers()
1482 if (repeat_count > kMaxRepeats) { in VisitPointers()
1484 sink_->PutInt(repeat_count, "SerializeRepeats"); in VisitPointers()
1486 sink_->Put(CodeForRepeats(repeat_count), "SerializeRepeats"); in VisitPointers()