Searched refs:LOG_IF (Results 1 - 25 of 166) sorted by relevance

1234567

/external/chromium_org/gpu/command_buffer/service/
H A Dgl_utils.h19 LOG_IF(ERROR, gl_error != GL_NO_ERROR) << "GL Error :" << gl_error; \
/external/chromium_org/rlz/lib/
H A Dassert.h18 #define ASSERT_STRING(expr) LOG_IF(FATAL, false) << (expr)
24 LOG_IF(FATAL, false) << (expr); \
33 #define VERIFY(expr) LOG_IF(FATAL, !(expr)) << #expr
/external/chromium_org/tools/relocation_packer/src/
H A Ddebug_unittest.cc34 LOG_IF(INFO, true) << "INFO log message";
35 LOG_IF(INFO, false) << "INFO log message, SHOULD NOT PRINT";
36 LOG_IF(WARNING, true) << "WARNING log message";
37 LOG_IF(WARNING, false) << "WARNING log message, SHOULD NOT PRINT";
38 LOG_IF(ERROR, true) << "ERROR log message";
39 LOG_IF(ERROR, false) << "ERROR log message, SHOULD NOT PRINT";
40 LOG_IF(FATAL, false) << "FATAL log message, SHOULD NOT PRINT";
106 LOG_IF(FATAL, true) << "FATAL log message", "FATAL: FATAL log message");
H A Ddebug.h10 // LOG_IF(tag, predicate) logs if predicate evaluates to true, else silent.
90 // severity is FATAL. LOG_IF(severity, predicate) does the same but only if
95 #define LOG_IF(severity, predicate) \ macro
106 #define CHECK(predicate) (LOG_IF(FATAL, !(predicate)) \
/external/chromium_org/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_debug.h33 #define LOG_IF(cond, ...) \ macro
/external/chromium_org/win8/metro_driver/ime/
H A Dime_popup_monitor.cc68 LOG_IF(ERROR, !g_hook_handle_) << "SetWinEventHook failed.";
78 LOG_IF(ERROR, !unhook_succeeded) << "UnhookWinEvent failed.";
/external/chromium_org/mojo/system/
H A Dproxy_message_pipe_endpoint.cc40 LOG_IF(WARNING, !channel_endpoint_->EnqueueMessage(message.Pass()))
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dremove_stale_cache_files.cc26 LOG_IF(WARNING, error != FILE_ERROR_OK)
/external/chromium_org/content/common/
H A Dplugin_list_posix.cc25 LOG_IF(ERROR, PluginList::DebugPluginLoading())
/external/qemu/android/filesystems/
H A Dext4_utils.cpp24 #define EXT4_LOG LOG_IF(INFO, DEBUG_EXT4)
26 #define EXT4_ERROR LOG_IF(ERROR, DEBUG_EXT4)
/external/chromium_org/content/child/npapi/
H A Dplugin_lib.cc93 LOG_IF(ERROR, PluginList::DebugPluginLoading())
119 LOG_IF(ERROR, PluginList::DebugPluginLoading())
194 LOG_IF(ERROR, PluginList::DebugPluginLoading())
241 LOG_IF(ERROR, PluginList::DebugPluginLoading())
246 LOG_IF(ERROR, PluginList::DebugPluginLoading())
297 LOG_IF(ERROR, PluginList::DebugPluginLoading())
309 LOG_IF(ERROR, PluginList::DebugPluginLoading())
/external/chromium_org/android_webview/native/
H A Daw_picture.cc48 LOG_IF(ERROR, !ok) << "Couldn't draw picture";
/external/chromium_org/chrome/test/logging/win/
H A Dfile_logger.cc120 LOG_IF(ERROR, FAILED(hr)) << "Failed to disable event provider "
140 LOG_IF(ERROR, FAILED(hr) &&
180 LOG_IF(ERROR, FAILED(hr))
183 LOG_IF(ERROR, FAILED(hr))
/external/chromium_org/net/base/
H A Dopenssl_private_key_store_android.cc44 LOG_IF(ERROR, !ret) << "StoreKeyPair failed. pub len = " << public_len
/external/ceres-solver/internal/ceres/
H A Dline_search_minimizer.cc138 LOG_IF(WARNING, is_not_silent) << "Terminating: " << summary->message;
202 LOG_IF(ERROR, is_not_silent) << "Terminating: " << summary->message;
257 LOG_IF(WARNING, is_not_silent) << "Terminating: " << summary->message;
266 LOG_IF(WARNING, is_not_silent)
307 LOG_IF(WARNING, is_not_silent) << "Terminating: " << summary->message;
323 LOG_IF(WARNING, is_not_silent) << "Terminating: " << summary->message;
340 LOG_IF(WARNING, is_not_silent) << "Terminating: " << summary->message;
351 LOG_IF(WARNING, is_not_silent) << "Terminating: " << summary->message;
H A Dline_search.cc278 LOG_IF(WARNING, !options().is_silent) << summary->error;
296 LOG_IF(WARNING, !options().is_silent) << summary->error;
549 LOG_IF(WARNING, !options().is_silent)
571 LOG_IF(WARNING, !options().is_silent) << summary->error;
610 LOG_IF(WARNING, !options().is_silent) << summary->error;
694 LOG_IF(WARNING, !options().is_silent) << summary->error;
715 LOG_IF(WARNING, !options().is_silent) << summary->error;
727 LOG_IF(WARNING, !options().is_silent) << summary->error;
778 LOG_IF(WARNING, !options().is_silent) << summary->error;
/external/chromium_org/components/copresence/rpc/
H A Dhttp_post.cc90 LOG_IF(WARNING, status.error())
92 LOG_IF(WARNING, !response.empty()) << "HTTP response: " << response;
/external/chromium_org/content/browser/
H A Dpower_save_blocker_mac.cc84 LOG_IF(ERROR, result != kIOReturnSuccess)
95 LOG_IF(ERROR, result != kIOReturnSuccess)
/external/ceres-solver/internal/ceres/miniglog/glog/
H A Dlogging.h295 #define LOG_IF(severity, condition) \ macro
300 #define LOG_IF_FALSE(severity, condition) LOG_IF(severity, !(condition))
306 # define LOG(n) LOG_IF(n, n <= MAX_LOG_LEVEL)
307 # define VLOG(n) LOG_IF(n, n <= MAX_LOG_LEVEL)
308 # define LG LOG_IF(INFO, INFO <= MAX_LOG_LEVEL)
309 # define VLOG_IF(n, condition) LOG_IF(n, (n <= MAX_LOG_LEVEL) && condition)
314 # define VLOG_IF(n, condition) LOG_IF(n, condition)
/external/qemu/android/base/
H A DLog.h92 // It's possible to do conditional logging with LOG_IF()
104 // LOG_IF(INFO, fuelInjector::hasOptimalLevel())
107 #define LOG_IF(severity, condition) \ macro
120 // A variant of LOG_IF() that also appends the string message corresponding
137 LOG_IF(FATAL, !(condition)) << "Check failed: " #condition ". "
201 #define DLOG(severity) LOG_IF(severity, DLOG_IS_ON())
206 LOG_IF(severity, DLOG_IS_ON() && (condition))
213 LOG_IF(FATAL, DCHECK_IS_ON() && !(condition)) \
/external/chromium_org/sync/internal_api/
H A Dread_node.cc49 LOG_IF(WARNING, model_type == UNSPECIFIED || model_type == TOP_LEVEL_FOLDER)
108 LOG_IF(WARNING, found_model_type == UNSPECIFIED ||
/external/qemu/android/kernel/
H A Dkernel_utils.cpp28 #define KERNEL_LOG LOG_IF(INFO, DEBUG_KERNEL)
30 #define KERNEL_ERROR LOG_IF(ERROR, DEBUG_KERNEL)
/external/chromium_org/chrome/installer/util/
H A Deula_util.cc67 LOG_IF(DFATAL, prod_state.is_multi_install())
/external/chromium_org/net/quic/congestion_control/
H A Dtcp_loss_algorithm.cc48 LOG_IF(DFATAL, it->nack_count == 0)
H A Dtime_loss_algorithm.cc49 LOG_IF(DFATAL, it->nack_count == 0)

Completed in 5715 milliseconds

1234567