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

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

Completed in 321 milliseconds