Searched defs:DCHECK (Results 1 - 11 of 11) sorted by relevance

/external/pdfium/third_party/base/
H A Dlogging.h25 // hassle. Look into pulling in the real DCHECK definition. It might be more
28 #define DCHECK CHECK macro
/external/v8/src/base/
H A Dlogging.h214 // The DCHECK macro is equivalent to CHECK except that it only
217 #define DCHECK(condition) CHECK(condition) macro
228 #define DCHECK(condition) ((void) 0)
H A Dhashmap.h227 DCHECK(occupancy_ < capacity_);
286 DCHECK(map_ - 1 <= entry && entry < end);
300 DCHECK(base::bits::IsPowerOfTwo32(capacity_));
302 DCHECK(i < capacity_); function
304 DCHECK(occupancy_ < capacity_); // Guarantees loop termination.
318 DCHECK(!entry->exists());
336 DCHECK(base::bits::IsPowerOfTwo32(capacity));
/external/perf_data_converter/src/quipper/mybase/base/
H A Dlogging.h137 #define DCHECK(x) CHECK(x) macro
/external/v8/src/
H A Ddate.cc32 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(mont function
[all...]
H A Dd8.cc55 #ifndef DCHECK
56 #define DCHECK(condition) assert(condition) macro
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_catc
[all...]
/external/tensorflow/tensorflow/core/platform/default/
H A Dlogging.h263 #define DCHECK(condition) CHECK(condition) macro
273 #define DCHECK(condition) \
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_internal_defs.h233 #define DCHECK(a) CHECK(a) macro
241 #define DCHECK(a) macro
/external/v8/src/heap/
H A Dgc-tracer.h332 DCHECK(scope < Scope::NUMBER_OF_SCOPES); function
/external/libchrome/base/
H A Dlogging.h739 // 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 of
781 // variable warnings if the only use of a variable is in a DCHECK.
784 // Note that the definition of the DCHECK macros depends on whether or not
791 #define DCHECK(condition) \ macro
793 LAZY_STREAM(LOG_STREAM(DCHECK), false) \
798 LAZY_STREAM(PLOG_STREAM(DCHECK), false) \
809 #define DCHECK(condition) \ macro
811 LOG_STREAM(DCHECK), \
825 #define DCHECK macro
834 #define DCHECK macro
[all...]
/external/v8/src/arm64/
H A Dassembler-arm64-inl.h23 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(!IsNon
1200 DCHECK(pc_ < (buffer_ + buffer_size_)); function
[all...]

Completed in 4721 milliseconds