OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:count
(Results
1 - 25
of
16890
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/ndk/tests/device/test-stlport_shared-exception/jni/
eh29.cpp
4
int
count
;
variable
10
if (
count
==3)
12
++
count
;
15
--
count
;
24
return
count
;
eh31.cpp
4
int
count
;
variable
8
Foo() { ++
count
; }
9
Foo(const Foo&) { ++
count
; }
10
~Foo() { --
count
; }
19
if (
count
== 1)
p7912.cpp
5
int
count
= 0;
variable
9
Foo() { ++
count
; };
10
Foo(const Foo&) { ++
count
; };
11
~Foo() { --
count
; };
22
return
count
;
/ndk/tests/device/test-stlport_static-exception/jni/
eh29.cpp
4
int
count
;
variable
10
if (
count
==3)
12
++
count
;
15
--
count
;
24
return
count
;
eh31.cpp
4
int
count
;
variable
8
Foo() { ++
count
; }
9
Foo(const Foo&) { ++
count
; }
10
~Foo() { --
count
; }
19
if (
count
== 1)
p7912.cpp
5
int
count
= 0;
variable
9
Foo() { ++
count
; };
10
Foo(const Foo&) { ++
count
; };
11
~Foo() { --
count
; };
22
return
count
;
/external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.runtime/
null_asgn.pass.cpp
23
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
35
assert(A::
count
== 1);
37
assert(A::
count
== 0);
40
assert(A::
count
== 0);
/external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.asgn/
null.pass.cpp
23
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
35
assert(A::
count
== 1);
37
assert(A::
count
== 0);
40
assert(A::
count
== 0);
/external/valgrind/drd/tests/
compare_error_count_with
3
awk -v
count
=50000 '/ERROR SUMMARY/{if ($4 <=
count
) print "Total error
count
is below threshold."; else print "Total error
count
is above threshold" }'
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/
null_asgn.pass.cpp
23
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
35
assert(A::
count
== 1);
37
assert(A::
count
== 0);
40
assert(A::
count
== 0);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.asgn/
null.pass.cpp
23
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
35
assert(A::
count
== 1);
37
assert(A::
count
== 0);
40
assert(A::
count
== 0);
/external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.dltr/unique.ptr.dltr.dflt/
convert_ctor.pass.cpp
19
static int
count
;
member in struct:A
20
A() {++
count
;}
21
A(const A&) {++
count
;}
22
virtual ~A() {--
count
;}
25
int A::
count
= 0;
member in class:A
30
static int
count
;
member in struct:B
31
B() {++
count
;}
32
B(const B&) {++
count
;}
33
virtual ~B() {--
count
;}
36
int B::
count
= 0
member in class:B
[
all
...]
default.pass.cpp
19
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);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.dltr/unique.ptr.dltr.dflt/
convert_ctor.pass.cpp
19
static int
count
;
member in struct:A
20
A() {++
count
;}
21
A(const A&) {++
count
;}
22
virtual ~A() {--
count
;}
25
int A::
count
= 0;
member in class:A
30
static int
count
;
member in struct:B
31
B() {++
count
;}
32
B(const B&) {++
count
;}
33
virtual ~B() {--
count
;}
36
int B::
count
= 0
member in class:B
[
all
...]
default.pass.cpp
19
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/compiler-rt/test/BlocksRuntime/
rdar6396238.c
12
static int
count
= 0;
variable
16
count
++;
18
count
++;
24
if (
count
!= 2) {
25
printf("%s: failure, 2 != %d\n", argv[0],
count
);
/external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/
move_convert05.fail.cpp
28
static int
count
;
member in struct:A
29
A() {++
count
;}
30
A(const A&) {++
count
;}
31
virtual ~A() {--
count
;}
34
int A::
count
= 0;
member in class:A
39
static int
count
;
member in struct:B
40
B() {++
count
;}
41
B(const B&) {++
count
;}
42
virtual ~B() {--
count
;}
45
int B::
count
= 0
member in class:B
[
all
...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/
move_convert05.fail.cpp
27
static int
count
;
member in struct:A
28
A() {++
count
;}
29
A(const A&) {++
count
;}
30
virtual ~A() {--
count
;}
33
int A::
count
= 0;
member in class:A
38
static int
count
;
member in struct:B
39
B() {++
count
;}
40
B(const B&) {++
count
;}
41
virtual ~B() {--
count
;}
44
int B::
count
= 0
member in class:B
[
all
...]
/external/boringssl/src/crypto/
refcount_test.c
23
CRYPTO_refcount_t
count
= 0;
local
25
CRYPTO_refcount_inc(&
count
);
26
if (
count
!= 1) {
27
fprintf(stderr, "Incrementing reference
count
did not work.\n");
30
if (!CRYPTO_refcount_dec_and_test_zero(&
count
) ||
count
!= 0) {
31
fprintf(stderr, "Decrementing reference
count
to zero did not work.\n");
35
count
= CRYPTO_REFCOUNT_MAX;
36
CRYPTO_refcount_inc(&
count
);
37
if (
count
!= CRYPTO_REFCOUNT_MAX)
[
all
...]
/external/clang/test/CodeGenCXX/
static-init-1.cpp
5
static int
count
;
variable
10
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
);
cxx11-trivial-initializer-struct.cpp
10
unsigned char
count
;
member in struct:sAFSearchPos
20
return testPositions.
count
+ arrayPositions[10][4][3].
count
;
/external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.dltr/unique.ptr.dltr.dflt1/
default.pass.cpp
21
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);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.dltr/unique.ptr.dltr.dflt1/
default.pass.cpp
21
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);
/dalvik/dx/tests/115-merge/testdata/
TryCatchFinally.java
6
int
count
= 0;
local
15
count
++;
19
count
++;
22
if (
count
!= 2) {
/external/conscrypt/src/main/java/org/conscrypt/util/
ArrayUtils.java
27
* Checks that the range described by {@code offset} and {@code
count
}
32
public static final void checkOffsetAndCount(int arrayLength, int offset, int
count
) {
33
if ((offset |
count
) < 0 || offset > arrayLength || arrayLength - offset <
count
) {
35
+ offset + "; regionLength=" +
count
);
Completed in 576 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>