Home
last modified time | relevance | path

Searched refs:alive (Results 1 – 25 of 302) sorted by relevance

12345678910>>...13

/external/libcxx/test/std/experimental/language.support/support.coroutines/end.to.end/
Dfullexpr-dtor.pass.cpp20 int alive = 0; variable
24 assert(alive == 0); in reset()
25 alive = 0; in reset()
30 Noisy() { ++alive; ++ctor_called; } in Noisy()
31 ~Noisy() { --alive; ++dtor_called; } in ~Noisy()
63 assert(alive == 1); in a()
68 assert(alive == 0); in a()
78 assert(alive == 0); in b()
82 assert(alive == 0); in b()
90 assert(alive == 1); in c()
[all …]
/external/proguard/src/proguard/optimize/evaluation/
DLivenessAnalyzer.java59 private long alive; field in LivenessAnalyzer
106 public void setAliveBefore(int instructionOffset, int variableIndex, boolean alive) in setAliveBefore() argument
110 if (alive) in setAliveBefore()
137 public void setAliveAfter(int instructionOffset, int variableIndex, boolean alive) in setAliveAfter() argument
141 if (alive) in setAliveAfter()
220 alive = 0L; in visitCodeAttribute()
232 alive = combinedLiveness(branchTargets); in visitCodeAttribute()
236 alive |= isAliveAfter[offset]; in visitCodeAttribute()
239 isAliveAfter[offset] = alive; in visitCodeAttribute()
245 alive |= isAliveBefore[offset]; in visitCodeAttribute()
[all …]
/external/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/
Dmove.pass.cpp29 static int alive; member
31 X() { ++alive; } in X()
36 ++alive; in X()
46 ~X() { assert(alive > 0); --alive; } in ~X()
52 int X::alive = 0; member in X
85 assert(T::alive == 1); in main()
87 assert(T::alive == 0); in main()
103 X::alive = 0; in main()
107 assert(X::alive == 1); in main()
120 assert(X::alive == 1); in main()
[all …]
Dconst_optional_U.pass.cpp92 assert(T::alive == 1); in test_with_test_type()
102 assert(T::alive == 0); in test_with_test_type()
108 assert(T::alive == 1); in test_with_test_type()
118 assert(T::alive == 0); in test_with_test_type()
124 assert(T::alive == 0); in test_with_test_type()
131 assert(T::alive == 0); in test_with_test_type()
137 assert(T::alive == 0); in test_with_test_type()
144 assert(T::alive == 0); in test_with_test_type()
Doptional_U.pass.cpp96 assert(T::alive == 1); in test_with_test_type()
106 assert(T::alive == 0); in test_with_test_type()
112 assert(T::alive == 1); in test_with_test_type()
122 assert(T::alive == 0); in test_with_test_type()
128 assert(T::alive == 0); in test_with_test_type()
135 assert(T::alive == 0); in test_with_test_type()
141 assert(T::alive == 0); in test_with_test_type()
148 assert(T::alive == 0); in test_with_test_type()
Demplace.pass.cpp123 assert(T::alive == 0); in test_on_test_type()
128 assert(T::alive == 1); in test_on_test_type()
140 assert(T::alive == 1); in test_on_test_type()
152 assert(T::alive == 1); in test_on_test_type()
164 assert(T::alive == 1); in test_on_test_type()
176 assert(T::alive == 1); in test_on_test_type()
188 assert(T::alive == 1); in test_on_test_type()
200 assert(T::alive == 1); in test_on_test_type()
Dnullopt_t.pass.cpp47 assert(TT::alive == 0); in main()
51 assert(TT::alive == 0); in main()
60 assert(TT::alive == 0); in main()
64 assert(TT::alive == 0); in main()
Dassign_value.pass.cpp92 assert(T::alive == 1); in test_with_test_type()
104 assert(T::alive == 1); in test_with_test_type()
116 assert(T::alive == 1); in test_with_test_type()
129 assert(T::alive == 1); in test_with_test_type()
142 assert(T::alive == 1); in test_with_test_type()
156 assert(T::alive == 0); in test_with_test_type()
/external/libcxx/test/support/
Dvariant_test_helpers.hpp34 static int alive; member
35 MoveThrows() { ++alive; } in MoveThrows()
36 MoveThrows(MoveThrows const&) {++alive;} in MoveThrows()
40 ~MoveThrows() { --alive; } in ~MoveThrows()
43 int MoveThrows::alive = 0; member in MoveThrows
46 static int alive; member
47 MakeEmptyT() { ++alive; } in MakeEmptyT()
49 ++alive; in MakeEmptyT()
62 ~MakeEmptyT() { --alive; } in ~MakeEmptyT()
66 int MakeEmptyT::alive = 0; member in MakeEmptyT
Darchetypes.hpp30 static int alive; member
43 assert(alive == 0); in reset()
44 alive = 0; in reset()
55 ++alive; ++constructed; ++default_constructed; in TestBase()
59 ++alive; ++constructed; ++value_constructed; in TestBase()
63 ++alive; ++constructed; ++value_constructed; in TestBase()
67 ++alive; ++constructed; ++value_constructed; in TestBase()
71 ++alive; ++constructed; ++value_constructed; in TestBase()
76 ++alive; ++constructed; ++value_constructed; in TestBase()
80 ++alive; ++constructed; ++value_constructed; in TestBase()
[all …]
/external/libcxx/test/std/utilities/variant/variant.variant/variant.assign/
Dcopy.pass.cpp62 static int alive; member
68 copy_construct = copy_assign = move_construct = move_assign = alive = 0; in reset()
70 CopyAssign(int v) : value(v) { ++alive; } in CopyAssign()
72 ++alive; in CopyAssign()
77 ++alive; in CopyAssign()
91 ~CopyAssign() { --alive; } in ~CopyAssign()
95 int CopyAssign::alive = 0; member in CopyAssign
160 static int alive; member
161 CopyCannotThrow() { ++alive; } in CopyCannotThrow()
162 CopyCannotThrow(const CopyCannotThrow &) noexcept { ++alive; } in CopyCannotThrow()
[all …]
/external/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/
Dmove.pass.cpp99 assert(T::alive == 1); in test_reference_extension()
105 assert(T::alive == 0); in test_reference_extension()
113 assert(T::alive == 1); in test_reference_extension()
118 assert(T::alive == 0); in test_reference_extension()
125 assert(T::alive == 1); in test_reference_extension()
130 assert(T::alive == 0); in test_reference_extension()
139 assert(T::alive == 1); in test_reference_extension()
144 assert(T::alive == 0); in test_reference_extension()
170 assert(T::alive == 0); in main()
174 assert(T::alive == 0); in main()
[all …]
Dcopy.pass.cpp89 assert(T::alive == 1); in test_reference_extension()
95 assert(T::alive == 0); in test_reference_extension()
103 assert(T::alive == 1); in test_reference_extension()
108 assert(T::alive == 0); in test_reference_extension()
133 assert(T::alive == 0); in main()
136 assert(T::alive == 0); in main()
143 assert(T::alive == 1); in main()
149 assert(T::alive == 2); in main()
/external/valgrind/none/tests/x86/
Dyield.c14 static volatile int alive, running; variable
22 while(!alive) in spinner()
28 while(alive) in spinner()
37 while(!alive) in rep_nopper()
43 while(alive) { in rep_nopper()
62 alive = 1; in main()
72 alive = 0; in main()
/external/python/cpython3/Lib/test/
Dfork_wait.py23 self.alive = {}
28 self.alive[id] = os.getpid()
53 while len(self.alive) < NUM_THREADS:
58 a = sorted(self.alive.keys())
61 prefork_lives = self.alive.copy()
72 for key in self.alive:
73 if self.alive[key] != prefork_lives[key]:
/external/python/cpython2/Lib/test/
Dfork_wait.py26 self.alive = {}
31 self.alive[id] = os.getpid()
55 a = self.alive.keys()
59 prefork_lives = self.alive.copy()
70 for key in self.alive:
71 if self.alive[key] != prefork_lives[key]:
/external/honggfuzz/examples/apache-httpd/corpus_http1/
Dbbee1a5b80629cb532c4f7db220d668a.00000367.honggfuzz.cov2 HTTTTTTTTTTTTTTTTTTTTTTTTTTTTct‫ion: keep-alive
4 Connection: keep-alive
6 Connection: keep-alive
37 Connection: keep-alive
/external/honggfuzz/examples/apache-httpd/corpus_http2/
Dbbee1a5b80629cb532c4f7db220d668a.00000367.honggfuzz.cov2 HTTTTTTTTTTTTTTTTTTTTTTTTTTTTct‫ion: keep-alive
4 Connection: keep-alive
6 Connection: keep-alive
37 Connection: keep-alive
/external/python/cpython2/Demo/threads/
Dsync.py498 io.acquire(); alive.append(id); \
499 print 'starting thread', id, '--', len(alive), 'alive'; \
523 alive.remove(tid); io.release()
533 alive.remove(tid); io.release()
561 io.acquire(); alive.remove(tid); io.release()
568 global TID, tid, io, wh, randint, alive
576 alive = [] # IDs of active threads
590 if alive:
591 raise ValueError, ('threads still alive at end', alive)
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
DADCE.cpp53 SmallPtrSet<Instruction*, 128> alive; in runOnFunction() local
62 alive.insert(I.getInstructionIterator()); in runOnFunction()
72 if (alive.insert(Inst)) in runOnFunction()
81 if (!alive.count(I.getInstructionIterator())) { in runOnFunction()
/external/libcxx/test/std/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.mem/
Ddo_allocate_and_deallocate.pass.cpp48 assert(P.alive == 1); in check_allocate_deallocate()
55 assert(P.alive == 0); in check_allocate_deallocate()
75 assert(P.alive == 1); in check_alloc_max_size()
80 assert(P.alive == 0); in check_alloc_max_size()
/external/python/cpython3/Doc/library/
Dweakref.rst25 A weak reference to an object is not enough to keep the object alive: when the
33 kept alive solely because it appears in a cache or mapping.
37 images, or images to names, the image objects would remain alive just because
41 mappings that don't keep objects alive solely because they appear in the mapping
59 remains alive until the object is collected.
94 calling the reference object if the referent is still alive; if the referent is
95 no longer alive, calling the reference object will cause :const:`None` to be
97 weakref object is still alive, the callback will be called when the object is
115 are still alive, two references have the same equality relationship as their
125 no longer alive then this attribute will have value ``None``.
[all …]
/external/tcpdump/tests/
Disakmp4.out18 IP 192.1.2.254.4500 > 192.1.2.23.4500: isakmp-nat-keep-alive
23 IP 192.1.2.254.4500 > 192.1.2.23.4500: isakmp-nat-keep-alive
28 IP 192.1.2.254.4500 > 192.1.2.23.4500: isakmp-nat-keep-alive
34 IP 192.1.2.254.4500 > 192.1.2.23.4500: isakmp-nat-keep-alive
/external/libcxx/test/std/utilities/variant/variant.variant/variant.ctor/
Dcopy.pass.cpp84 static int alive; member
85 MakeEmptyT() { ++alive; } in MakeEmptyT()
87 ++alive; in MakeEmptyT()
94 ~MakeEmptyT() { --alive; } in ~MakeEmptyT()
97 int MakeEmptyT::alive = 0; member in MakeEmptyT
/external/curl/tests/data/
Dtest107829 Connection: keep-alive
82 Connection: keep-alive
91 Connection: keep-alive

12345678910>>...13