Searched refs:count (Results 1 - 25 of 4260) sorted by relevance

1234567891011>>

/external/v8/test/mjsunit/
H A Ddont-enum-array-holes.js29 var count = 0; variable
30 for (var i in [,1,,3]) count++;
31 assertEquals(2, count);
33 count = 0;
34 for (var i in new Array(10)) count++;
35 assertEquals(0, count);
H A Dfor-in-null-or-undefined.js30 var count = 0; variable
31 for (var p in null) { count++; }
32 for (var p in void 0) { count++; }
33 assertEquals(0, count);
H A Darguments-enum.js29 var count = 0;
31 count++;
32 return count;
38 var count = 0;
40 count++;
41 return count;
/external/v8/test/mjsunit/regress/
H A Dregress-113924.js28 var count=12000; variable
29 while(count--) {
H A Dregress-646.js31 var count = 0;
32 for (var x in new f()) count++;
33 assertEquals(0, count);
H A Dregress-1849.js32 var count = 1e5; variable
33 var arr = new Array(count);
35 for (var i = 0; i < count; i++) {
/external/webkit/PerformanceTests/SunSpider/tests/ubench/
H A Dloop-sum.js1 var count = 6000000; variable
3 for (var i = 0; i < count; i++) {
4 sum = i + count;
/external/valgrind/main/drd/tests/
H A Dcompare_error_count_with3 awk -v count=50000 '/ERROR SUMMARY/{if ($4 <= count) print "Total error count is below threshold."; else print "Total error count is above threshold" }'
H A Dannotate_rwlock_hg.stderr.exp1 Total error count is below threshold.
/external/compiler-rt/BlocksRuntime/tests/
H A Drdar6396238.c12 static int count = 0; variable
16 count++;
18 count++;
24 if (count != 2) {
25 printf("%s: failure, 2 != %d\n", argv[0], count);
/external/clang/test/CodeGenCXX/
H A Dstatic-init-1.cpp2 // RUN: grep "call i32 @_Z5func1i" %t | count 3
6 static int count; variable
11 static int loader_1 = func1(++count);
13 int loader_2 = func2(++count);
15 static int loader_3 = func1(++count);
20 int loader_4 = func2(++count);
21 static int loader_5 = func1(++count);
22 int loader_6 = func2(++count);
H A Ddefault-destructor-synthesis.cpp2 static int count = 0; variable
5 S() { count++; }
6 ~S() { count--; }
10 P() { count++; }
11 ~P() { count--; }
15 Q() { count++; }
16 ~Q() { count--; }
30 count = 1;
35 return count;
/external/proguard/src/proguard/classfile/visitor/
H A DClassCounter.java32 private int count; field in class:ClassCounter
40 return count;
48 count++;
54 count++;
H A DMemberCounter.java32 private int count; field in class:MemberCounter
40 return count;
49 count++;
56 count++;
63 count++;
70 count++;
/external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/strip/
H A DIntVec.java40 private int count = 0; field in class:IntVec
51 return count;
59 if ( count == data.length ) {
60 int[] ndata = new int[count*2];
61 System.arraycopy(data,0,ndata,0,count);
64 data[count] = val;
65 count++;
69 count = 0;
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/regexp/
H A Ddot.js38 var count = 0; variable
42 testcases[count++] = new TestCase ( SECTION, "'abcde'.match(new RegExp('ab.de'))",
46 testcases[count++] = new TestCase ( SECTION, "'line 1\nline 2'.match(new RegExp('.+'))",
50 testcases[count++] = new TestCase ( SECTION, "'this is a test'.match(new RegExp('.*a.*'))",
54 testcases[count++] = new TestCase ( SECTION, "'this is a *&^%$# test'.match(new RegExp('.+'))",
58 testcases[count++] = new TestCase ( SECTION, "'....'.match(new RegExp('.+'))",
62 testcases[count++] = new TestCase ( SECTION, "'abcdefghijklmnopqrstuvwxyz'.match(new RegExp('.+'))",
66 testcases[count++] = new TestCase ( SECTION, "'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.match(new RegExp('.+'))",
70 testcases[count++] = new TestCase ( SECTION, "'`1234567890-=~!@#$%^&*()_+'.match(new RegExp('.+'))",
74 testcases[count
[all...]
/external/kernel-headers/original/asm-generic/
H A Dmutex-xchg.h16 * __mutex_fastpath_lock - try to take the lock by moving the count
18 * @count: pointer of type atomic_t
21 * Change the count from 1 to a value lower than 1, and call <fail_fn> if it
26 __mutex_fastpath_lock(atomic_t *count, fastcall void (*fail_fn)(atomic_t *)) argument
28 if (unlikely(atomic_xchg(count, 0) != 1))
29 fail_fn(count);
35 * __mutex_fastpath_lock_retval - try to take the lock by moving the count
37 * @count: pointer of type atomic_t
40 * Change the count from 1 to a value lower than 1, and call <fail_fn> if it
45 __mutex_fastpath_lock_retval(atomic_t *count, fastcal argument
68 __mutex_fastpath_unlock(atomic_t *count, fastcall void (*fail_fn)(atomic_t *)) argument
93 __mutex_fastpath_trylock(atomic_t *count, int (*fail_fn)(atomic_t *)) argument
[all...]
/external/kernel-headers/original/linux/
H A Dvt_buffer.h31 static inline void scr_memsetw(u16 *s, u16 c, unsigned int count) argument
33 count /= 2;
34 while (count--)
40 static inline void scr_memcpyw(u16 *d, const u16 *s, unsigned int count) argument
42 count /= 2;
43 while (count--)
49 static inline void scr_memmovew(u16 *d, const u16 *s, unsigned int count) argument
52 scr_memcpyw(d, s, count);
54 count /= 2;
55 d += count;
[all...]
/external/chromium/base/debug/
H A Dstack_trace.cc13 const void *const *StackTrace::Addresses(size_t* count) const {
14 *count = count_;
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DBarrier.java37 protected int count = 0; field in class:Barrier
46 count++;
49 if ( count==threshold ) {
54 else while ( count<threshold ) {
/external/apache-http/src/org/apache/http/impl/io/
H A DHttpTransportMetricsImpl.java51 public void setBytesTransferred(long count) { argument
52 this.bytesTransferred = count;
55 public void incrementBytesTransferred(long count) { argument
56 this.bytesTransferred += count;
/external/javasqlite/src/main/java/SQLite/
H A DBusyHandler.java16 * @param count number of times the table was locked
19 public boolean busy(String table, int count); argument
/external/libvorbis/test/
H A Dwrite_read.h21 const float * data, int count, int ch) ;
27 float * data, int count) ;
/external/skia/src/animator/
H A DSkDrawDash.cpp31 int count = intervals.count(); local
32 if (count == 0)
34 return new SkDashPathEffect(intervals.begin(), count, phase);
/external/skia/src/opts/
H A DSkBitmapProcState_opts_SSSE3.h12 int count, uint32_t* colors);
15 int count, uint32_t* colors);

Completed in 560 milliseconds

1234567891011>>