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

1 2 3

  /external/lldb/include/lldb/Utility/
PythonPointer.h 70 bool IsNone() { return ptr_ == Py_None; }
  /external/v8/src/
hydrogen-removable-simulates.cc 30 !current_simulate->ast_id().IsNone()) {
66 } else if (current_simulate->ast_id().IsNone()) {
property-details.h 112 if (IsHeapObject()) return other.IsNone();
129 DCHECK(!IsNone());
143 bool IsNone() const { return kind_ == kNone; }
hydrogen-infer-representation.cc 143 if (phi->representation().IsNone()) {
149 if (current->representation().IsNone() &&
hydrogen-representation-changes.cc 66 if (r.IsNone()) return;
76 if (req.IsNone() || req.Equals(r)) continue;
types.cc 620 if (type1->IsNone() || type2->IsAny()) return type1; // Shortcut.
621 if (type2->IsNone() || type1->IsAny()) return type2; // Shortcut.
661 DCHECK(old_range->IsRange() || old_range->IsNone());
748 if (type1->IsAny() || type2->IsNone()) return type1;
749 if (type2->IsAny() || type1->IsNone()) return type2;
818 if (size >= 2 && unioned->Get(0)->IsNone()) {
    [all...]
hydrogen-range-analysis.cc 174 if (!value->representation().IsNone()) {
assembler.h 439 static inline bool IsNone(Mode mode) {
    [all...]
compiler.h 98 bool is_osr() const { return !osr_ast_id_.IsNone(); }
lithium.cc 535 DCHECK(!ast_id.IsNone() ||
hydrogen-instructions.cc 82 if (rep.IsNone()) continue;
    [all...]
  /external/v8/src/compiler/
instruction-selector-impl.h 228 bool IsNone() const { return mode_ == kFlags_none; }
232 DCHECK(!IsNone());
249 DCHECK(!IsNone());
254 DCHECK(!IsNone());
  /external/v8/src/arm64/
assembler-arm64-inl.h 84 DCHECK(!IsNone());
87 DCHECK(IsNone());
107 inline bool CPURegister::IsNone() const {
144 return IsValid() || IsNone();
187 if (!other1.IsNone() && (other1.type() == type_)) Remove(other1.code());
188 if (!other2.IsNone() && (other2.type() == type_)) Remove(other2.code());
189 if (!other3.IsNone() && (other3.type() == type_)) Remove(other3.code());
190 if (!other4.IsNone() && (other4.type() == type_)) Remove(other4.code());
    [all...]
assembler-arm64.h 67 bool IsNone() const;
120 DCHECK(IsRegister() || IsNone());
249 DCHECK(IsFPRegister() || IsNone());
542 if (!other1.IsNone() && (other1.type() == type_)) list |= other1.Bit();
543 if (!other2.IsNone() && (other2.type() == type_)) list |= other2.Bit();
544 if (!other3.IsNone() && (other3.type() == type_)) list |= other3.Bit();
545 if (!other4.IsNone() && (other4.type() == type_)) list |= other4.Bit();
    [all...]
macro-assembler-arm64.cc     [all...]
  /external/v8/src/ia32/
assembler-ia32-inl.h 414 if (rmode == RelocInfo::CODE_TARGET && !id.IsNone()) {
416 } else if (!RelocInfo::IsNone(rmode)
438 if (!RelocInfo::IsNone(x.rmode_)) RecordRelocInfo(x.rmode_);
455 DCHECK(RelocInfo::IsNone(x.rmode_));
assembler-ia32.cc 157 if (disp == 0 && RelocInfo::IsNone(rmode) && !base.is(ebp)) {
161 } else if (is_int8(disp) && RelocInfo::IsNone(rmode)) {
182 if (disp == 0 && RelocInfo::IsNone(rmode) && !base.is(ebp)) {
186 } else if (is_int8(disp) && RelocInfo::IsNone(rmode)) {
1113 if (RelocInfo::IsNone(imm.rmode_) && is_uint8(imm.x_)) {
1151 if (RelocInfo::IsNone(imm.rmode_) && is_uint8(imm.x_)) {
    [all...]
assembler-ia32.h 289 bool is_zero() const { return x_ == 0 && RelocInfo::IsNone(rmode_); }
291 return -128 <= x_ && x_ < 128 && RelocInfo::IsNone(rmode_);
294 return -32768 <= x_ && x_ < 32768 && RelocInfo::IsNone(rmode_);
    [all...]
  /external/v8/src/x87/
assembler-x87-inl.h 415 if (rmode == RelocInfo::CODE_TARGET && !id.IsNone()) {
417 } else if (!RelocInfo::IsNone(rmode)
439 if (!RelocInfo::IsNone(x.rmode_)) RecordRelocInfo(x.rmode_);
456 DCHECK(RelocInfo::IsNone(x.rmode_));
assembler-x87.cc 152 if (disp == 0 && RelocInfo::IsNone(rmode) && !base.is(ebp)) {
156 } else if (is_int8(disp) && RelocInfo::IsNone(rmode)) {
177 if (disp == 0 && RelocInfo::IsNone(rmode) && !base.is(ebp)) {
181 } else if (is_int8(disp) && RelocInfo::IsNone(rmode)) {
1046 if (RelocInfo::IsNone(imm.rmode_) && is_uint8(imm.x_)) {
1084 if (RelocInfo::IsNone(imm.rmode_) && is_uint8(imm.x_)) {
    [all...]
assembler-x87.h 281 bool is_zero() const { return x_ == 0 && RelocInfo::IsNone(rmode_); }
283 return -128 <= x_ && x_ < 128 && RelocInfo::IsNone(rmode_);
286 return -32768 <= x_ && x_ < 32768 && RelocInfo::IsNone(rmode_);
    [all...]
  /external/vixl/src/vixl/a64/
macro-assembler-a64.cc     [all...]
assembler-a64.h 64 VIXL_ASSERT(IsNone());
130 VIXL_ASSERT(!IsNone());
133 VIXL_ASSERT(IsNone());
156 bool IsNone() const {
232 return IsValid() || IsNone();
248 VIXL_ASSERT(IsRegister() || IsNone());
280 VIXL_ASSERT(IsVRegister() || IsNone());
    [all...]
  /external/clang/unittests/AST/
ASTTypeTraitsTest.cpp 29 TEST(ASTNodeKind, IsNone) {
30 EXPECT_TRUE(ASTNodeKind().isNone());
31 EXPECT_FALSE(DNT<Decl>().isNone());
32 EXPECT_FALSE(DNT<VarDecl>().isNone());
79 ASTNodeKind::getMostDerivedType(DNT<IfStmt>(), DNT<VarDecl>()).isNone());
81 DNT<BinaryOperator>()).isNone());
99 DNT<IfStmt>(), DNT<VarDecl>()).isNone());
  /external/v8/src/x64/
assembler-x64-inl.h 38 if (!RelocInfo::IsNone(rmode)) {
62 if (rmode == RelocInfo::CODE_TARGET && !ast_id.IsNone()) {

Completed in 506 milliseconds

1 2 3