HomeSort by relevance Sort by last modified time
    Searched refs:run_count (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/base/
bind_helpers_unittest.cc 18 int run_count = 0; local
20 base::ScopedClosureRunner runner(base::Bind(&Increment, &run_count));
21 EXPECT_EQ(0, run_count);
23 EXPECT_EQ(1, run_count);
27 int run_count = 0; local
30 base::ScopedClosureRunner runner(base::Bind(&Increment, &run_count));
32 EXPECT_EQ(0, run_count);
34 EXPECT_EQ(0, run_count);
36 EXPECT_EQ(1, run_count);
  /bootable/recovery/minui/
mkfont.c 10 unsigned run_count; local
28 run_count = 1;
35 if((val == run_val) && (run_count < 127)) {
36 run_count++;
39 printf("0x%02x,",run_count | (run_val ? 0x80 : 0x00));
41 run_count = 1;
49 printf("0x%02x,",run_count | (run_val ? 0x80 : 0x00));
  /external/chromium_org/ppapi/shared_impl/
tracked_callback_unittest.cc 47 : run_count(0),
51 unsigned run_count; member in struct:ppapi::__anon11938::CallbackRunInfo
59 info->run_count++;
60 if (info->run_count == 1)
95 EXPECT_EQ(0U, info_did_run().run_count);
99 EXPECT_EQ(0U, info_did_run().run_count);
101 EXPECT_EQ(1U, info_did_run().run_count);
105 EXPECT_EQ(0U, info_did_abort().run_count);
109 EXPECT_EQ(0U, info_did_abort().run_count);
111 EXPECT_EQ(1U, info_did_abort().run_count);
    [all...]
  /system/core/toolbox/
schedtop.c 23 uint32_t run_count; member in struct:thread_info
113 if(sscanf(line, "%llu %llu %u", &info->exec_time, &info->delay_time, &info->run_count) != 3)
118 proc_info->run_count += info->run_count;
185 else if (!(flags & FLAG_HIDE_IDLE) || threads.data[j].run_count - last_threads.data[i].run_count)
189 threads.data[j].run_count - last_threads.data[i].run_count,
191 threads.data[j].run_count, threads.data[j].name);
209 proc_info->run_count = 0
    [all...]
  /external/chromium_org/tools/playback_benchmark/
playback_driver.py 16 var runCount = $run_count;
102 run_count = 1
103 if 'run_count' in query:
104 run_count = query['run_count'][0]
105 self._StartTest(handler, self.test_dir, run_count)
113 def _StartTest(self, handler, test_dir, run_count):
142 run_count=run_count, target_origin=target_origin,
  /external/chromium_org/tools/dromaeo_benchmark_runner/
dromaeo_benchmark_runner.py 58 parser.add_option("-n", "--run_count", dest="run_count", type="int",
144 def PrepareSpreadsheet(self, run_count):
147 Calculate column count corresponding to run_count and create worksheet
153 self.columns_count = (run_count + 2) * len(test_props)
163 def WriteColumnTitles(self, run_count):
168 for i in xrange(run_count):
234 spreadsheet_writer.PrepareSpreadsheet(options.run_count)
235 spreadsheet_writer.WriteColumnTitles(options.run_count)
241 for run_number in xrange(options.run_count)
    [all...]
  /external/linux-tools-perf/
builtin-stat.c 183 static int run_count = 1; variable
527 if (run_count == 1)
974 if (run_count > 1)
975 fprintf(stderr, " (%d runs)", run_count);
992 if (run_count > 1) {
1053 OPT_INTEGER('r', "repeat", &run_count,
1176 if (run_count <= 0)
1229 for (run_idx = 0; run_idx < run_count; run_idx++) {
1230 if (run_count != 1 && verbose)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/performance_tests/
perftestsrunner.py 183 run_count = 0
185 while (run_count < repeat):
186 run_count += 1
189 runs = ' (Run %d of %d)' % (run_count, repeat) if repeat > 1 else ''
  /external/chromium_org/content/browser/
plugin_loader_posix_unittest.cc 59 void VerifyCallback(int* run_count, const std::vector<WebPluginInfo>&) {
60 ++(*run_count);
  /external/chromium_org/chromeos/network/
network_configuration_handler_unittest.cc 82 int run_count() const { return run_count_; } function in class:chromeos::__anon9713::TestCallback
375 EXPECT_EQ(1, test_callback.run_count());

Completed in 493 milliseconds