Searched refs:predicate (Results 1 - 7 of 7) sorted by relevance
/bionic/tools/relocation_packer/src/ |
H A D | debug.h | 10 // 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 D | debug.cc | 14 // the level set with SetVerbose() and predicate is true. 15 Logger::Logger(Severity severity, int level, bool predicate) { argument 18 predicate_ = predicate;
|
/bionic/linker/ |
H A D | linker_debug.h | 62 #define CHECK(predicate) { \ 63 if (!(predicate)) { \ 64 __libc_fatal("%s:%d: %s CHECK '" #predicate "' failed", \
|
H A D | linked_list.h | 158 void remove_if(F predicate) { argument 160 if (predicate(e->element)) { 183 T* find_if(F predicate) const { 185 if (predicate(e->element)) {
|
H A D | linker.cpp | 1719 auto predicate = [&](soinfo* si) { 1727 soinfo* si = ns->soinfo_list().find_if(predicate); 1731 si = g_public_namespace.find_if(predicate);
|
/bionic/libc/bionic/ |
H A D | pthread_atfork.cpp | 77 void remove_if(F predicate) { argument 80 if (predicate(it)) {
|
/bionic/tests/ |
H A D | math_data_test.h | 154 FpUlpEq<ULP, RT> predicate; local 156 EXPECT_PRED_FORMAT2(predicate, 200 FpUlpEq<ULP, RT> predicate; local 202 EXPECT_PRED_FORMAT2(predicate, 279 FpUlpEq<ULP, RT> predicate; local 281 EXPECT_PRED_FORMAT2(predicate,
|
Completed in 192 milliseconds