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

1 2 3

  /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 326 explicit TestExtraData(bool* alive) : m_alive(alive)
328 *alive = true;
337 bool alive = false; local
339 prerendererClient()->setExtraDataForNextPrerender(new TestExtraData(&alive));
341 EXPECT_TRUE(alive);
349 EXPECT_FALSE(alive);
  /external/chromium_org/third_party/webrtc/voice_engine/include/mock/
mock_voe_connection_observer.h 23 bool 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/chromium_org/content/renderer/
gin_browsertest.cc 25 static gin::Handle<TestGinObject> Create(v8::Isolate* isolate, bool* alive) {
26 return gin::CreateHandle(isolate, new TestGinObject(alive));
30 TestGinObject(bool* alive) : alive_(alive) { *alive_ = true; }
62 bool alive = false; local
70 // We create the object inside a scope so it's not kept alive by a handle
72 TestGinObject::Create(isolate, &alive);
75 CHECK(alive);
80 CHECK(!alive);
  /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/proguard/src/proguard/optimize/evaluation/
LivenessAnalyzer.java 59 private long alive; field in class:LivenessAnalyzer
92 * Returns whether the specified variable is alive before the instruction
103 * Sets whether the specified variable is alive before the instruction
106 public void setAliveBefore(int instructionOffset, int variableIndex, boolean alive)
110 if (alive)
123 * Returns whether the specified variable is alive after the instruction
134 * Sets whether the specified variable is alive after the instruction
137 public void setAliveAfter(int instructionOffset, int variableIndex, boolean alive)
141 if (alive)
220 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/chromium_org/third_party/webrtc/voice_engine/include/
voe_network.h 15 // - Dead-or-Alive connection observations.
47 // This method will be called peridically and deliver dead-or-alive
50 virtual void OnPeriodicDeadOrAlive(int channel, bool alive) = 0;
  /external/llvm/lib/Transforms/Scalar/
ADCE.cpp 57 SmallPtrSet<Instruction*, 128> alive;
66 alive.insert(I.getInstructionIterator());
76 if (alive.insert(Inst))
85 if (!alive.count(I.getInstructionIterator())) {
  /external/chromium_org/media/cast/rtp_receiver/rtp_parser/include/mock/
mock_rtp_feedback.h 26 void(const int32 id, const RTPAliveType alive));
  /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/chromium_org/third_party/skia/tests/
ResourceCacheTest.cpp 91 static int alive() { return fAlive; } function in class:TestResource
135 REPORTER_ASSERT(reporter, 3 == TestResource::alive());
139 REPORTER_ASSERT(reporter, 0 == TestResource::alive());
165 REPORTER_ASSERT(reporter, 2 == TestResource::alive());
167 REPORTER_ASSERT(reporter, 0 == TestResource::alive());
184 REPORTER_ASSERT(reporter, 0 == TestResource::alive());
  /external/skia/tests/
ResourceCacheTest.cpp 91 static int alive() { return fAlive; } function in class:TestResource
135 REPORTER_ASSERT(reporter, 3 == TestResource::alive());
139 REPORTER_ASSERT(reporter, 0 == TestResource::alive());
165 REPORTER_ASSERT(reporter, 2 == TestResource::alive());
167 REPORTER_ASSERT(reporter, 0 == TestResource::alive());
184 REPORTER_ASSERT(reporter, 0 == TestResource::alive());
  /external/chromium_org/native_client_sdk/src/examples/demo/life_simd/
life.c 90 * values. The health is binary: either alive or dead.
322 /* If count > 4 and < 8, center cell will be alive in the next frame. */
326 u8x16_t alive = alive1 & alive2; local
329 * At this point, alive[x] will be one of two values:
331 * 0xFF for an alive cell.
333 * Next, convert alive cells to green pixel color.
335 * concantination of alive vector and kZero255 const vector.
336 * Indices 0..15 select the 16 cells from alive vector.
343 u8x16_t pixel0_3 = __builtin_shufflevector(alive, kZero255,
345 u8x16_t pixel4_7 = __builtin_shufflevector(alive, kZero255
    [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/chromium_org/third_party/webrtc/system_wrappers/source/
thread_posix.cc 329 bool alive = true; local
331 while (alive) {
337 alive = alive_;

Completed in 780 milliseconds

1 2 3