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/linker/
H A Dlinker_debug.h62 #define CHECK(predicate) { \
63 if (!(predicate)) { \
64 __libc_fatal("%s:%d: %s CHECK '" #predicate "' failed", \
H A Dlinked_list.h158 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 Dlinker.cpp1719 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 Dpthread_atfork.cpp77 void remove_if(F predicate) { argument
80 if (predicate(it)) {
/bionic/tests/
H A Dmath_data_test.h154 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