HomeSort by relevance Sort by last modified time
    Searched defs:Logger (Results 51 - 75 of 286) sorted by null

1 23 4 5 6 7 8 91011>>

  /build/soong/finder/
finder.go 136 type Logger interface {
147 logger Logger
166 logger Logger, dbPath string) (f *Finder, err error) {
167 return newImpl(cacheParams, filesystem, logger, dbPath, defaultNumThreads)
172 logger Logger, dbPath string, numThreads int) (f *Finder, err error) {
188 logger: logger,
    [all...]
  /external/autotest/client/site_tests/video_YouTubeMseEme/files/
video_YouTubeMseEme.js 10 var logger = new Logger();
11 window.__logger = logger;
22 function Logger() {
116 logger.log('XHR errored.');
121 logger.log('XHR timed out.');
  /external/emma/core/java12/com/vladium/logging/
Logger.java 7 * $Id: Logger.java,v 1.1.1.1.2.2 2004/07/16 23:32:29 vlad_r Exp $
28 * A simple Java version-independent logging framework. Each Logger is also
30 * logging verbosity level etc. In general, a Logger is looked up as an
37 * different from the usual log4j pattern of caching a logger in a class static
43 * <LI> message is prefixed with the prefix string set in the Logger if that is
52 * MT-safety: a given Logger instance will not get corrupted by concurrent
61 final class Logger implements ILogLevels
68 public static Logger create (final int level, final PrintWriter out, final String prefix, final Set classMask)
76 return new Logger (level, out, prefix, classMask);
89 public static Logger create (final int level, final PrintWriter out, final String prefix, final Set classMask
    [all...]
  /frameworks/base/services/core/java/com/android/server/connectivity/
IpConnectivityMetrics.java 145 LocalServices.addService(Logger.class, new LoggerImpl());
373 public interface Logger {
377 private class LoggerImpl implements Logger {
  /packages/apps/Contacts/src/com/android/contacts/activities/
ContactEditorSpringBoardActivity.java 26 import com.android.contacts.logging.Logger;
114 Logger.logEditorEvent(
191 Logger.logEditorEvent(
  /system/core/base/
logging.cpp 128 static LogFunction& Logger() {
130 static auto& logger = *new LogFunction(LogdLogger()); local
132 static auto& logger = *new LogFunction(StderrLogger);
134 return logger;
276 void InitLogging(char* argv[], LogFunction&& logger, AbortFunction&& aborter) {
277 SetLogger(std::forward<LogFunction>(logger));
334 void SetLogger(LogFunction&& logger) {
336 Logger() = std::move(logger);
473 Logger()(id, severity, gDefaultTag->c_str(), file, line, message)
    [all...]
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
LoggerTest.java 37 import java.util.logging.Logger;
42 * Test suite for the class java.util.logging.Logger.
65 private Logger sharedLogger = null;
99 * Test the global logger
102 assertNull(Logger.global.getFilter());
103 assertEquals(0, Logger.global.getHandlers().length);
104 assertNull(Logger.global.getLevel());
105 assertEquals("global", Logger.global.getName());
106 assertNull(Logger.global.getParent().getParent());
107 assertNull(Logger.global.getResourceBundle())
299 Logger logger = Logger.getLogger("", null); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/logging/
__init__.py 30 'LogRecord', 'Logger', 'LoggerAdapter', 'NOTSET', 'NullHandler',
259 # is done. For example, logger.warn('Value is %d', 0) would log
362 %(name)s Name of the logger (logging channel)
538 below a certain point in the logger hierarchy. For example, a filter
547 Initialize with the name of the logger which, together with its
    [all...]
  /external/fonttools/Lib/fontTools/
subset.py     [all...]
  /external/python/cpython2/Lib/logging/
__init__.py 30 'LogRecord', 'Logger', 'LoggerAdapter', 'NOTSET', 'NullHandler',
254 # is done. For example, logger.warn('Value is %d', 0) would log
363 %(name)s Name of the logger (logging channel)
471 # Issue 25664. The logger name may be Unicode. Try again ...
551 below a certain point in the logger hierarchy. For example, a filter
560 Initialize with the name of the logger which, together with its
    [all...]
  /external/testng/src/main/java/org/testng/log4testng/
Logger.java 41 * # The org.testng.reporters.EmailableReporter Logger will log TRACE level and above
42 * log4testng.logger.org.testng.reporters.EmailableReporter=TRACE
44 * # All Logger in packages below org.testng will log WARN level and above
45 * log4testng.logger.org.testng=WARN
50 * import org.testng.log4testng.Logger;
53 * private static final Logger LOGGER = Logger.getLogger(ThisClass.class);
56 * LOGGER.debug("entering myMethod()");
58 * LOGGER.warn("unknown file: " + filename);
148 Logger logger= loggers.get(pClass); local
373 String logger= (String) entry.getKey(); local
    [all...]
  /libcore/ojluni/src/main/java/java/util/logging/
Logger.java 44 * A Logger object is used to log messages for a specific
46 * using a hierarchical dot-separated namespace. Logger names
50 * "anonymous" Loggers that are not stored in the Logger namespace.
52 * Logger objects may be obtained by calls on one of the getLogger
53 * factory methods. These will either create a new Logger or
54 * return a suitable existing Logger. It is important to note that
55 * the Logger returned by one of the {@code getLogger} factory methods
57 * Logger is not kept.
63 * Each Logger keeps track of a "parent" Logger, which is it
736 Logger logger = this; local
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/list/
MultiSelectContactsListFragment.java 41 import com.android.contacts.logging.Logger;
157 Logger.logListEvent(ActionType.SELECT, getListType(),
  /prebuilts/gdb/darwin-x86/lib/python2.7/logging/
__init__.py 30 'LogRecord', 'Logger', 'LoggerAdapter', 'NOTSET', 'NullHandler',
259 # is done. For example, logger.warn('Value is %d', 0) would log
362 %(name)s Name of the logger (logging channel)
542 below a certain point in the logger hierarchy. For example, a filter
551 Initialize with the name of the logger which, together with its
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/logging/
__init__.py 30 'LogRecord', 'Logger', 'LoggerAdapter', 'NOTSET', 'NullHandler',
259 # is done. For example, logger.warn('Value is %d', 0) would log
362 %(name)s Name of the logger (logging channel)
542 below a certain point in the logger hierarchy. For example, a filter
551 Initialize with the name of the logger which, together with its
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/
__init__.py 30 'LogRecord', 'Logger', 'LoggerAdapter', 'NOTSET', 'NullHandler',
259 # is done. For example, logger.warn('Value is %d', 0) would log
362 %(name)s Name of the logger (logging channel)
542 below a certain point in the logger hierarchy. For example, a filter
551 Initialize with the name of the logger which, together with its
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/logging/
__init__.py 30 'LogRecord', 'Logger', 'LoggerAdapter', 'NOTSET', 'NullHandler',
259 # is done. For example, logger.warn('Value is %d', 0) would log
362 %(name)s Name of the logger (logging channel)
542 below a certain point in the logger hierarchy. For example, a filter
551 Initialize with the name of the logger which, together with its
    [all...]
  /external/slf4j/log4j-over-slf4j/compatibility/lib/
log4j-over-slf4j-1.4.2.jar 
slf4j-api-1.4.2.jar 
  /external/v8/src/
log.cc 691 Logger* logger = isolate_->logger(); local
692 logger->ticker_->SetProfiler(this);
694 logger->ProfilerBeginEvent();
702 isolate_->logger()->ticker_->ClearProfiler();
729 // Logger class implementation.
732 Logger::Logger(Isolate* isolate)
746 Logger::~Logger()
    [all...]
  /external/clang/lib/Frontend/
CompilerInstance.cpp 166 auto Logger = llvm::make_unique<LogDiagnosticPrinter>(*OS, DiagOpts,
169 Logger->setDwarfDebugFlags(CodeGenOpts->DwarfDebugFlags);
172 new ChainedDiagnosticConsumer(Diags.takeClient(), std::move(Logger)));
    [all...]
  /external/python/cpython3/Lib/logging/
__init__.py 32 'LogRecord', 'Logger', 'LoggerAdapter', 'NOTSET', 'NullHandler',
268 # is done. For example, logger.warning('Value is %d', 0) would log
442 %(name)s Name of the logger (logging channel)
647 below a certain point in the logger hierarchy. For example, a filter
656 Initialize with the name of the logger which, together with its
    [all...]
  /prebuilts/tools/common/m2/repository/com/esotericsoftware/minlog/minlog/1.2/
minlog-1.2.jar 
  /prebuilts/misc/common/robolectric/3.5.1/lib/
utils-3.5.1.jar 
  /prebuilts/tools/common/mkidentity/
mkidentity-prebuilt.jar 

Completed in 1604 milliseconds

1 23 4 5 6 7 8 91011>>