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

  /external/v8/src/
v8.h 88 // TODO(isolates): move IsDead to Isolate.
89 static bool IsDead() { return has_fatal_error_ || has_been_disposed_; }
v8.cc 71 if (IsDead()) return false;
api.cc 215 bool V8::IsDead() {
216 return i::V8::IsDead();
255 && i::V8::IsDead() ? ReportV8Dead(location) : false;
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineOperand.h 67 /// IsDef/IsImp/IsKill/IsDead flags - These are only valid for MO_Register
82 /// IsDead - True if this register is never used by a subsequent instruction.
84 bool IsDead : 1;
246 bool isDead() const {
248 return IsDead;
338 IsDead = Val;
452 /// operand. Note: This method ignores isKill and isDead properties.
464 bool isKill = false, bool isDead = false,
490 bool isKill = false, bool isDead = false,
499 Op.IsDead = isDead
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
V8Proxy.cpp 467 if (v8::V8::IsDead())
521 if (v8::V8::IsDead())
535 if (v8::V8::IsDead())
553 if (v8::V8::IsDead())
  /external/clang/lib/StaticAnalyzer/Core/
BugReporter.cpp 825 bool IsDead;
827 ContextLocation(const PathDiagnosticLocation &L, bool isdead = false)
828 : PathDiagnosticLocation(L), IsDead(isdead) {}
830 void markDead() { IsDead = true; }
831 bool isDead() const { return IsDead; }
892 if (!CLocs.back().isDead() && CLocs.back().asLocation().isFileID()) {
    [all...]
  /external/llvm/lib/CodeGen/
MachineInstr.cpp 156 bool isKill, bool isDead, bool isUndef,
179 IsDead = isDead;
242 if (isDef() || isKill() || isDead() || isImplicit() || isUndef() ||
259 if (isKill() || isDead() || isUndef()) {
262 if (isDead()) OS << "dead";
264 if (isKill() || isDead())
770 if (Check == CheckKillDead && MO.isDead() != OMO.isDead())
    [all...]
  /external/v8/include/
v8.h     [all...]

Completed in 107 milliseconds