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

  /external/chromium_org/third_party/cld/encodings/compact_lang_det/win/
cld_logging.h 16 #undef DCHECK
17 #define DCHECK(expr)
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/
logging.h 28 #if !defined(DCHECK)
29 #define DCHECK(X) assert(X)
  /external/chromium_org/content/browser/loader/
resource_buffer.cc 47 DCHECK(!IsInitialized());
68 DCHECK(IsInitialized());
78 DCHECK(IsInitialized());
91 DCHECK(CanAllocate());
115 DCHECK(alloc_start_ >= min_alloc_size_);
121 DCHECK(alloc_end_ < alloc_start_);
143 DCHECK(!alloc_sizes_.empty());
144 DCHECK(alloc_end_ >= alloc_sizes_.back());
149 DCHECK(!alloc_sizes_.empty());
164 DCHECK(!alloc_sizes_.empty())
    [all...]
  /external/chromium_org/gpu/command_buffer/client/
cmd_buffer_helper.cc 181 DCHECK(HaveRingBuffer());
201 DCHECK(HaveRingBuffer());
244 DCHECK(HaveRingBuffer());
245 DCHECK(count < total_entry_count_);
  /external/chromium_org/third_party/re2/util/
logging.h 19 #define DCHECK(condition) assert(condition)
  /external/regex-re2/util/
logging.h 14 #define DCHECK(condition) assert(condition)
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/
screen_capturer_x11.cc 34 #define DCHECK(condition) (void)(condition)
36 #define DCHECK(condition) if (!(condition)) {abort();}
256 DCHECK(!callback_);
257 DCHECK(callback);
309 DCHECK(!mouse_shape_observer_);
310 DCHECK(mouse_shape_observer);
316 DCHECK(screens->size() == 0);
335 DCHECK(damage_event->level == XDamageReportNonEmpty);
356 DCHECK(has_xfixes_);
438 DCHECK(differ_.get() != NULL)
    [all...]
  /external/qemu/android/base/
Log.h 157 // ENABLE_DCHECK controls how DCHECK() statements are compiled:
158 // 0 - DCHECK() are not compiled in the binary at all.
159 // 1 - DCHECK() are compiled, but are not performed at runtime, unless
160 // the DCHECK level has been increased explicitely.
161 // 2 - DCHECK() are always compiled as CHECK() in the final binary.
180 // DCHECK_IS_ON() is used to indicate whether DCHECK() should do anything.
182 // NOTE: Compile-time constant ensures the DCHECK() statements are
191 // A function that returns true iff DCHECK() should actually do any checking.
194 // Change the DCHECK() level to either false or true. Should only be called
208 // DCHECK(condition) is used to perform CHECK() in debug builds, or i
    [all...]
  /art/runtime/base/
logging.h 81 #define DCHECK(x) CHECK(x)
94 #define DCHECK(condition) \
  /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/chromium_org/media/base/
yuv_convert.cc 433 DCHECK(dest_rect_left >= 0 && dest_rect_right <= dest_width);
434 DCHECK(dest_rect_top >= 0 && dest_rect_bottom <= dest_height);
435 DCHECK(dest_rect_right > dest_rect_left);
436 DCHECK(dest_rect_bottom > dest_rect_top);
506 DCHECK(source_row < source_height);
  /external/chromium_org/third_party/cld/encodings/compact_lang_det/
cldutil.cc 481 DCHECK(usrclen >= 0);
642 DCHECK(src < srclimit);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_internal_defs.h 235 #define DCHECK(a) CHECK(a)
243 #define DCHECK(a)
  /external/chromium_org/base/
logging.h 563 // is not defined). Contrast this with DCHECK et al., which has
597 // Definitions for DCHECK et al.
616 // DCHECK et al. make sure to reference |condition| regardless of
618 // variable warnings if the only use of a variable is in a DCHECK.
621 #define DCHECK(condition) \
622 LAZY_STREAM(LOG_STREAM(DCHECK), DCHECK_IS_ON && !(condition)) \
626 LAZY_STREAM(PLOG_STREAM(DCHECK), DCHECK_IS_ON && !(condition)) \
670 #define NOTREACHED() DCHECK(false)
    [all...]
  /external/chromium_org/chrome/browser/safe_browsing/
safe_browsing_blocking_page.cc 269 DCHECK(threat_type == SB_THREAT_TYPE_URL_PHISHING ||
274 DCHECK(phishing || malware);
430 DCHECK(colon_index < command.size() - 1);
452 DCHECK(threat_type == SB_THREAT_TYPE_URL_PHISHING ||
474 DCHECK(unsafe_resources_[element_index].threat_type ==
    [all...]
  /external/chromium_org/third_party/cld/base/
logging.h 496 // Real DCHECK-heavy tests have seen 1.5x speedups.
748 #define DCHECK(condition) CHECK(condition)
781 #define DCHECK(condition) \
    [all...]

Completed in 907 milliseconds