Searched defs:count (Results 76 - 100 of 5154) sorted by relevance

1234567891011>>

/external/chromium_org/tools/gyp/test/actions/src/subdir1/
H A Dcounter.py13 count = 0 variable
15 count = open(persistoutput, 'r').read() variable
18 count = int(count) + 1 variable
22 if count > max_count:
23 count = max_count variable
31 # Save the count in a file that is undeclared, and thus hidden, to gyp. We need
33 # any declared outputs, so we would lose our count if we just wrote to the
35 open(persistoutput, 'w').write('%d' % (count))
37 # Only write the given output file if the count ha
[all...]
/external/chromium_org/ui/gfx/
H A Dpath.cc15 Path::Path(const Point* points, size_t count) { argument
16 DCHECK(count > 1);
18 for (size_t i = 1; i < count; ++i)
22 Path::Path(const PointF* points, size_t count) { argument
23 DCHECK(count > 1);
25 for (size_t i = 1; i < count; ++i)
/external/chromium_org/v8/test/mjsunit/
H A Ddebug-break-inline.js39 var count = 0; variable
78 count++;
96 assertEquals(5, count);
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-2855.js44 var count = 0; variable
48 count++;
56 assertEquals(i + 1, count);
/external/clang/test/CodeGenCXX/
H A Dcxx11-trivial-initializer-struct.cpp10 unsigned char count; member in struct:sAFSearchPos
20 return testPositions.count + arrayPositions[10][4][3].count;
/external/clang/test/Index/
H A Dprint-bitwidth.c12 int count; member in struct:X
24 // CHECK-NOT: count
/external/clang/test/PCH/
H A Dva_arg.cpp14 void f(char *buffer, unsigned count, const char* format, va_list argptr) { argument
15 vsnprintf(buffer, count, format, argptr);
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dinterception_readdir_r_test.cc30 unsigned count = 0; local
36 ++count;
38 fprintf(stderr, "read %d entries\n", count);
49 count = 0;
55 ++count;
57 fprintf(stderr, "read %d entries\n", count);
/external/fio/crc/
H A Dsha512.h6 uint32_t count[4]; member in struct:fio_sha512_ctx
/external/icu/icu4c/source/i18n/
H A Dcpdtrans.h42 int32_t count; member in class:CompoundTransliterator
118 int32_t count);
124 int32_t count);
/external/jarjar/src/test/
H A DGenerics.class ... .0_r1/s?defs= " () public static int count
/external/kernel-headers/original/uapi/linux/
H A Divtvfb.h32 int count; member in struct:ivtvfb_dma_frame
H A Dkeychord.h46 __u16 count; member in struct:input_keychord
/external/libcxx/test/localization/locale.categories/category.collate/locale.collate/
H A Dctor.pass.cpp25 static int count; member in class:my_facet
28 : std::collate<C>(refs) {++count;}
30 ~my_facet() {--count;}
33 template <class C> int my_facet<C>::count = 0; member in class:my_facet
39 assert(my_facet<char>::count == 1);
41 assert(my_facet<char>::count == 0);
44 assert(my_facet<char>::count == 1);
47 assert(my_facet<char>::count == 1);
49 assert(my_facet<char>::count == 1);
51 assert(my_facet<char>::count
[all...]
/external/libcxx/test/localization/locale.categories/category.ctype/locale.ctype/
H A Dctor.pass.cpp24 static int count; member in class:my_facet
27 : std::ctype<C>(refs) {++count;}
29 ~my_facet() {--count;}
32 template <class C> int my_facet<C>::count = 0; member in class:my_facet
38 assert(my_facet<wchar_t>::count == 1);
40 assert(my_facet<wchar_t>::count == 0);
43 assert(my_facet<wchar_t>::count == 1);
46 assert(my_facet<wchar_t>::count == 1);
48 assert(my_facet<wchar_t>::count == 1);
50 assert(my_facet<wchar_t>::count
[all...]
/external/libcxx/test/localization/locale.categories/facet.numpunct/locale.numpunct/
H A Dctor.pass.cpp24 static int count; member in class:my_facet
27 : std::numpunct<C>(refs) {++count;}
29 ~my_facet() {--count;}
32 template <class C> int my_facet<C>::count = 0; member in class:my_facet
38 assert(my_facet<char>::count == 1);
40 assert(my_facet<char>::count == 0);
43 assert(my_facet<char>::count == 1);
46 assert(my_facet<char>::count == 1);
48 assert(my_facet<char>::count == 1);
50 assert(my_facet<char>::count
[all...]
/external/libcxx/test/localization/locales/locale/locale.types/locale.facet/
H A Dfacet.pass.cpp29 static int count; member in struct:my_facet
32 {++count;}
34 ~my_facet() {--count;}
37 int my_facet::count = 0; member in class:my_facet
43 assert(my_facet::count == 1);
45 assert(my_facet::count == 0);
48 assert(my_facet::count == 1);
50 assert(my_facet::count == 1);
52 assert(my_facet::count == 0);
/external/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.inv/
H A Dinvoke_int_0.pass.cpp21 int count = 0; variable
/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.dltr/unique.ptr.dltr.dflt/
H A Ddefault.pass.cpp19 static int count; member in struct:A
20 A() {++count;}
21 A(const A&) {++count;}
22 ~A() {--count;}
25 int A::count = 0; member in class:A
31 assert(A::count == 1);
33 assert(A::count == 0);
/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.dltr/unique.ptr.dltr.dflt1/
H A Ddefault.pass.cpp21 static int count; member in struct:A
22 A() {++count;}
23 A(const A&) {++count;}
24 ~A() {--count;}
27 int A::count = 0; member in class:A
33 assert(A::count == 3);
35 assert(A::count == 0);
/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/
H A Dmove01.fail.cpp23 static int count; member in struct:A
24 A() {++count;}
25 A(const A&) {++count;}
26 ~A() {--count;}
29 int A::count = 0; member in class:A
H A Dmove01.pass.cpp26 static int count; member in struct:A
27 A() {++count;}
28 A(const A&) {++count;}
29 ~A() {--count;}
32 int A::count = 0; member in class:A
39 assert(A::count == 3);
41 assert(A::count == 5);
43 assert(A::count == 3);
47 assert(A::count == 0);
51 assert(A::count
[all...]
H A Dmove02.fail.cpp23 static int count; member in struct:A
24 A() {++count;}
25 A(const A&) {++count;}
26 ~A() {--count;}
29 int A::count = 0; member in class:A
/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/
H A Dmove01.fail.cpp23 static int count; member in struct:A
24 A() {++count;}
25 A(const A&) {++count;}
26 ~A() {--count;}
29 int A::count = 0; member in class:A
39 assert(A::count == 1);
41 assert(A::count == 0);
H A Dmove02.fail.cpp23 static int count; member in struct:A
24 A() {++count;}
25 A(const A&) {++count;}
26 ~A() {--count;}
29 int A::count = 0; member in class:A
39 assert(A::count == 1);
41 assert(A::count == 0);

Completed in 9709 milliseconds

1234567891011>>