Home
last modified time | relevance | path

Searched refs:count (Results 1 – 25 of 4900) sorted by relevance

12345678910>>...196

/external/v8/test/webkit/
Ddfg-side-effect-assignment-osr-exit-expected.txt30 PASS count is 1
32 PASS count is 2
34 PASS count is 3
36 PASS count is 4
38 PASS count is 5
40 PASS count is 6
42 PASS count is 7
44 PASS count is 8
46 PASS count is 9
48 PASS count is 10
[all …]
Darray-enumerators-functions-expected.txt29 PASS count=0;lastIndex=-1;copyArray(simpleArray).every(forwarders[f], returnFalse, 0) is count=0;la…
30 PASS count=0;lastIndex=-1;copyArray(emptyArray).every(forwarders[f], returnFalse, 0) is count=0;las…
31 PASS count=0;lastIndex=-1;copyArray(largeEmptyArray).every(forwarders[f], returnFalse, 0) is count=…
32 PASS count=0;lastIndex=-1;copyArray(largeSparseArray).every(forwarders[f], returnFalse, 0) is count
33 PASS count=0;lastIndex=-1;copyArray(simpleArray).every(forwarders[f], returnTrue, 0) is count=0;las…
34 PASS count=0;lastIndex=-1;copyArray(emptyArray).every(forwarders[f], returnTrue, 0) is count=0;last…
35 PASS count=0;lastIndex=-1;copyArray(largeEmptyArray).every(forwarders[f], returnTrue, 0) is count=0…
36 PASS count=0;lastIndex=-1;copyArray(largeSparseArray).every(forwarders[f], returnTrue, 0) is count=…
37 PASS count=0;lastIndex=-1;copyArray(simpleArray).every(forwarders[f], returnElem, 0) is count=0;las…
38 PASS count=0;lastIndex=-1;copyArray(emptyArray).every(forwarders[f], returnElem, 0) is count=0;last…
[all …]
/external/libxml2/
Dxmlwriter.c528 int count; in xmlTextWriterStartDocument() local
568 count = xmlOutputBufferWriteString(writer->out, "<?xml version="); in xmlTextWriterStartDocument()
569 if (count < 0) in xmlTextWriterStartDocument()
571 sum += count; in xmlTextWriterStartDocument()
572 count = xmlOutputBufferWrite(writer->out, 1, &writer->qchar); in xmlTextWriterStartDocument()
573 if (count < 0) in xmlTextWriterStartDocument()
575 sum += count; in xmlTextWriterStartDocument()
577 count = xmlOutputBufferWriteString(writer->out, version); in xmlTextWriterStartDocument()
579 count = xmlOutputBufferWriteString(writer->out, "1.0"); in xmlTextWriterStartDocument()
580 if (count < 0) in xmlTextWriterStartDocument()
[all …]
/external/libcxxabi/test/
Dcatch_class_04.pass.cpp22 static int count; member
24 explicit B(int id) : id_(id) {count++;} in B()
25 B(const B& a) : id_(a.id_) {count++;} in B()
26 ~B() {count--;} in ~B()
29 int B::count = 0; member in B
34 static int count; member
36 explicit C1(int id) : B(id-2), id_(id) {count++;} in C1()
37 C1(const C1& a) : B(a.id_-2), id_(a.id_) {count++;} in C1()
38 ~C1() {count--;} in ~C1()
41 int C1::count = 0; member in C1
[all …]
Dcatch_class_03.pass.cpp22 static int count; member
24 explicit B(int id) : id_(id) {count++;} in B()
25 B(const B& a) : id_(a.id_) {count++;} in B()
26 ~B() {count--;} in ~B()
29 int B::count = 0; member in B
34 static int count; member
36 explicit C1(int id) : B(id-2), id_(id) {count++;} in C1()
37 C1(const C1& a) : B(a.id_-2), id_(a.id_) {count++;} in C1()
38 ~C1() {count--;} in ~C1()
41 int C1::count = 0; member in C1
[all …]
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.const/
Dweak_ptr.pass.cpp23 static int count; member
25 B() {++count;} in B()
26 B(const B&) {++count;} in B()
27 virtual ~B() {--count;} in ~B()
30 int B::count = 0; member in B
35 static int count; member
37 A() {++count;} in A()
38 A(const A&) {++count;} in A()
39 ~A() {--count;} in ~A()
42 int A::count = 0; member in A
[all …]
Dshared_ptr_Y.pass.cpp22 static int count; member
24 B() {++count;} in B()
25 B(const B&) {++count;} in B()
26 virtual ~B() {--count;} in ~B()
29 int B::count = 0; member in B
34 static int count; member
36 A() {++count;} in A()
37 A(const A&) {++count;} in A()
38 ~A() {--count;} in ~A()
41 int A::count = 0; member in A
[all …]
Dweak_ptr_Y.pass.cpp23 static int count; member
25 B() {++count;} in B()
26 B(const B&) {++count;} in B()
27 virtual ~B() {--count;} in ~B()
30 int B::count = 0; member in B
35 static int count; member
37 A() {++count;} in A()
38 A(const A&) {++count;} in A()
39 ~A() {--count;} in ~A()
42 int A::count = 0; member in A
[all …]
/external/libcxx/test/std/algorithms/alg.nonmodifying/alg.search/
Dsearch_n_pred.pass.cpp25 static unsigned count; member
28 {++count; return x == y;} in operator ()()
31 unsigned count_equal::count = 0; member in count_equal
40 count_equal::count = 0; in test()
42 assert(count_equal::count <= sa); in test()
43 count_equal::count = 0; in test()
45 assert(count_equal::count <= sa); in test()
46 count_equal::count = 0; in test()
48 assert(count_equal::count <= sa); in test()
49 count_equal::count = 0; in test()
[all …]
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/
Dshared_ptr_Y.pass.cpp22 static int count; member
24 B() {++count;} in B()
25 B(const B&) {++count;} in B()
26 virtual ~B() {--count;} in ~B()
29 int B::count = 0; member in B
34 static int count; member
36 A() {++count;} in A()
37 A(const A&) {++count;} in A()
38 ~A() {--count;} in ~A()
41 int A::count = 0; member in A
[all …]
Dshared_ptr_Y_rv.pass.cpp22 static int count; member
24 B() {++count;} in B()
25 B(const B&) {++count;} in B()
26 virtual ~B() {--count;} in ~B()
29 int B::count = 0; member in B
34 static int count; member
36 A() {++count;} in A()
37 A(const A&) {++count;} in A()
38 ~A() {--count;} in ~A()
41 int A::count = 0; member in A
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DDigitList.java75 public int count = 0; field in DigitList
91 for (int i=0; i<count; ++i) if (digits[i] != '0') return false; in isZero()
112 ensureCapacity(count+1, count); in append()
113 digits[count++] = (byte) digit; in append()
126 if (count == 0) return 0.0; in getDouble()
127 StringBuilder temp = new StringBuilder(count); in getDouble()
129 for (int i = 0; i < count; ++i) temp.append((char)(digits[i])); in getDouble()
144 if (count == 0) return 0; in getLong()
151 StringBuilder temp = new StringBuilder(count); in getLong()
154 temp.append((i < count) ? (char)(digits[i]) : '0'); in getLong()
[all …]
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.assign/
Dunique_ptr_Y.pass.cpp22 static int count; member
24 B() {++count;} in B()
25 B(const B&) {++count;} in B()
26 virtual ~B() {--count;} in ~B()
29 int B::count = 0; member in B
34 static int count; member
36 A() {++count;} in A()
37 A(const A&) {++count;} in A()
38 ~A() {--count;} in ~A()
41 int A::count = 0; member in A
[all …]
Dauto_ptr_Y.pass.cpp22 static int count; member
24 B() {++count;} in B()
25 B(const B&) {++count;} in B()
26 virtual ~B() {--count;} in ~B()
29 int B::count = 0; member in B
34 static int count; member
36 A() {++count;} in A()
37 A(const A&) {++count;} in A()
38 ~A() {--count;} in ~A()
41 int A::count = 0; member in A
[all …]
Dshared_ptr_rv.pass.cpp22 static int count; member
24 B() {++count;} in B()
25 B(const B&) {++count;} in B()
26 virtual ~B() {--count;} in ~B()
29 int B::count = 0; member in B
34 static int count; member
36 A() {++count;} in A()
37 A(const A&) {++count;} in A()
38 ~A() {--count;} in ~A()
41 int A::count = 0; member in A
[all …]
Dshared_ptr_Y.pass.cpp22 static int count; member
24 B() {++count;} in B()
25 B(const B&) {++count;} in B()
26 virtual ~B() {--count;} in ~B()
29 int B::count = 0; member in B
34 static int count; member
36 A() {++count;} in A()
37 A(const A&) {++count;} in A()
38 ~A() {--count;} in ~A()
41 int A::count = 0; member in A
[all …]
Dshared_ptr.pass.cpp22 static int count; member
24 B() {++count;} in B()
25 B(const B&) {++count;} in B()
26 virtual ~B() {--count;} in ~B()
29 int B::count = 0; member in B
34 static int count; member
36 A() {++count;} in A()
37 A(const A&) {++count;} in A()
38 ~A() {--count;} in ~A()
41 int A::count = 0; member in A
[all …]
Dshared_ptr_Y_rv.pass.cpp22 static int count; member
24 B() {++count;} in B()
25 B(const B&) {++count;} in B()
26 virtual ~B() {--count;} in ~B()
29 int B::count = 0; member in B
34 static int count; member
36 A() {++count;} in A()
37 A(const A&) {++count;} in A()
38 ~A() {--count;} in ~A()
41 int A::count = 0; member in A
[all …]
/external/libcxx/test/std/utilities/function.objects/bind/func.bind/func.bind.bind/
Dinvoke_rvalue.pass.cpp22 int count = 0; variable
28 count += i; in f_void_1()
35 count += i; in operator ()()
38 void mem1() {++count;} in mem1()
39 void mem2() const {count += 2;} in mem2()
46 int save_count = count; in test_void_1()
50 assert(count == save_count + 2); in test_void_1()
51 save_count = count; in test_void_1()
55 assert(count == save_count + 2); in test_void_1()
56 save_count = count; in test_void_1()
[all …]
Dinvoke_lvalue.pass.cpp22 int count = 0; variable
28 count += i; in f_void_1()
35 count += i; in operator ()()
38 void mem1() {++count;} in mem1()
39 void mem2() const {count += 2;} in mem2()
46 int save_count = count; in test_void_1()
51 assert(count == save_count + 2); in test_void_1()
52 save_count = count; in test_void_1()
57 assert(count == save_count + 2); in test_void_1()
58 save_count = count; in test_void_1()
[all …]
/external/skia/src/opts/
DSkUtils_opts_arm_neon.cpp11 void sk_memset32_neon(uint32_t dst[], uint32_t value, int count) { in sk_memset32_neon() argument
15 while (count >= 16) { in sk_memset32_neon()
18 count -= 16; in sk_memset32_neon()
20 SkASSERT(count < 16); in sk_memset32_neon()
21 switch (count / 4) { in sk_memset32_neon()
22 case 3: vst1q_u32(dst, v4); dst += 4; count -= 4; in sk_memset32_neon()
23 case 2: vst1q_u32(dst, v4); dst += 4; count -= 4; in sk_memset32_neon()
24 case 1: vst1q_u32(dst, v4); dst += 4; count -= 4; in sk_memset32_neon()
26 SkASSERT(count < 4); in sk_memset32_neon()
27 if (count >= 2) { in sk_memset32_neon()
[all …]
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/
Dallocate_shared_no_variadics.pass.cpp27 static int count; member
28 Zero() {++count;} in Zero()
29 Zero(Zero const &) {++count;} in Zero()
30 ~Zero() {--count;} in ~Zero()
33 int Zero::count = 0; member in Zero
37 static int count; member
39 explicit One(int v) : value(v) {++count;} in One()
40 One(One const & o) : value(o.value) {++count;} in One()
41 ~One() {--count;} in ~One()
44 int One::count = 0; member in One
[all …]
/external/icu/icu4c/source/test/intltest/
Dtsdtfmsy.cpp130 UBool IntlTestDateFormatSymbols::UnicodeStringsArePrefixes(int32_t count, int32_t prefixLen, const … in UnicodeStringsArePrefixes() argument
133 for (i = 0; i < count; i++) { in UnicodeStringsArePrefixes()
198 int32_t count = 0; in TestSymbols() local
199 const UnicodeString *eras = en.getEras(count); in TestSymbols()
200 if(count == 0) { in TestSymbols()
221 fr.setEras(eras, count); in TestSymbols()
222 if( *en.getEras(count) != *fr.getEras(count)) { in TestSymbols()
226 const UnicodeString *months = en.getMonths(count); in TestSymbols()
227 fr.setMonths(months, count); in TestSymbols()
228 if( *en.getMonths(count) != *fr.getMonths(count)) { in TestSymbols()
[all …]
/external/libcxx/test/std/containers/associative/map/map.ops/
Dcount.pass.cpp41 R r = m.count(5); in main()
43 r = m.count(6); in main()
45 r = m.count(7); in main()
47 r = m.count(8); in main()
49 r = m.count(9); in main()
51 r = m.count(10); in main()
53 r = m.count(11); in main()
55 r = m.count(12); in main()
57 r = m.count(4); in main()
79 R r = m.count(5); in main()
[all …]
/external/libcxx/test/std/containers/associative/set/
Dcount.pass.cpp40 R r = m.count(5); in main()
42 r = m.count(6); in main()
44 r = m.count(7); in main()
46 r = m.count(8); in main()
48 r = m.count(9); in main()
50 r = m.count(10); in main()
52 r = m.count(11); in main()
54 r = m.count(12); in main()
56 r = m.count(4); in main()
76 R r = m.count(5); in main()
[all …]

12345678910>>...196