Searched refs:alive (Results 1 - 25 of 42) sorted by relevance

12

/external/valgrind/main/none/tests/amd64/
H A Dnibz_bennee_mmap.stdout.exp1 made it through alive!
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DWebURLRequestTest.cpp43 explicit TestExtraData(bool* alive) argument
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);
H A DWebURLResponseTest.cpp43 explicit TestExtraData(bool* alive) argument
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);
H A DPrerenderingTest.cpp326 explicit TestExtraData(bool* alive) : m_alive(alive) argument
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/
H A Dmock_voe_connection_observer.h23 bool alive));
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtesterror.c11 static int alive = 0; variable
25 while ( alive ) {
26 printf("Thread '%s' is alive!\n", (char *)data);
46 alive = 1;
54 alive = 0;
H A Dtesthread.c11 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;
H A Dtestsem.c14 int alive = 1; variable
19 while ( alive ) {
33 alive = 0;
91 alive = 0;
/external/chromium_org/content/renderer/
H A Dgin_browsertest.cc25 static gin::Handle<TestGinObject> Create(v8::Isolate* isolate, bool* alive) { argument
26 return gin::CreateHandle(isolate, new TestGinObject(alive));
30 TestGinObject(bool* alive) : alive_(alive) { *alive_ = true; } argument
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/
H A Dyield.c14 static volatile int alive, running; variable
22 while(!alive)
28 while(alive)
37 while(!alive)
43 while(alive) {
62 alive = 1;
72 alive = 0;
/external/chromium_org/base/containers/
H A Dstack_container_unittest.cc19 explicit Dummy(int* alive) : alive_(alive) { argument
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/proguard/src/proguard/optimize/evaluation/
H A DLivenessAnalyzer.java59 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) argument
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) argument
141 if (alive)
220 alive
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DADCE.cpp57 SmallPtrSet<Instruction*, 128> alive;
66 alive.insert(I.getInstructionIterator());
76 if (alive.insert(Inst))
85 if (!alive.count(I.getInstructionIterator())) {
/external/chromium_org/tools/perf/page_sets/tough_canvas_cases/canvas2d_balls_common/
H A Dbouncing_balls.js94 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;
/external/chromium_org/media/cast/net/rtp/
H A Dmock_rtp_feedback.h26 void(const int32 id, const RTPAliveType alive));
/external/chromium_org/third_party/webrtc/voice_engine/include/
H A Dvoe_network.h47 // This method will be called peridically and deliver dead-or-alive
50 virtual void OnPeriodicDeadOrAlive(int channel, bool alive) = 0;
/external/webrtc/src/system_wrappers/source/
H A Dthread_posix.cc356 bool alive = true; local
363 alive = false;
368 alive = false;
372 if (!alive) {
375 alive = _alive;
378 while (alive);
/external/chromium_org/third_party/skia/tests/
H A DResourceCacheTest.cpp93 static int alive() { return fAlive; } function in class:TestResource
137 REPORTER_ASSERT(reporter, 3 == TestResource::alive());
141 REPORTER_ASSERT(reporter, 0 == TestResource::alive());
167 REPORTER_ASSERT(reporter, 2 == TestResource::alive());
169 REPORTER_ASSERT(reporter, 0 == TestResource::alive());
186 REPORTER_ASSERT(reporter, 0 == TestResource::alive());
/external/skia/tests/
H A DResourceCacheTest.cpp91 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/iputils/
H A Diputils.spec6 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/
H A Dthread_posix.cc329 bool alive = true; local
331 while (alive) {
337 alive = alive_;
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_thread_registry_test.cc37 uptr total, running, alive; local
38 registry->GetNumberOfThreads(&total, &running, &alive);
41 EXPECT_EQ(exp_alive, alive);
/external/chromium_org/native_client_sdk/src/examples/demo/life_simd/
H A Dlife.cc76 // values. The health is binary: either alive or dead.
388 // If count > 4 and < 8, center cell will be alive in the next frame.
392 u8x16_t alive = alive1 & alive2;
394 // At this point, alive[x] will be one of two values:
396 // 0xFF for an alive cell.
398 // Next, convert alive cells to green pixel color.
400 // concantination of alive vector and kZero255 const vector.
401 // Indices 0..15 select the 16 cells from alive vector.
407 u8x16_t pixel0_3 = __builtin_shufflevector(alive, kZero255,
409 u8x16_t pixel4_7 = __builtin_shufflevector(alive, kZero25
[all...]
/external/chromium_org/tools/telemetry/third_party/pyserial/serial/tools/
H A Dminiterm.py199 self.alive = True
207 self.alive = False
244 while self.alive and self._reader_alive:
275 self.alive = False
289 while self.alive:
462 self.alive = False
/external/chromium_org/ui/file_manager/video_player/js/cast/
H A Dcast_video_element.js442 * @param {boolean} alive Media availability. False if it's unavailable.
445 onCastMediaUpdated_: function(alive) {
452 !alive) {
496 if (!alive) {

Completed in 6057 milliseconds

12