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

  /external/webkit/Tools/DumpRenderTree/chromium/
config.h 41 #define DCHECK(condition) while (false && (condition)) std::cerr
  /external/regex-re2/util/
logging.h 14 #define DCHECK(condition) assert(condition)
  /external/valgrind/tsan/
ts_util.h 260 #define DCHECK(a) CHECK(a)
263 #define DCHECK(a) do { if (0) { if (a) {} } } while((void)0, 0)
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_blocking_page.cc 182 DCHECK(unsafe_resources_[0].threat_type ==
230 DCHECK(resource.threat_type == SafeBrowsingService::URL_PHISHING);
240 DCHECK(phishing || malware);
444 DCHECK(colon_index < command.size() - 1);
449 DCHECK(result);
462 DCHECK(unsafe_resources_[element_index].threat_type ==
478 DCHECK(unsafe_resources_[element_index].threat_type ==
521 DCHECK(action_taken() != DONT_PROCEED_ACTION);
566 DCHECK(strings.GetString("title", &title));
  /external/chromium/googleurl/base/
logging.h 246 #define DCHECK(condition) \
336 #define DCHECK_INDEX(I,A) DCHECK(I < (sizeof(A)/sizeof(A[0])))
337 #define DCHECK_BOUND(B,A) DCHECK(B <= (sizeof(A)/sizeof(A[0])))
353 // non-debug mode. The DCHECK and friends macros use this so that
354 // the expanded expression DCHECK(foo) << "asdf" is still syntactically
359 #define DCHECK(condition) \
394 #define NOTREACHED() DCHECK(false)
  /external/chromium/base/
logging.h 570 // is not defined). Contrast this with DCHECK et al., which has
618 // Definitions for DCHECK et al.
632 LOG_IS_ON(DCHECK))
658 // DCHECK et al. make sure to reference |condition| regardless of
660 // variable warnings if the only use of a variable is in a DCHECK.
663 #define DCHECK(condition) \
664 LAZY_STREAM(LOG_STREAM(DCHECK), DCHECK_IS_ON() && !(condition)) \
668 LAZY_STREAM(PLOG_STREAM(DCHECK), DCHECK_IS_ON() && !(condition)) \
708 #define NOTREACHED() DCHECK(false)
    [all...]

Completed in 147 milliseconds