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

1 2 3 4 5 6 7 8 91011>>

  /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);
  /external/qemu/distrib/sdl-1.2.15/test/
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;
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;
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;
  /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; }
70 bool alive = false; local
80 // We create the object inside a scope so it's not kept alive by a handle
82 TestGinObject::Create(isolate, &alive);
85 CHECK(alive);
90 CHECK(!alive);
  /external/chromium_org/net/data/quic_in_memory_cache_data/quic-datatesturl.com/
index.html 9 Keep-Alive: timeout=5, max=100
10 Connection: Keep-Alive
  /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/clang/test/SemaObjC/
weak-receiver-warn.m 12 [x addBlock: ^{ [weakx actNow]; }]; // expected-warning {{weak receiver may be unpredictably set to nil}} expected-note {{assign the value to a strong variable to keep the object alive during use}}
13 [x setBlock: ^{ [weakx actNow]; }]; // expected-warning {{weak receiver may be unpredictably set to nil}} expected-note {{assign the value to a strong variable to keep the object alive during use}}
14 x.block = ^{ [weakx actNow]; }; // expected-warning {{weak receiver may be unpredictably set to nil}} expected-note {{assign the value to a strong variable to keep the object alive during use}}
16 [weakx addBlock: ^{ [x actNow]; }]; // expected-warning {{weak receiver may be unpredictably set to nil}} expected-note {{assign the value to a strong variable to keep the object alive during use}}
17 [weakx setBlock: ^{ [x actNow]; }]; // expected-warning {{weak receiver may be unpredictably set to nil}} expected-note {{assign the value to a strong variable to keep the object alive during use}}
18 weakx.block = ^{ [x actNow]; }; // expected-warning {{weak receiver may be unpredictably set to nil}} expected-note {{assign the value to a strong variable to keep the object alive during use}}
39 [self.weak_prop Meth]; // expected-warning {{weak property may be unpredictably set to nil}} expected-note {{assign the value to a strong variable to keep the object alive during use}}
42 [self.weak_atomic_prop Meth]; // expected-warning {{weak property may be unpredictably set to nil}} expected-note {{assign the value to a strong variable to keep the object alive during use}}
44 [self.P Meth]; // expected-warning {{weak implicit property may be unpredictably set to nil}} expected-note {{assign the value to a strong variable to keep the object alive during use}}
63 [[self parent] doSomething]; // expected-warning {{weak property may be unpredictably set to nil}} expected-note {{assign the value to a strong variable to keep the object alive during use}
    [all...]
  /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/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/test/Transforms/DeadArgElim/
2008-06-23-DeadAfterLive.ll 7 ; This function has a live return value, it is used by @alive.
20 define i32 @alive() {
  /external/chromium_org/chrome/renderer/extensions/
unsafe_persistent.h 15 // UnsafePersistent is alive or 2) when there is a strong Persistent keeping the
16 // memory alive while the UnsafePersistent is alive.
  /external/chromium_org/chrome/browser/drive/
event_logger.h 42 // Can be called from any thread as long as the object is alive.
46 // Can be called from any thread as long as the object is alive.
50 // Can be called from any thread as long as the object is alive.
  /external/valgrind/main/docs/internals/
tm-threadstates.dot 3 alive;
12 alive -> running;
13 dead -> alive [ label="reused" ];
  /external/chromium/chrome/browser/ui/cocoa/
tracking_area.mm 14 // Whether or not the owner is "alive" and should forward calls to the real
21 // The Class of |owner_|. When the actual object is no longer alive (and could
25 @property(nonatomic, assign) BOOL alive;
31 @synthesize alive = alive_;
  /external/chromium/net/socket/
client_socket_pool.cc 10 // alive.
  /external/chromium_org/chrome/browser/ui/app_list/
keep_alive_service_impl.h 30 // Used to keep the browser process alive while the app list is visible.
  /external/chromium_org/ui/base/cocoa/
tracking_area.mm 14 // Whether or not the owner is "alive" and should forward calls to the real
21 // The Class of |owner_|. When the actual object is no longer alive (and could
25 @property(nonatomic, assign) BOOL alive;
31 @synthesize alive = alive_;
  /external/chromium_org/net/http/
http_pipelined_network_transaction_unittest.cc 242 "Connection: keep-alive\r\n\r\n"),
265 "Connection: keep-alive\r\n\r\n"),
268 "Connection: keep-alive\r\n\r\n"),
293 "Connection: keep-alive\r\n\r\n"),
296 "Connection: keep-alive\r\n\r\n"),
299 "Connection: keep-alive\r\n\r\n"),
302 "Connection: keep-alive\r\n\r\n"),
336 "Connection: keep-alive\r\n\r\n"),
339 "Connection: keep-alive\r\n\r\n"),
342 "Connection: keep-alive\r\n\r\n")
    [all...]
  /external/chromium/net/http/
http_proxy_utils.cc 22 // HTTP/1.1 requests. Add "Proxy-Connection: keep-alive" for compat with
29 "keep-alive");

Completed in 2432 milliseconds

1 2 3 4 5 6 7 8 91011>>