/external/libcxx/test/std/experimental/language.support/support.coroutines/end.to.end/ |
D | fullexpr-dtor.pass.cpp | 20 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/ |
D | LivenessAnalyzer.java | 59 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/support/ |
D | variant_test_helpers.hpp | 34 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
|
D | archetypes.hpp | 30 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/optional/optional.object/optional.object.assign/ |
D | move.pass.cpp | 29 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 …]
|
D | const_optional_U.pass.cpp | 92 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()
|
D | optional_U.pass.cpp | 96 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()
|
D | nullopt_t.pass.cpp | 47 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()
|
D | emplace.pass.cpp | 123 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()
|
D | assign_value.pass.cpp | 92 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/std/utilities/variant/variant.variant/variant.assign/ |
D | copy.pass.cpp | 62 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/valgrind/none/tests/x86/ |
D | yield.c | 14 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/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/ |
D | move.pass.cpp | 99 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 …]
|
D | copy.pass.cpp | 89 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/python/cpython3/Lib/test/ |
D | fork_wait.py | 23 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/ |
D | fork_wait.py | 26 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/ |
D | bbee1a5b80629cb532c4f7db220d668a.00000367.honggfuzz.cov | 2 HTTTTTTTTTTTTTTTTTTTTTTTTTTTTction: keep-alive 4 Connection: keep-alive 6 Connection: keep-alive 37 Connection: keep-alive
|
/external/honggfuzz/examples/apache-httpd/corpus_http2/ |
D | bbee1a5b80629cb532c4f7db220d668a.00000367.honggfuzz.cov | 2 HTTTTTTTTTTTTTTTTTTTTTTTTTTTTction: keep-alive 4 Connection: keep-alive 6 Connection: keep-alive 37 Connection: keep-alive
|
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/ |
D | ADCE.cpp | 53 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/python/cpython2/Demo/threads/ |
D | sync.py | 498 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/libcxx/test/std/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.mem/ |
D | do_allocate_and_deallocate.pass.cpp | 48 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/tcpdump/tests/ |
D | isakmp4.out | 18 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/python/cpython3/Doc/library/ |
D | weakref.rst | 25 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/compiler-rt/test/asan/TestCases/Darwin/ |
D | dead-strip.c | 13 int alive[1] = {}; variable 19 alive[argc] = 0; in main()
|
/external/curl/tests/data/ |
D | test1078 | 29 Connection: keep-alive 82 Connection: keep-alive 91 Connection: keep-alive
|