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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
logger.cc 17 #include "phonenumbers/logger.h"
24 Logger* Logger::impl_ = NULL;
logger.h 47 class Logger {
49 Logger() : level_(LOG_ERROR) {}
50 virtual ~Logger() {}
65 static inline Logger* set_logger_impl(Logger* logger) {
66 impl_ = logger;
67 return logger;
70 static inline Logger* mutable_logger_impl() {
75 static Logger* impl_
    [all...]
  /frameworks/base/tests/CoreTests/android/core/
MiscRegressionTest.java 20 import java.util.logging.Logger;
29 Logger.global.severe("This has logging Level.SEVERE, should become ERROR");
30 Logger.global.warning("This has logging Level.WARNING, should become WARN");
31 Logger.global.info("This has logging Level.INFO, should become INFO");
32 Logger.global.config("This has logging Level.CONFIG, should become DEBUG");
33 Logger.global.fine("This has logging Level.FINE, should become VERBOSE");
34 Logger.global.finer("This has logging Level.FINER, should become VERBOSE");
35 Logger.global.finest("This has logging Level.FINEST, should become VERBOSE");
  /external/clang/tools/libclang/
CLog.h 30 class Logger;
31 typedef IntrusiveRefCntPtr<Logger> LogRef;
36 /// if (LogRef Log = Logger::make(__func__)) {
40 class Logger : public RefCountedBase<Logger> {
52 if (const char *EnvOpt = Logger::getEnvVar())
59 return new Logger(name, trace);
63 explicit Logger(llvm::StringRef name, bool trace)
65 ~Logger();
67 Logger &operator<<(CXTranslationUnit)
    [all...]
  /external/chromium_org/gpu/command_buffer/service/
logger.cc 5 #include "gpu/command_buffer/service/logger.h"
16 Logger::Logger(const DebugMarkerManager* debug_marker_manager)
20 Logger* this_temp = this;
25 Logger::~Logger() {}
27 void Logger::LogMessage(
53 const std::string& Logger::GetLogPrefix() const {
58 void Logger::SetMsgCallback(const MsgCallback& callback) {
logger.h 5 // This file contains the Logger class.
22 class GPU_EXPORT Logger {
26 explicit Logger(const DebugMarkerManager* debug_marker_manager);
27 ~Logger();
51 DISALLOW_COPY_AND_ASSIGN(Logger);
  /libcore/dalvik/src/main/java/dalvik/system/
DalvikLogHandler.java 20 import java.util.logging.Logger;
41 * @param tag the short (23 characters or fewer) logger tag identifying
42 * {@code logger}.
44 void publish(Logger source, String tag, Level level, String message);
  /frameworks/base/core/java/com/android/internal/logging/
AndroidConfig.java 20 import java.util.logging.Logger;
37 Logger rootLogger = Logger.getLogger("");
42 Logger.getLogger("org.apache").setLevel(Level.WARNING);
  /external/chromium_org/gpu/command_buffer/common/
logging.cc 11 std::ostream& Logger::stream() {
15 Logger::~Logger() {
logging.h 30 // This is a very simple logger for use in command buffer code. Common and
33 class GLES2_UTILS_EXPORT Logger {
35 Logger(bool condition, LogLevel level)
41 static Logger CheckTrue(const X& x,
46 return Logger(true, FATAL);
48 return Logger(false, FATAL)
54 static Logger CheckEqual(const X& x, const Y& y,
59 return Logger(true, FATAL);
61 return Logger(false, FATAL)
68 static Logger CheckNotEqual(const X& x, const Y& y
    [all...]
logging_android.cc 18 std::ostream& Logger::stream() {
24 Logger::~Logger() {
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/log/
Logger.java 10 * Logger delegating to JRE logging.
13 * @version $Id: Logger.java 41 2011-06-02 10:36:41Z dkocher@sudo.ch $
15 public class Logger
18 private java.util.logging.Logger delegate;
20 public static Logger getLogger(Class x)
22 return new Logger(x);
25 public Logger(Class x)
27 this.delegate = java.util.logging.Logger.getLogger(x.getName());
  /external/v8/src/
cpu-profiler-inl.h 68 Logger::LogEventsAndTags tag) {
70 && (tag != Logger::CALLBACK_TAG
71 && tag != Logger::FUNCTION_TAG
72 && tag != Logger::LAZY_COMPILE_TAG
73 && tag != Logger::REG_EXP_TAG
74 && tag != Logger::SCRIPT_TAG);
log-inl.h 37 Logger::LogEventsAndTags Logger::ToNativeByScript(Logger::LogEventsAndTags tag,
profile-generator-inl.h 46 CodeEntry::CodeEntry(Logger::LogEventsAndTags tag,
62 bool CodeEntry::is_js_function_tag(Logger::LogEventsAndTags tag) {
63 return tag == Logger::FUNCTION_TAG
64 || tag == Logger::LAZY_COMPILE_TAG
65 || tag == Logger::SCRIPT_TAG
66 || tag == Logger::NATIVE_FUNCTION_TAG
67 || tag == Logger::NATIVE_LAZY_COMPILE_TAG
68 || tag == Logger::NATIVE_SCRIPT_TAG;
  /external/chromium_org/v8/src/
log-inl.h 36 Logger::LogEventsAndTags Logger::ToNativeByScript(Logger::LogEventsAndTags tag,
profile-generator-inl.h 46 CodeEntry::CodeEntry(Logger::LogEventsAndTags tag,
63 bool CodeEntry::is_js_function_tag(Logger::LogEventsAndTags tag) {
64 return tag == Logger::FUNCTION_TAG
65 || tag == Logger::LAZY_COMPILE_TAG
66 || tag == Logger::SCRIPT_TAG
67 || tag == Logger::NATIVE_FUNCTION_TAG
68 || tag == Logger::NATIVE_LAZY_COMPILE_TAG
69 || tag == Logger::NATIVE_SCRIPT_TAG;
  /external/apache-harmony/logging/src/test/java-internal/java/util/logging/
LoggerExtension.java 28 return Logger.loadResourceBundle(resourceBundleName);
  /external/chromium_org/chrome/test/chromedriver/chrome/
log.h 36 class Logger : public Log {
38 // Creates a logger with a minimum level of |kDebug|.
39 Logger();
40 explicit Logger(Level min_log_level);
41 virtual ~Logger();
  /external/stressapptest/src/
logger.cc 15 #include "logger.h"
30 Logger *Logger::GlobalLogger() {
31 static Logger logger; local
32 return &logger;
35 void Logger::VLogF(int priority, const char *format, va_list args) {
48 void Logger::StartThread() {
54 void Logger::StopThread() {
67 Logger::Logger() : verbosity_(20), log_fd_(-1), thread_running_(false)
    [all...]
logger.h 34 // This is only for use by the Logger class, do not use it elsewhere!
36 // All Logger assertions should use this macro instead of sat_assert().
40 // Logging from within the wrong part of the logger would trigger a deadlock,
42 // logger is in no condition to handle new log lines.
57 class Logger {
59 // Returns a pointer to the single global Logger instance. Will not return
61 static Logger *GlobalLogger();
108 Logger();
110 ~Logger();
139 DISALLOW_COPY_AND_ASSIGN(Logger);
    [all...]
  /frameworks/base/tests/AccessoryDisplay/common/src/com/android/accessorydisplay/common/
Logger.java 19 public abstract class Logger {
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldLoggerTest.java 28 import java.util.logging.Logger;
53 // The root logger always exists TODO
55 Logger.getLogger("", INVALID_RESOURCE_BUNDLE);
62 assertNull(Logger.global.getFilter());
63 assertEquals(0, Logger.global.getHandlers().length);
64 assertNull(Logger.global.getLevel());
65 assertEquals("global", Logger.global.getName());
66 assertNull(Logger.global.getParent().getParent());
67 assertNull(Logger.global.getResourceBundle());
68 assertNull(Logger.global.getResourceBundleName())
    [all...]
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/logging/
Logger.java 26 * Use {@link #getLogger(Class)} to create an instance of Logger that automatically inserts the
28 * log output then use {@link #getLogger()} to create the instance of Logger.
30 public class Logger {
36 public static Logger getLogger(Class<?> classZ) {
37 return new Logger(classZ.getSimpleName() + ": ");
44 public static Logger getLogger() {
45 return new Logger();
51 private Logger() {
56 private Logger(String logPrefix) {
  /external/chromium_org/chrome/browser/notifications/
notification_test_util.h 40 // |Logger| class provided in template must implement method
42 template<class Logger>
51 Logger::log("notification displayed\n");
54 Logger::log("notification error\n");
57 Logger::log("notification clicked\n");
60 Logger::log("notification button clicked\n");
64 Logger::log("notification closed by user\n");
66 Logger::log("notification closed by script\n");

Completed in 728 milliseconds

1 2 3 4 5 6 7 8 91011>>