Searched refs:predicate (Results 1 - 7 of 7) sorted by relevance

/bionic/tools/relocation_packer/src/
H A Ddebug.h10 // LOG_IF(tag, predicate) logs if predicate evaluates to true, else silent.
15 // VLOG_IF(level, predicate) logs INFO if predicate evaluates to true,
18 // CHECK(predicate) logs a FATAL error if predicate is false.
37 // equal to the level set with SetVerbose() and predicate is true.
40 // |predicate| controls if the logger prints or is silent.
41 Logger(Severity severity, int level, bool predicate);
64 // Message severity, verbosity level, and predicate
[all...]
H A Ddebug.cc14 // the level set with SetVerbose() and predicate is true.
15 Logger::Logger(Severity severity, int level, bool predicate) { argument
18 predicate_ = predicate;
/bionic/libc/private/
H A Dlibc_logging.h95 #define CHECK(predicate) \
97 if (!(predicate)) { \
98 __libc_fatal("%s:%d: %s CHECK '" #predicate "' failed", \
/bionic/libc/bionic/
H A Dpthread_atfork.cpp77 void remove_if(F predicate) { argument
80 if (predicate(it)) {
/bionic/linker/
H A Dlinked_list.h174 void remove_if(F predicate) { argument
176 if (predicate(e->element)) {
205 T* find_if(F predicate) const {
207 if (predicate(e->element)) {
H A Dlinker.cpp1123 auto predicate = [&](soinfo* si) { local
1131 *candidate = ns->soinfo_list().find_if(predicate);
1136 soinfo* si = linked_ns->soinfo_list().find_if(predicate);
/bionic/tests/
H A Dmath_data_test.h170 FpUlpEq<ULP, RT> predicate; local
172 EXPECT_PRED_FORMAT2(predicate,
216 FpUlpEq<ULP, RT> predicate; local
218 EXPECT_PRED_FORMAT2(predicate,
295 FpUlpEq<ULP, RT> predicate; local
297 EXPECT_PRED_FORMAT2(predicate,

Completed in 191 milliseconds