Home
last modified time | relevance | path

Searched refs:Logger (Results 1 – 25 of 331) sorted by relevance

12345678910>>...14

/external/v8/src/
Dlog.cc374 class Logger::NameMap {
449 class Logger::NameBuffer {
518 Logger::Logger() in Logger() function in v8::internal::Logger
537 Logger::~Logger() { in ~Logger()
545 static const char* const kLogEventsNames[Logger::NUMBER_OF_LOG_EVENTS] = {
551 void Logger::ProfilerBeginEvent() { in ProfilerBeginEvent()
559 void Logger::StringEvent(const char* name, const char* value) { in StringEvent()
564 void Logger::UncheckedStringEvent(const char* name, const char* value) { in UncheckedStringEvent()
572 void Logger::IntEvent(const char* name, int value) { in IntEvent()
577 void Logger::IntPtrTEvent(const char* name, intptr_t value) { in IntPtrTEvent()
[all …]
Dprofile-generator-inl.h46 CodeEntry::CodeEntry(Logger::LogEventsAndTags tag, in CodeEntry()
62 bool CodeEntry::is_js_function_tag(Logger::LogEventsAndTags tag) { in is_js_function_tag()
63 return tag == Logger::FUNCTION_TAG in is_js_function_tag()
64 || tag == Logger::LAZY_COMPILE_TAG in is_js_function_tag()
65 || tag == Logger::SCRIPT_TAG in is_js_function_tag()
66 || tag == Logger::NATIVE_FUNCTION_TAG in is_js_function_tag()
67 || tag == Logger::NATIVE_LAZY_COMPILE_TAG in is_js_function_tag()
68 || tag == Logger::NATIVE_SCRIPT_TAG; in is_js_function_tag()
Dcpu-profiler-inl.h68 Logger::LogEventsAndTags tag) { in FilterOutCodeCreateEvent()
70 && (tag != Logger::CALLBACK_TAG in FilterOutCodeCreateEvent()
71 && tag != Logger::FUNCTION_TAG in FilterOutCodeCreateEvent()
72 && tag != Logger::LAZY_COMPILE_TAG in FilterOutCodeCreateEvent()
73 && tag != Logger::REG_EXP_TAG in FilterOutCodeCreateEvent()
74 && tag != Logger::SCRIPT_TAG); in FilterOutCodeCreateEvent()
Dcpu-profiler.h136 void CallbackCreateEvent(Logger::LogEventsAndTags tag,
139 void CodeCreateEvent(Logger::LogEventsAndTags tag,
144 void CodeCreateEvent(Logger::LogEventsAndTags tag,
147 void CodeCreateEvent(Logger::LogEventsAndTags tag,
153 void RegExpCodeCreateEvent(Logger::LogEventsAndTags tag,
177 INLINE(static bool FilterOutCodeCreateEvent(Logger::LogEventsAndTags tag));
226 static void CodeCreateEvent(Logger::LogEventsAndTags tag,
228 static void CodeCreateEvent(Logger::LogEventsAndTags tag,
230 static void CodeCreateEvent(Logger::LogEventsAndTags tag,
234 static void CodeCreateEvent(Logger::LogEventsAndTags tag,
[all …]
Dlog-utils.h36 class Logger; variable
65 explicit Log(Logger* logger);
104 Logger* logger_;
106 friend class Logger; variable
117 explicit LogMessageBuilder(Logger* logger);
Dcpu-profiler.cc59 void ProfilerEventsProcessor::CallbackCreateEvent(Logger::LogEventsAndTags tag, in CallbackCreateEvent()
76 void ProfilerEventsProcessor::CodeCreateEvent(Logger::LogEventsAndTags tag, in CodeCreateEvent()
96 void ProfilerEventsProcessor::CodeCreateEvent(Logger::LogEventsAndTags tag, in CodeCreateEvent()
113 void ProfilerEventsProcessor::CodeCreateEvent(Logger::LogEventsAndTags tag, in CodeCreateEvent()
155 Logger::LogEventsAndTags tag, in RegExpCodeCreateEvent()
347 Logger::CALLBACK_TAG, CodeEntry::kEmptyNamePrefix, name, entry_point); in CallbackEvent()
351 void CpuProfiler::CodeCreateEvent(Logger::LogEventsAndTags tag, in CodeCreateEvent()
358 void CpuProfiler::CodeCreateEvent(Logger::LogEventsAndTags tag, in CodeCreateEvent()
372 void CpuProfiler::CodeCreateEvent(Logger::LogEventsAndTags tag, in CodeCreateEvent()
388 void CpuProfiler::CodeCreateEvent(Logger::LogEventsAndTags tag, in CodeCreateEvent()
[all …]
Dlog-inl.h37 Logger::LogEventsAndTags Logger::ToNativeByScript(Logger::LogEventsAndTags tag, in ToNativeByScript()
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
DLoggerTest.java32 import java.util.logging.Logger;
63 private Logger sharedLogger = null;
100 assertNull(Logger.global.getFilter()); in testGlobalLogger()
101 assertEquals(0, Logger.global.getHandlers().length); in testGlobalLogger()
102 assertNull(Logger.global.getLevel()); in testGlobalLogger()
103 assertEquals("global", Logger.global.getName()); in testGlobalLogger()
104 assertNull(Logger.global.getParent().getParent()); in testGlobalLogger()
105 assertNull(Logger.global.getResourceBundle()); in testGlobalLogger()
106 assertNull(Logger.global.getResourceBundleName()); in testGlobalLogger()
107 assertTrue(Logger.global.getUseParentHandlers()); in testGlobalLogger()
[all …]
DLogManagerTest.java34 import java.util.logging.Logger;
110 Logger log = new MockLogger(FOO, null); in testAddGetLogger()
111 Logger foo = mockManager.getLogger(FOO); in testAddGetLogger()
144 Logger foo = new MockLogger(FOO, null); in testAddGetLogger_duplicateName()
145 Logger foo2 = new MockLogger(FOO, null); in testAddGetLogger_duplicateName()
160 Logger foo = new MockLogger("testAddGetLogger_Hierachy.foo", null); in testAddGetLogger_Hierachy()
161 Logger child = new MockLogger("testAddGetLogger_Hierachy.foo.child", in testAddGetLogger_Hierachy()
163 Logger fakeChild = new MockLogger( in testAddGetLogger_Hierachy()
165 Logger grandson = new MockLogger( in testAddGetLogger_Hierachy()
167 Logger otherChild = new MockLogger( in testAddGetLogger_Hierachy()
[all …]
/external/emma/core/java12/com/vladium/emma/
DProcessor.java13 import com.vladium.logging.Logger;
40 final Logger current = Logger.getLogger (); in run()
41 final Logger log = AppLoggers.create (m_appName, toolProperties, current); in run()
51 Logger.push (log); in run()
60 Logger.pop (m_log); in run()
112 protected Logger m_log; // not null only within run()
DAppLoggers.java16 import com.vladium.logging.Logger;
36 …public static Logger create (final String appName, final IProperties properties, final Logger base) in create()
47 level = Logger.stringToLevel (_level); in create()
73 return Logger.create (level, null, appName, filter, base); in create()
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/log/
DLogger.java15 public class Logger class
18 private java.util.logging.Logger delegate;
20 public static Logger getLogger(Class x) in getLogger()
22 return new Logger(x); in getLogger()
25 public Logger(Class x) in Logger() method in Logger
27 this.delegate = java.util.logging.Logger.getLogger(x.getName()); in Logger()
/external/chromium/chrome/browser/notifications/
Dnotification_test_util.h41 template<class Logger>
50 Logger::log("notification displayed\n"); in Display()
53 Logger::log("notification error\n"); in Error()
56 Logger::log("notification clicked\n"); in Click()
60 Logger::log("notification closed by user\n"); in Close()
62 Logger::log("notification closed by script\n"); in Close()
/external/emma/core/java12/com/vladium/logging/
DLogger.java61 final class Logger implements ILogLevels class
68 …public static Logger create (final int level, final PrintWriter out, final String prefix, final Se… in create()
76 return new Logger (level, out, prefix, classMask); in create()
89 …public static Logger create (final int level, final PrintWriter out, final String prefix, final Se… in create()
90 final Logger base) in create()
117 return new Logger (_level, _out, _prefix, _classMask); in create()
315 public static Logger getLogger () in getLogger()
327 return (Logger) stack.getLast (); in getLogger()
335 public static void push (final Logger ctx) in push()
350 public static void pop (final Logger ctx) in pop()
[all …]
/external/jmonkeyengine/engine/src/tools/jme3tools/savegame/
DSaveGame.java21 import java.util.logging.Logger;
43Logger.getLogger(SaveGame.class.getName()).log(Level.SEVERE, "Error creating save file!"); in saveGame()
49Logger.getLogger(SaveGame.class.getName()).log(Level.SEVERE, "Error creating save file!"); in saveGame()
56Logger.getLogger(SaveGame.class.getName()).log(Level.SEVERE, "Error saving data: {0}", ex1); in saveGame()
65Logger.getLogger(SaveGame.class.getName()).log(Level.SEVERE, "Error saving data: {0}", ex1); in saveGame()
104Logger.getLogger(SaveGame.class.getName()).log(Level.SEVERE, "Error loading data: {0}", ex); in loadGame()
111Logger.getLogger(SaveGame.class.getName()).log(Level.SEVERE, "Error loading data: {0}", ex); in loadGame()
/external/v8/test/cctest/
Dtest-profile-generator.cc64 CodeEntry entry1(i::Logger::FUNCTION_TAG, "", "aaa", "", 0, in TEST()
69 CodeEntry entry2(i::Logger::FUNCTION_TAG, "", "bbb", "", 0, in TEST()
76 CodeEntry entry3(i::Logger::FUNCTION_TAG, "", "ccc", "", 0, in TEST()
92 CodeEntry entry1(i::Logger::FUNCTION_TAG, empty, aaa, empty, 0, in TEST()
98 CodeEntry entry2(i::Logger::FUNCTION_TAG, empty, aaa, empty, 0, in TEST()
102 CodeEntry entry3(i::Logger::FUNCTION_TAG, empty, aaa, empty, 0, in TEST()
138 CodeEntry entry1(i::Logger::FUNCTION_TAG, "", "aaa", "", 0, in TEST()
140 CodeEntry entry2(i::Logger::FUNCTION_TAG, "", "bbb", "", 0, in TEST()
142 CodeEntry entry3(i::Logger::FUNCTION_TAG, "", "ccc", "", 0, in TEST()
208 CodeEntry entry1(i::Logger::FUNCTION_TAG, "", "aaa", "", 0, in TEST()
[all …]
/external/guava/guava-testlib/src/com/google/common/testing/
DSloppyTearDown.java23 import java.util.logging.Logger;
38 public static final Logger logger =
39 Logger.getLogger(SloppyTearDown.class.getName());
/external/guava/guava/src/com/google/common/io/
DFlushables.java24 import java.util.logging.Logger;
34 private static final Logger logger
35 = Logger.getLogger(Flushables.class.getName());
/external/guava/guava/src/com/google/common/util/concurrent/
DUncaughtExceptionHandlers.java24 import java.util.logging.Logger;
51 private static final Logger logger = Logger.getLogger(Exiter.class.getName());
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
DConstraintLockTrack.java8 import java.util.logging.Logger;
15 private static final Logger LOGGER = Logger.getLogger(ConstraintLockTrack.class.getName());
DConstraintChildOf.java8 import java.util.logging.Logger;
15 private static final Logger LOGGER = Logger.getLogger(ConstraintChildOf.class.getName());
DConstraintPython.java8 import java.util.logging.Logger;
15 private static final Logger LOGGER = Logger.getLogger(ConstraintPython.class.getName());
DConstraintAction.java8 import java.util.logging.Logger;
15 private static final Logger LOGGER = Logger.getLogger(ConstraintAction.class.getName());
DConstraintClampTo.java8 import java.util.logging.Logger;
15 private static final Logger LOGGER = Logger.getLogger(ConstraintClampTo.class.getName());
DConstraintFollowPath.java8 import java.util.logging.Logger;
15 private static final Logger LOGGER = Logger.getLogger(ConstraintFollowPath.class.getName());

12345678910>>...14