HomeSort by relevance Sort by last modified time
    Searched refs:LOG_IF (Results 1 - 25 of 169) sorted by null

1 2 3 4 5 6 7

  /external/chromium_org/gpu/command_buffer/service/
gl_utils.h 19 LOG_IF(ERROR, gl_error != GL_NO_ERROR) << "GL Error :" << gl_error; \
  /external/chromium_org/rlz/lib/
assert.h 18 #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/
debug_unittest.cc 34 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");
debug.h 10 // 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) \
106 #define CHECK(predicate) (LOG_IF(FATAL, !(predicate)) \
  /external/chromium_org/third_party/android_crazy_linker/src/src/
crazy_linker_debug.h 33 #define LOG_IF(cond, ...) \
  /ndk/sources/android/crazy_linker/src/
crazy_linker_debug.h 33 #define LOG_IF(cond, ...) \
  /external/chromium_org/win8/metro_driver/ime/
ime_popup_monitor.cc 68 LOG_IF(ERROR, !g_hook_handle_) << "SetWinEventHook failed.";
78 LOG_IF(ERROR, !unhook_succeeded) << "UnhookWinEvent failed.";
  /external/chromium_org/mojo/system/
proxy_message_pipe_endpoint.cc 40 LOG_IF(WARNING, !channel_endpoint_->EnqueueMessage(message.Pass()))
  /external/chromium_org/chrome/browser/chromeos/drive/
remove_stale_cache_files.cc 26 LOG_IF(WARNING, error != FILE_ERROR_OK)
  /external/chromium_org/content/common/
plugin_list_posix.cc 25 LOG_IF(ERROR, PluginList::DebugPluginLoading())
  /external/qemu/android/filesystems/
ext4_utils.cpp 24 #define EXT4_LOG LOG_IF(INFO, DEBUG_EXT4)
26 #define EXT4_ERROR LOG_IF(ERROR, DEBUG_EXT4)
  /external/qemu/android/base/
Log.h 92 // It's possible to do conditional logging with LOG_IF()
104 // LOG_IF(INFO, fuelInjector::hasOptimalLevel())
107 #define LOG_IF(severity, condition) \
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/content/child/npapi/
plugin_lib.cc 93 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/
aw_picture.cc 48 LOG_IF(ERROR, !ok) << "Couldn't draw picture";
  /external/chromium_org/chrome/test/logging/win/
file_logger.cc 120 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/
openssl_private_key_store_android.cc 44 LOG_IF(ERROR, !ret) << "StoreKeyPair failed. pub len = " << public_len
  /external/ceres-solver/internal/ceres/
line_search_minimizer.cc 138 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;
  /external/chromium_org/components/copresence/rpc/
http_post.cc 90 LOG_IF(WARNING, status.error())
92 LOG_IF(WARNING, !response.empty()) << "HTTP response: " << response;
  /external/chromium_org/content/browser/
power_save_blocker_mac.cc 84 LOG_IF(ERROR, result != kIOReturnSuccess)
95 LOG_IF(ERROR, result != kIOReturnSuccess)
  /external/ceres-solver/internal/ceres/miniglog/glog/
logging.h 295 #define LOG_IF(severity, condition) \
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/chromium_org/sync/internal_api/
read_node.cc 49 LOG_IF(WARNING, model_type == UNSPECIFIED || model_type == TOP_LEVEL_FOLDER)
108 LOG_IF(WARNING, found_model_type == UNSPECIFIED ||
  /external/qemu/android/kernel/
kernel_utils.cpp 28 #define KERNEL_LOG LOG_IF(INFO, DEBUG_KERNEL)
30 #define KERNEL_ERROR LOG_IF(ERROR, DEBUG_KERNEL)
  /external/chromium_org/chrome/installer/util/
eula_util.cc 67 LOG_IF(DFATAL, prod_state.is_multi_install())
  /external/chromium_org/net/quic/congestion_control/
tcp_loss_algorithm.cc 48 LOG_IF(DFATAL, it->nack_count == 0)
time_loss_algorithm.cc 49 LOG_IF(DFATAL, it->nack_count == 0)

Completed in 1440 milliseconds

1 2 3 4 5 6 7