HomeSort by relevance Sort by last modified time
    Searched defs:counter (Results 201 - 225 of 508) sorted by null

1 2 3 4 5 6 7 891011>>

  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
ContentHandlerFactoryTest.java 93 int counter = 0; local
96 counter++;
101 if(counter == 1) {
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
set_operations.h 110 difference_type counter = 0; local
117 ++counter;
122 ++counter;
131 return counter + (b - a) + (d - c);
184 difference_type counter = 0; local
191 ++counter;
199 return counter + (b - a);
251 difference_type counter = 0; local
263 ++counter;
267 return counter;
320 difference_type counter = 0; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_abc.py 201 counter = 0 variable in class:TestABC.test_all_new_methods_are_called.B
203 B.counter += 1
207 self.assertEqual(B.counter, 0)
209 self.assertEqual(B.counter, 1)
test_shelve.py 109 counter = 0 variable in class:TestShelveBase
120 self.counter+=1
121 x= shelve.open(self.fn+str(self.counter), **self._args)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_abc.py 201 counter = 0 variable in class:TestABC.test_all_new_methods_are_called.B
203 B.counter += 1
207 self.assertEqual(B.counter, 0)
209 self.assertEqual(B.counter, 1)
test_shelve.py 109 counter = 0 variable in class:TestShelveBase
120 self.counter+=1
121 x= shelve.open(self.fn+str(self.counter), **self._args)
  /packages/apps/Music/src/com/android/music/
PlaylistBrowserActivity.java 526 Cursor counter = MusicUtils.query(this, MediaStore.Audio.Media.EXTERNAL_CONTENT_URI, local
528 if (counter != null) {
529 counter.moveToFirst();
530 int numpodcasts = counter.getInt(0);
531 counter.close();
  /external/chromium/chrome/browser/chromeos/cros/
cryptohome_library.cc 359 static int counter = 0; local
360 return ++counter > 20;
  /external/chromium/chrome/browser/net/websocket_experiment/
websocket_experiment_task.cc 173 Histogram* counter = LinearHistogram::FactoryGet( local
176 g_histogram_table->insert(std::make_pair(counter_name, counter));
177 return counter;
193 Histogram* counter = Histogram::FactoryTimeGet( local
196 g_histogram_table->insert(std::make_pair(counter_name, counter));
197 return counter;
205 Histogram* counter = GetEnumsHistogramForConfig(config, name, boundary_value); local
206 counter->Add(sample);
216 Histogram* counter = GetTimesHistogramForConfig( local
218 counter->AddTime(sample)
    [all...]
  /external/chromium/net/base/
mime_sniffer.cc 214 base::Histogram* counter = local
217 return counter;
269 base::Histogram* counter,
273 if (counter) counter->Add(static_cast<int>(i));
311 static base::Histogram* counter(NULL);
312 if (!counter)
313 counter = UMASnifferHistogramGet("mime_sniffer.kSniffableTags2",
318 counter, result);
330 static base::Histogram* counter(NULL)
    [all...]
  /external/chromium/webkit/glue/
webkitclient_impl.cc 267 base::Histogram* counter = local
270 DCHECK_EQ(name, counter->histogram_name());
271 counter->Add(sample);
278 base::Histogram* counter = local
281 DCHECK_EQ(name, counter->histogram_name());
282 counter->Add(sample);
  /external/chromium_org/chrome/browser/autocomplete/
autocomplete_controller.cc 252 base::HistogramBase* counter = base::Histogram::FactoryGet( local
254 counter->Add(static_cast<int>(
262 base::HistogramBase* counter = base::Histogram::FactoryGet( local
264 counter->Add(static_cast<int>((end_time - start_time).InMilliseconds()));
  /external/chromium_org/chrome/browser/chromeos/
external_metrics.cc 242 base::HistogramBase* counter = base::Histogram::FactoryGet( local
244 counter->Add(sample);
263 base::HistogramBase* counter = base::LinearHistogram::FactoryGet( local
265 counter->Add(sample);
279 base::HistogramBase* counter = base::SparseHistogram::FactoryGet( local
281 counter->Add(sample);
swap_metrics.cc 227 base::HistogramBase* counter = local
233 counter->Add(faults);
248 base::HistogramBase* counter = base::LinearHistogram::FactoryGet( local
254 counter->Add(cpu);
  /external/chromium_org/content/public/test/
test_file_error_injector.cc 233 int counter = operation_counter_[code]++; local
238 if (counter != error_info_.operation_instance)
  /external/chromium_org/remoting/protocol/
jingle_session_unittest.cc 60 ACTION_P(QuitThreadOnCounter, counter) {
61 --(*counter);
62 EXPECT_GE(*counter, 0);
63 if (*counter == 0)
239 int counter = 2; local
242 .WillOnce(QuitThreadOnCounter(&counter));
244 .WillOnce(QuitThreadOnCounter(&counter));
376 int counter = 2; local
379 .WillOnce(QuitThreadOnCounter(&counter));
381 .WillOnce(QuitThreadOnCounter(&counter));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorStyleSheet.cpp 145 UseCounter* counter = 0; local
146 return adoptPtr(new CSSParser(document ? CSSParserContext(document) : strictCSSParserContext(), counter));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebPageNewSerializerTest.cpp 89 LengthCountingWebPageSerializerClient(size_t* counter)
90 : m_counter(counter)
381 size_t counter = 0; local
382 LengthCountingWebPageSerializerClient client(&counter);
389 EXPECT_GT(counter, 0U);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
display-profiler-output 354 counter = ExecutionCounter.new(origin, @engine, subJson["executionCount"].to_i)
355 @counters[origin] = counter
356 origin[-1].addTopCount(counter)
357 origin[0].addBottomCountForCompilation(counter, self)
385 def counter(origin) method in class:Compilation
868 actualCountsString = compilation.counter(description.origin).count.to_s
  /external/chromium_org/third_party/freetype/include/freetype/internal/
pshints.h 191 * counter-controlled horizontal or vertical stems at once.
202 * pairs for the counter-controlled stems.
209 * counter-controlled).
333 * The function to set counter-controlled stems.
520 * A method of the @T2_Hints class used to set a given counter mask
649 * counter ::
650 * The function to set counter masks.
663 T2_Hints_CounterFunc counter; member in struct:T2_Hints_FuncsRec_
  /external/chromium_org/third_party/icu/source/test/intltest/
tufmtts.cpp 254 int counter = 0; local
309 u_strToUTF8(tmp1, 128, &len, expected[counter].unescape().getTerminatedBuffer(), expected[counter].unescape().length(), &status);
312 if (!assertEquals("formatted time string is not expected, locale: " + UnicodeString(locales[locIndex]) + " style: " + (int)styles[styleIndex] + " units: " + (int)tunits[unitIndex], expected[counter], str)) {
319 ++counter;
  /external/chromium_org/third_party/leveldatabase/src/db/
repair.cc 202 int counter = 0; local
212 counter += WriteBatchInternal::Count(&batch);
238 counter,
264 int counter = 0; local
281 counter++;
298 counter,
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_pipe_stipple.c 50 float counter; member in struct:stipple_stage
112 stipple_test(int counter, ushort pattern, int factor)
114 int b = (counter / factor) & 0xf;
143 stipple->counter = 0;
149 int result = stipple_test( (int) stipple->counter+i,
170 stipple->counter += length;
178 stipple->counter = 0;
186 stipple->counter = 0;
194 stipple->counter = 0;
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/os/
os_thread.h 398 int counter; member in struct:__anon14452
407 sema->counter = init_val;
417 /** Signal/increment semaphore counter */
422 sema->counter++;
427 /** Wait for semaphore counter to be greater than zero */
432 while (sema->counter <= 0) {
435 sema->counter--;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_emulate_loops.c 127 /* XXX: Give up if the counter is modified within an IF block. We
134 /* Find the index of the counter register. */
192 struct rc_src_register * counter; local
197 /* Find the counter and the upper limit */
202 counter = &loop->Cond->U.I.SrcReg[1];
207 counter = &loop->Cond->U.I.SrcReg[0];
214 /* Find the initial value of the counter */
215 counter_value.Src = counter;
224 DBG("Initial counter value cannot be determined.\n");
227 DBG("Initial counter value is %f\n", counter_value.Value)
    [all...]

Completed in 706 milliseconds

1 2 3 4 5 6 7 891011>>