Searched refs:count (Results 1 - 25 of 3711) 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-646.js31 var count = 0;
32 for (var x in new f()) count++;
33 assertEquals(0, count);
H A Dregress-1181.js28 // The first count times, test is called with an integer argument and
40 function check(count) {
43 for(var x=0; x < count; x++){
44 for(var y=0; y < count; y++){
48 assertEquals((count - 1) / 100, i + 1);
/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/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/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...]
H A DRegExp_multiline_as_array.js38 var count = 0; variable
44 testcases[count++] = new TestCase ( SECTION, "RegExp['$*']",
48 testcases[count++] = new TestCase ( SECTION, "(['$*'] == false) '123\\n456'.match(/^4../)",
52 testcases[count++] = new TestCase ( SECTION, "(['$*'] == false) 'a11\\na22\\na23\\na24'.match(/^a../g)",
56 testcases[count++] = new TestCase ( SECTION, "(['$*'] == false) 'a11\na22'.match(/^.+^./)",
60 testcases[count++] = new TestCase ( SECTION, "(['$*'] == false) '123\\n456'.match(/.3$/)",
64 testcases[count++] = new TestCase ( SECTION, "(['$*'] == false) 'a11\\na22\\na23\\na24'.match(/a..$/g)",
68 testcases[count++] = new TestCase ( SECTION, "(['$*'] == false) 'abc\ndef'.match(/c$...$/)",
72 testcases[count++] = new TestCase ( SECTION, "(['$*'] == false) 'a11\\na22\\na23\\na24'.match(new RegExp('a..$','g'))",
76 testcases[count
[all...]
H A Dinterval.js38 var count = 0; variable
42 testcases[count++] = new TestCase ( SECTION, "'aaabbbbcccddeeeefffff'.match(new RegExp('b{2}c'))",
46 testcases[count++] = new TestCase ( SECTION, "'aaabbbbcccddeeeefffff'.match(new RegExp('b{8}'))",
50 testcases[count++] = new TestCase ( SECTION, "'aaabbbbcccddeeeefffff'.match(new RegExp('b{2,}c'))",
54 testcases[count++] = new TestCase ( SECTION, "'aaabbbbcccddeeeefffff'.match(new RegExp('b{8,}c'))",
58 testcases[count++] = new TestCase ( SECTION, "'aaabbbbcccddeeeefffff'.match(new RegExp('b{2,3}c'))",
62 testcases[count++] = new TestCase ( SECTION, "'aaabbbbcccddeeeefffff'.match(new RegExp('b{42,93}c'))",
66 testcases[count++] = new TestCase ( SECTION, "'aaabbbbcccddeeeefffff'.match(new RegExp('b{0,93}c'))",
70 testcases[count++] = new TestCase ( SECTION, "'aaabbbbcccddeeeefffff'.match(new RegExp('bx{0,93}c'))",
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/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/skia/src/animator/
H A DSkDrawDash.cpp39 int count = intervals.count(); local
40 if (count == 0)
42 return new SkDashPathEffect(intervals.begin(), count, phase);
/external/skia/src/opts/
H A DSkUtils_opts_SSE2.cpp21 void sk_memset16_SSE2(uint16_t *dst, uint16_t value, int count) argument
23 SkASSERT(dst != NULL && count >= 0);
28 if (count >= 32) {
31 --count;
35 while (count >= 32) {
40 count -= 32;
44 while (count > 0) {
46 --count;
50 void sk_memset32_SSE2(uint32_t *dst, uint32_t value, int count) argument
52 SkASSERT(dst != NULL && count >
[all...]
H A DSkUtils_opts_SSE2.h20 void sk_memset16_SSE2(uint16_t *dst, uint16_t value, int count);
21 void sk_memset32_SSE2(uint32_t *dst, uint32_t value, int count);
/external/expat/tests/
H A Dchardata.c38 storage->count = -1;
49 if (storage->count < 0)
50 storage->count = 0;
51 if ((len + storage->count) > maxchars) {
52 len = (maxchars - storage->count);
54 if (len + storage->count < sizeof(storage->data)) {
55 memcpy(storage->data + storage->count, s, len);
56 storage->count += len;
68 if (storage->count < 0)
69 storage->count
87 int count; local
116 int count; local
[all...]
/external/valgrind/main/none/tests/
H A Dpth_cvsimple.stdout.exp1 inc_counter(): count = 1, unlocking mutex
2 inc_counter(): count = 2, unlocking mutex
3 inc_counter(): count = 3, unlocking mutex
4 inc_counter(): count = 4, unlocking mutex
5 inc_counter(): count = 5, unlocking mutex
6 inc_counter(): count = 6, unlocking mutex
7 inc_counter(): count = 7, unlocking mutex
8 inc_counter(): count = 8, unlocking mutex
9 inc_counter(): count = 9, unlocking mutex
10 inc_counter(): count
[all...]

Completed in 5686 milliseconds

1234567891011>>