HomeSort by relevance Sort by last modified time
    Searched defs:IsDead (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/v8/src/
v8.h 88 // TODO(isolates): move IsDead to Isolate.
89 static bool IsDead() { return has_fatal_error_ || has_been_disposed_; }
api.cc 240 bool V8::IsDead() {
241 return i::V8::IsDead();
280 && i::V8::IsDead() ? ReportV8Dead(location) : false;
    [all...]
  /external/v8/src/
v8.h 87 // TODO(isolates): move IsDead to Isolate.
88 static bool IsDead() { return has_fatal_error_ || has_been_disposed_; }
api.cc 227 bool V8::IsDead() {
228 return i::V8::IsDead();
267 && i::V8::IsDead() ? ReportV8Dead(location) : false;
    [all...]
  /external/llvm/lib/Target/ARM/
A15SDOptimizer.cpp 220 bool IsDead = true;
227 IsDead = false;
237 IsDead = false;
243 if (!IsDead) continue;
  /external/clang/lib/StaticAnalyzer/Core/
BugReporter.cpp 881 bool IsDead;
883 ContextLocation(const PathDiagnosticLocation &L, bool isdead = false)
884 : PathDiagnosticLocation(L), IsDead(isdead) {}
886 void markDead() { IsDead = true; }
887 bool isDead() const { return IsDead; }
    [all...]

Completed in 287 milliseconds