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

  /external/pdfium/third_party/base/
logging.h 25 // hassle. Look into pulling in the real DCHECK definition. It might be more
28 #define DCHECK CHECK
  /external/perf_data_converter/src/quipper/mybase/base/
logging.h 137 #define DCHECK(x) CHECK(x)
  /external/v8/src/base/
logging.h 214 // The DCHECK macro is equivalent to CHECK except that it only
217 #define DCHECK(condition) CHECK(condition)
228 #define DCHECK(condition) ((void) 0)
hashmap.h 227 DCHECK(occupancy_ < capacity_);
286 DCHECK(map_ - 1 <= entry && entry < end);
300 DCHECK(base::bits::IsPowerOfTwo32(capacity_));
302 DCHECK(i < capacity_);
304 DCHECK(occupancy_ < capacity_); // Guarantees loop termination.
318 DCHECK(!entry->exists());
336 DCHECK(base::bits::IsPowerOfTwo32(capacity));
  /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...]
d8.cc 55 #ifndef DCHECK
56 #define DCHECK(condition) assert(condition)
497 DCHECK(false); // A new compile option?
534 DCHECK(try_catch.HasCaught());
539 DCHECK(!try_catch.HasCaught());
593 DCHECK(IsAbsolutePath(path));
595 DCHECK(last_slash != std::string::npos);
685 DCHECK(IsAbsolutePath(file_name));
753 DCHECK(try_catch.HasCaught());
758 DCHECK(!try_catch.HasCaught())
    [all...]
  /external/tensorflow/tensorflow/core/platform/default/
logging.h 263 #define DCHECK(condition) CHECK(condition)
273 #define DCHECK(condition) \
  /external/v8/src/heap/
gc-tracer.h 332 DCHECK(scope < Scope::NUMBER_OF_SCOPES);
  /system/core/base/include/android-base/
logging.h 351 #define DCHECK(x) \
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_internal_defs.h 233 #define DCHECK(a) CHECK(a)
241 #define DCHECK(a)
  /external/libchrome/base/
logging.h 739 // Contrast this with DCHECK et al., which has different behavior.
760 // Definitions for DCHECK et al.
779 // DCHECK et al. make sure to reference |condition| regardless o
    [all...]
  /external/v8/src/arm64/
assembler-arm64-inl.h 23 DCHECK(RelocInfo::IsInternalReference(rmode_));
31 DCHECK(IsValid());
37 DCHECK(IsValidOrNone());
43 DCHECK(static_cast<size_t>(reg_code) < (sizeof(RegList) * kBitsPerByte));
49 DCHECK(IsValid());
55 DCHECK(IsValid());
56 DCHECK(SizeInBits() % 8 == 0);
62 DCHECK(IsValid());
68 DCHECK(IsValid());
75 DCHECK(!IsNone())
    [all...]

Completed in 405 milliseconds