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

/external/chromium_org/third_party/sqlite/src/src/
H A Dtest5.c64 int repeat_count; local
75 if( Tcl_GetIntFromObj(interp, objv[1], &repeat_count) ) return TCL_ERROR;
83 for(i=0; i<repeat_count; i++){
/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/chromium_org/base/threading/
H A Dsimple_thread.cc123 void DelegateSimpleThreadPool::AddWork(Delegate* delegate, int repeat_count) { argument
125 for (int i = 0; i < repeat_count; ++i)
H A Dsimple_thread.h171 void AddWork(Delegate* work, int repeat_count);
/external/chromium_org/ui/aura/
H A Dremote_root_window_host_win.cc540 uint32 repeat_count,
543 DispatchKeyboardMessage(ui::ET_KEY_PRESSED, vkey, repeat_count, scan_code,
548 uint32 repeat_count,
551 DispatchKeyboardMessage(ui::ET_KEY_RELEASED, vkey, repeat_count, scan_code,
556 uint32 repeat_count,
559 DispatchKeyboardMessage(ui::ET_KEY_PRESSED, key_code, repeat_count,
698 uint32 repeat_count,
715 repeat_count | scan_code >> 15);
539 OnKeyDown(uint32 vkey, uint32 repeat_count, uint32 scan_code, uint32 flags) argument
547 OnKeyUp(uint32 vkey, uint32 repeat_count, uint32 scan_code, uint32 flags) argument
555 OnChar(uint32 key_code, uint32 repeat_count, uint32 scan_code, uint32 flags) argument
696 DispatchKeyboardMessage(ui::EventType type, uint32 vkey, uint32 repeat_count, uint32 scan_code, uint32 flags, bool is_character) argument
H A Dremote_root_window_host_win.h175 uint32 repeat_count,
179 uint32 repeat_count,
183 uint32 repeat_count,
246 uint32 repeat_count,
/external/chromium_org/chrome/browser/captive_portal/
H A Dcaptive_portal_service.cc34 // |repeat_count| may be 0 if there were no captive portal checks during
41 int repeat_count,
55 result_repeated_histogram->Add(repeat_count);
57 if (repeat_count == 0)
40 RecordRepeatHistograms(Result result, int repeat_count, base::TimeDelta result_duration) argument
/external/chromium_org/cc/resources/
H A Dpicture_pile.cc226 int repeat_count = std::max(1, slow_down_raster_scale_factor_for_debug_); local
232 for (int i = 0; i < repeat_count; i++) {
H A Dpicture_pile_impl.cc252 int repeat_count = std::max(1, slow_down_raster_scale_factor_for_debug_); local
255 for (int j = 0; j < repeat_count; ++j) {
/external/chromium_org/media/cast/net/pacing/
H A Dpaced_sender_unittest.cc40 void AddExpectedSize(int expected_packet_size, int repeat_count) { argument
41 for (int i = 0; i < repeat_count; ++i) {
/external/chromium_org/third_party/ots/src/
H A Dwoff2.cc283 int repeat_count = 0; local
311 if (flag == last_flag && repeat_count != 255) {
313 repeat_count++;
315 if (repeat_count != 0) {
319 dst[flag_offset++] = repeat_count;
325 repeat_count = 0;
332 if (repeat_count != 0) {
336 dst[flag_offset++] = repeat_count;
/external/chromium_org/courgette/
H A Dcourgette_tool.cc457 int repeat_count = 1; local
460 if (!base::StringToInt(repeat_switch, &repeat_count))
461 repeat_count = 1;
472 while (repeat_count-- > 0) {
/external/chromium_org/v8/src/
H A Dserialize.cc1639 int repeat_count = 1; local
1640 while (current < end - 1 && current[repeat_count] == current_contents) {
1641 repeat_count++;
1643 current += repeat_count;
1644 bytes_processed_so_far_ += repeat_count * kPointerSize;
1645 if (repeat_count > kMaxRepeats) {
1647 sink_->PutInt(repeat_count, "SerializeRepeats");
1649 sink_->Put(CodeForRepeats(repeat_count), "SerializeRepeats");
/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");
/external/chromium_org/v8/test/cctest/
H A Dtest-cpu-profiler.cc631 int32_t repeat_count = 100; local
634 repeat_count = 1;
636 v8::Handle<v8::Value> args[] = { v8::Integer::New(repeat_count) };
755 int32_t repeat_count = 1; local
756 v8::Handle<v8::Value> args[] = { v8::Integer::New(repeat_count) };
810 int32_t repeat_count = 100; local
811 v8::Handle<v8::Value> args[] = { v8::Integer::New(repeat_count) };
862 int32_t repeat_count = 1; local
863 v8::Handle<v8::Value> args[] = { v8::Integer::New(repeat_count) };
915 int32_t repeat_count local
[all...]

Completed in 4207 milliseconds