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

  /external/regex-re2/util/
logging.h 14 #define DCHECK(condition) assert(condition)
  /external/v8/src/base/
logging.h 151 // The DCHECK macro is equivalent to CHECK except that it only
154 #define DCHECK(condition) CHECK(condition)
165 #define DCHECK(condition) ((void) 0)
  /external/v8/src/
date.cc 32 DCHECK(stamp_ != Smi::FromInt(kInvalidStamp));
94 DCHECK(days >= -1);
95 DCHECK(is_leap || (days >= 0));
96 DCHECK((days < 365) || (is_leap && (days < 366)));
97 DCHECK(is_leap == ((*year % 4 == 0) && (*year % 100 || (*year % 400 == 0))));
98 DCHECK(is_leap || ((DaysFromYearMonth(*year, 0) + days) == save_days));
99 DCHECK(!is_leap || ((DaysFromYearMonth(*year, 0) + days + 1) == save_days));
125 DCHECK(DaysFromYearMonth(*year, *month) + *day - 1 == save_days);
147 DCHECK(month >= 0);
148 DCHECK(month < 12)
    [all...]
hashmap.h 173 DCHECK(occupancy_ < capacity_);
233 DCHECK(map_ - 1 <= p && p < end);
246 DCHECK(key != NULL);
248 DCHECK(base::bits::IsPowerOfTwo32(capacity_));
251 DCHECK(map_ <= p && p < end);
253 DCHECK(occupancy_ < capacity_); // Guarantees loop termination.
268 DCHECK(base::bits::IsPowerOfTwo32(capacity));
d8.cc 61 #ifndef DCHECK
62 #define DCHECK(condition) assert(condition)
359 DCHECK(false); // A new compile option?
398 DCHECK(try_catch.HasCaught());
403 DCHECK(!try_catch.HasCaught());
433 DCHECK(!try_catch.HasCaught());
560 DCHECK(try_catch.HasCaught());
1032 DCHECK(counter->is_histogram() == is_histogram);
    [all...]
  /system/core/base/include/android-base/
logging.h 231 #define DCHECK(x) \
  /art/runtime/base/
logging.h 182 #define DCHECK(x) if (::art::kEnableDChecks) CHECK(x)
  /external/ceres-solver/internal/ceres/miniglog/glog/
logging.h 347 # define DCHECK(condition) LOG_IF_FALSE(FATAL, condition) \
351 # define DCHECK(condition) if (false) LOG_IF_FALSE(FATAL, condition) \
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_internal_defs.h 229 #define DCHECK(a) CHECK(a)
237 #define DCHECK(a)
  /external/libweave/third_party/chromium/base/
logging.h 513 // is not defined). Contrast this with DCHECK et al., which has
540 // Definitions for DCHECK et al.
559 // DCHECK et al. make sure to reference |condition| regardless of
561 // variable warnings if the only use of a variable is in a DCHECK.
564 #define DCHECK(condition) \
565 LAZY_STREAM(LOG_STREAM(DCHECK), DCHECK_IS_ON() ? !(condition) : false) \
611 #define NOTREACHED() DCHECK(false)
697 // 3 -- Fail at runtime (DCHECK)
  /system/extras/perfprofd/quipper/base/
logging.h 335 // is not defined). Contrast this with DCHECK et al., which has
369 // Definitions for DCHECK et al.
388 // DCHECK et al. make sure to reference |condition| regardless of
390 // variable warnings if the only use of a variable is in a DCHECK.
393 #define DCHECK(condition) \
394 LAZY_STREAM(LOG_STREAM(DCHECK), DCHECK_IS_ON && !(condition)) \
398 LAZY_STREAM(PLOG_STREAM(DCHECK), DCHECK_IS_ON && !(condition)) \
442 #define NOTREACHED() DCHECK(false)
630 // 3 -- Fail at runtime (DCHECK)
  /external/libchrome/base/
logging.h 636 // is not defined). Contrast this with DCHECK et al., which has
670 // Definitions for DCHECK et al.
689 // DCHECK et al. make sure to reference |condition| regardless of
691 // variable warnings if the only use of a variable is in a DCHECK.
697 #define DCHECK(condition) \
699 LAZY_STREAM(LOG_STREAM(DCHECK), false) \
704 LAZY_STREAM(PLOG_STREAM(DCHECK), false) \
709 #define DCHECK(condition) \
710 LAZY_STREAM(LOG_STREAM(DCHECK), DCHECK_IS_ON() ? !(condition) : false) \
714 LAZY_STREAM(PLOG_STREAM(DCHECK), DCHECK_IS_ON() ? !(condition) : false)
    [all...]
  /external/v8/src/arm64/
assembler-arm64-inl.h 22 DCHECK(RelocInfo::IsInternalReference(rmode_));
33 DCHECK(IsCodeTarget(rmode_) || IsRuntimeEntry(rmode_));
46 DCHECK(IsValid());
52 DCHECK(IsValidOrNone());
58 DCHECK(static_cast<size_t>(reg_code) < (sizeof(RegList) * kBitsPerByte));
64 DCHECK(IsValid());
70 DCHECK(IsValid());
71 DCHECK(SizeInBits() % 8 == 0);
77 DCHECK(IsValid());
83 DCHECK(IsValid())
    [all...]

Completed in 375 milliseconds