HomeSort by relevance Sort by last modified time
    Searched refs:alive (Results 1 - 25 of 50) sorted by null

1 2

  /external/valgrind/main/none/tests/amd64/
nibz_bennee_mmap.stdout.exp 1 made it through alive!
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebURLRequestTest.cpp 43 explicit TestExtraData(bool* alive)
44 : m_alive(alive)
46 *alive = true;
57 bool alive = false; local
60 TestExtraData* extraData = new TestExtraData(&alive);
61 EXPECT_TRUE(alive);
68 EXPECT_TRUE(alive);
72 EXPECT_TRUE(alive);
75 EXPECT_FALSE(alive);
WebURLResponseTest.cpp 43 explicit TestExtraData(bool* alive)
44 : m_alive(alive)
46 *alive = true;
57 bool alive = false; local
60 TestExtraData* extraData = new TestExtraData(&alive);
61 EXPECT_TRUE(alive);
68 EXPECT_TRUE(alive);
72 EXPECT_TRUE(alive);
75 EXPECT_FALSE(alive);
PrerenderingTest.cpp 332 explicit TestExtraData(bool* alive) : m_alive(alive)
334 *alive = true;
343 bool alive = false; local
345 prerendererClient()->setExtraDataForNextPrerender(new TestExtraData(&alive));
347 EXPECT_TRUE(alive);
355 EXPECT_FALSE(alive);
  /external/qemu/distrib/sdl-1.2.15/test/
testerror.c 11 static int alive = 0; variable
25 while ( alive ) {
26 printf("Thread '%s' is alive!\n", (char *)data);
46 alive = 1;
54 alive = 0;
testhread.c 11 static int alive = 0; variable
24 while ( alive ) {
25 printf("Thread '%s' is alive!\n", (char *)data);
36 alive = 0;
50 alive = 1;
58 alive = 0;
61 alive = 1;
71 alive = 1;
testsem.c 14 int alive = 1; variable
19 while ( alive ) {
33 alive = 0;
91 alive = 0;
  /external/valgrind/main/none/tests/x86/
yield.c 14 static volatile int alive, running; variable
22 while(!alive)
28 while(alive)
37 while(!alive)
43 while(alive) {
62 alive = 1;
72 alive = 0;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
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]:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
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/chromium/base/
stack_container_unittest.cc 16 explicit Dummy(int* alive) : alive_(alive) {
80 int alive = 0; local
81 scoped_refptr<Dummy> dummy(new Dummy(&alive));
82 EXPECT_EQ(alive, 1);
85 EXPECT_EQ(alive, 1);
89 EXPECT_EQ(alive, 1);
94 EXPECT_EQ(alive, 0);
  /external/proguard/src/proguard/optimize/evaluation/
LivenessAnalyzer.java 59 private long alive; field in class:LivenessAnalyzer
82 * Returns whether the specified variable is alive before the instruction
93 * Sets whether the specified variable is alive before the instruction
96 public void setAliveBefore(int instructionOffset, int variableIndex, boolean alive)
100 if (alive)
113 * Returns whether the specified variable is alive after the instruction
124 * Sets whether the specified variable is alive after the instruction
127 public void setAliveAfter(int instructionOffset, int variableIndex, boolean alive)
131 if (alive)
210 alive = 0L
    [all...]
  /external/chromium_org/base/containers/
stack_container_unittest.cc 19 explicit Dummy(int* alive) : alive_(alive) {
83 int alive = 0; local
84 scoped_refptr<Dummy> dummy(new Dummy(&alive));
85 EXPECT_EQ(alive, 1);
88 EXPECT_EQ(alive, 1);
92 EXPECT_EQ(alive, 1);
97 EXPECT_EQ(alive, 0);
  /external/llvm/lib/Transforms/Scalar/
ADCE.cpp 53 SmallPtrSet<Instruction*, 128> alive; local
62 alive.insert(I.getInstructionIterator());
72 if (alive.insert(Inst))
81 if (!alive.count(I.getInstructionIterator())) {
  /external/webrtc/src/system_wrappers/source/
thread_posix.cc 356 bool alive = true; local
363 alive = false;
368 alive = false;
372 if (!alive) {
375 alive = _alive;
378 while (alive);
  /external/chromium_org/tools/perf/page_sets/tough_canvas_cases/canvas2d_balls_common/
bouncing_balls.js 94 var alive = true;
101 if (!alive) {
110 alive = true;
139 var deltaY = alive ? velocityY*timeStep+gravity*timeStep*timeStep/2 : 0;
143 while ((y + deltaY) > (1 - borderY) && alive) {
159 alive = false;
  /libcore/luni/src/test/java/libcore/java/net/
OldAndroidDatagramTest.java 44 boolean alive = true; field in class:OldAndroidDatagramTest.Reflector
56 while (alive) {
158 reflector.alive = false;
  /external/libppp/src/
radius.h 77 } alive; member in struct:radius
radius.c     [all...]
  /external/iputils/
iputils.spec 6 Summary: The ping program for checking to see if network hosts are alive.
21 specified network host and can tell you if that machine is alive and
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_thread_registry.cc 108 uptr *alive) {
112 if (alive) *alive = alive_threads_;
sanitizer_thread_registry.h 81 void GetNumberOfThreads(uptr *total = 0, uptr *running = 0, uptr *alive = 0);
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_thread_registry_test.cc 35 uptr total, running, alive; local
36 registry->GetNumberOfThreads(&total, &running, &alive);
39 EXPECT_EQ(exp_alive, alive);
  /external/chromium_org/chrome/renderer/resources/extensions/
tts_custom_bindings.js 49 // Keep the page alive until the event finishes.
  /device/generic/goldfish/camera/
EmulatedFakeCamera3.h 175 bool alive; member in struct:android::EmulatedFakeCamera3::PrivateStreamInfo

Completed in 1455 milliseconds

1 2