Home | History | Annotate | Download | only in base

Lines Matching defs:DCHECK

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 if
212 #define DCHECK(condition) \