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

12 3 4 5 6 7 8 91011>>

  /external/emma/core/java12/com/vladium/emma/
Processor.java 13 import com.vladium.logging.Logger;
40 final Logger current = Logger.getLogger ();
41 final Logger log = AppLoggers.create (m_appName, toolProperties, current);
51 Logger.push (log);
60 Logger.pop (m_log);
112 protected Logger m_log; // not null only within run()
AppLoggers.java 16 import com.vladium.logging.Logger;
36 public static Logger create (final String appName, final IProperties properties, final Logger base)
47 level = Logger.stringToLevel (_level);
73 return Logger.create (level, null, appName, filter, base);
  /external/guava/guava-testlib/src/com/google/common/testing/
SloppyTearDown.java 23 import java.util.logging.Logger;
38 public static final Logger logger = field in class:SloppyTearDown
39 Logger.getLogger(SloppyTearDown.class.getName());
46 logger.log(Level.INFO,
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/
Version.java 6 import java.util.logging.Logger;
12 private static final Logger LOG = Logger.getLogger(Version.class.getName());
  /external/webrtc/src/system_wrappers/source/
trace_unittest.cc 22 class Logger : public webrtc::CpuTarget {
24 Logger() {
31 virtual ~Logger() {
47 Logger logger; local
52 CpuMeasurementHarness::Create(&logger, periodicity_ms,
  /external/chromium_org/chrome/test/webdriver/
webdriver_key_converter.h 17 class Logger;
33 const Logger& logger,
  /external/chromium/chrome/browser/notifications/
notification_test_util.h 39 // |Logger| class provided in template must implement method
41 template<class Logger>
50 Logger::log("notification displayed\n");
53 Logger::log("notification error\n");
56 Logger::log("notification clicked\n");
60 Logger::log("notification closed by user\n");
62 Logger::log("notification closed by script\n");
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
default_logger.h 20 #include "phonenumbers/logger.h"
28 using i18n::phonenumbers::Logger;
57 LoggerHandler(Logger* impl) : impl_(impl) {}
74 Logger* const impl_;
78 Logger* const logger_impl = Logger::mutable_logger_impl();
90 // Default logger implementation used by PhoneNumberUtil class. It outputs the
92 class StdoutLogger : public Logger {
  /libcore/luni/src/main/java/java/util/logging/
LogManager.java 37 * {@code Logger} objects.
86 * {@code Logger} (the {@code Logger} named ""). These
91 * some logger, etc. These classes will be loaded and instantiated during
108 * with ".level". Thus "alogger.level" defines a level for the logger named as
111 * the property file. The root logger's level can be defined by the property
115 * {@code LogManager} while synchronized on a {@code Logger}.
141 private Hashtable<String, Logger> loggers;
166 // if global logger has been initialized, set root as its parent
167 Logger root = new Logger("", null)
429 Logger logger = getLogger(name); local
    [all...]
  /external/chromium_org/third_party/npapi/npspy/include/
logger.h 48 class Logger
68 Logger();
69 ~Logger();
102 Logger * NewLogger();
103 void DeleteLogger(Logger * logger);
  /external/v8/src/
log-utils.h 36 class Logger;
65 explicit Log(Logger* logger);
104 Logger* logger_;
106 friend class Logger;
117 explicit LogMessageBuilder(Logger* logger);
  /external/emma/core/java12/com/vladium/emma/rt/
RTCoverageDataPersister.java 16 import com.vladium.logging.Logger;
45 final Logger log = Logger.getLogger ();
  /external/guava/guava/src/com/google/common/io/
Closeables.java 25 import java.util.logging.Logger;
37 @VisibleForTesting static final Logger logger field in class:Closeables
38 = Logger.getLogger(Closeables.class.getName());
83 logger.log(Level.WARNING,
101 logger.log(Level.SEVERE, "IOException should not have been thrown.", e);
Flushables.java 24 import java.util.logging.Logger;
34 private static final Logger logger field in class:Flushables
35 = Logger.getLogger(Flushables.class.getName());
59 logger.log(Level.WARNING,
77 logger.log(Level.SEVERE, "IOException should not have been thrown.", e);
  /external/guava/guava/src/com/google/common/util/concurrent/
UncaughtExceptionHandlers.java 24 import java.util.logging.Logger;
51 private static final Logger logger = Logger.getLogger(Exiter.class.getName()); field in class:UncaughtExceptionHandlers.Exiter
61 logger.log(SEVERE, String.format("Caught an exception in %s. Shutting down.", t), e);
  /external/jmdns/src/javax/jmdns/impl/tasks/
RecordReaper.java 9 import java.util.logging.Logger;
18 static Logger logger = Logger.getLogger(RecordReaper.class.getName()); field in class:RecordReaper
52 if (logger.isLoggable(Level.FINEST)) {
53 logger.finest(this.getName() + ".run() JmDNS reaping cache");
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
ConstraintAction.java 8 import java.util.logging.Logger;
15 private static final Logger LOGGER = Logger.getLogger(ConstraintAction.class.getName());
40 LOGGER.log(Level.WARNING, "'Action' constraint NOT implemented!");
ConstraintChildOf.java 8 import java.util.logging.Logger;
15 private static final Logger LOGGER = Logger.getLogger(ConstraintChildOf.class.getName());
40 LOGGER.log(Level.WARNING, "ChildOf constraint NOT implemented!");
ConstraintClampTo.java 8 import java.util.logging.Logger;
15 private static final Logger LOGGER = Logger.getLogger(ConstraintClampTo.class.getName());
41 LOGGER.log(Level.INFO, "'Clamp to' not yet implemented! Curves not yet implemented!", name);
ConstraintDampTrack.java 4 import java.util.logging.Logger;
16 private static final Logger LOGGER = Logger.getLogger(ConstraintDampTrack.class.getName());
41 LOGGER.log(Level.WARNING, "'Damp Track' constraint NOT implemented!");
ConstraintFollowPath.java 8 import java.util.logging.Logger;
15 private static final Logger LOGGER = Logger.getLogger(ConstraintFollowPath.class.getName());
40 LOGGER.log(Level.INFO, "'Follow path' not implemented! Curves not yet implemented!");
ConstraintLockTrack.java 8 import java.util.logging.Logger;
15 private static final Logger LOGGER = Logger.getLogger(ConstraintLockTrack.class.getName());
41 LOGGER.log(Level.WARNING, "'Lock track' constraint NOT implemented!");
ConstraintMinMax.java 8 import java.util.logging.Logger;
15 private static final Logger LOGGER = Logger.getLogger(ConstraintMinMax.class.getName());
40 LOGGER.log(Level.WARNING, "'Min max' constraint NOT implemented!");
ConstraintPivot.java 4 import java.util.logging.Logger;
16 private static final Logger LOGGER = Logger.getLogger(ConstraintPivot.class.getName());
42 LOGGER.log(Level.WARNING, "'Pivot' constraint NOT implemented!");
ConstraintPython.java 8 import java.util.logging.Logger;
15 private static final Logger LOGGER = Logger.getLogger(ConstraintPython.class.getName());
40 LOGGER.log(Level.WARNING, "'Python' constraint NOT implemented!");

Completed in 228 milliseconds

12 3 4 5 6 7 8 91011>>