/external/clang/tools/libclang/ |
D | CLog.h | 30 class Logger; variable 31 typedef IntrusiveRefCntPtr<Logger> LogRef; 40 class Logger : public RefCountedBase<Logger> { 52 if (const char *EnvOpt = Logger::getEnvVar()) in isStackTracingEnabled() 59 return new Logger(name, trace); 63 explicit Logger(llvm::StringRef name, bool trace) in Logger() function 65 ~Logger(); 67 Logger &operator<<(CXTranslationUnit); 68 Logger &operator<<(const FileEntry *FE); 69 Logger &operator<<(CXCursor cursor); [all …]
|
/external/stressapptest/src/ |
D | logger.cc | 30 Logger *Logger::GlobalLogger() { in GlobalLogger() 31 static Logger logger; in GlobalLogger() 35 void Logger::VLogF(int priority, const char *format, va_list args) { in VLogF() 48 void Logger::StartThread() { in StartThread() 54 void Logger::StopThread() { in StopThread() 67 Logger::Logger() : verbosity_(20), log_fd_(-1), thread_running_(false) { in Logger() function in Logger 73 Logger::~Logger() { in ~Logger() 79 void Logger::QueueLogLine(string *line) { in QueueLogLine() 104 void Logger::WriteAndDeleteLogLine(string *line) { in WriteAndDeleteLogLine() 113 void *Logger::StartRoutine(void *ptr) { in StartRoutine() [all …]
|
D | logger.h | 57 class Logger { 61 static Logger *GlobalLogger(); 108 Logger(); 110 ~Logger(); 139 DISALLOW_COPY_AND_ASSIGN(Logger);
|
/external/v8/src/ |
D | log.cc | 374 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 …]
|
D | profile-generator-inl.h | 46 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()
|
D | cpu-profiler-inl.h | 68 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()
|
D | cpu-profiler.h | 136 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 …]
|
D | log-utils.h | 36 class Logger; variable 65 explicit Log(Logger* logger); 104 Logger* logger_; 106 friend class Logger; variable 117 explicit LogMessageBuilder(Logger* logger);
|
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/ |
D | logger.h | 47 class Logger { 49 Logger() : level_(LOG_ERROR) {} in Logger() function 50 virtual ~Logger() {} in ~Logger() 77 static inline Logger* set_logger_impl(Logger* logger) { in set_logger_impl() 82 static inline Logger* mutable_logger_impl() { in mutable_logger_impl() 87 static Logger* impl_; 93 class NullLogger : public Logger {
|
D | default_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(); 94 class StdoutLogger : public Logger {
|
/external/chromium_org/v8/src/ |
D | log.cc | 51 static const char* const kLogEventsNames[Logger::NUMBER_OF_LOG_EVENTS] = { 88 void Init(Logger::LogEventsAndTags tag) { in Init() 181 void CodeEventLogger::CodeCreateEvent(Logger::LogEventsAndTags tag, in CodeCreateEvent() 190 void CodeEventLogger::CodeCreateEvent(Logger::LogEventsAndTags tag, in CodeCreateEvent() 199 void CodeEventLogger::CodeCreateEvent(Logger::LogEventsAndTags tag, in CodeCreateEvent() 211 void CodeEventLogger::CodeCreateEvent(Logger::LogEventsAndTags tag, in CodeCreateEvent() 233 void CodeEventLogger::CodeCreateEvent(Logger::LogEventsAndTags tag, in CodeCreateEvent() 243 name_buffer_->Init(Logger::REG_EXP_TAG); in RegExpCodeCreateEvent() 891 Logger* logger = isolate_->logger(); in Engage() 932 Logger::Logger(Isolate* isolate) in Logger() function in v8::internal::Logger [all …]
|
D | profile-generator-inl.h | 36 CodeEntry::CodeEntry(Logger::LogEventsAndTags tag, in CodeEntry() 55 bool CodeEntry::is_js_function_tag(Logger::LogEventsAndTags tag) { in is_js_function_tag() 56 return tag == Logger::FUNCTION_TAG in is_js_function_tag() 57 || tag == Logger::LAZY_COMPILE_TAG in is_js_function_tag() 58 || tag == Logger::SCRIPT_TAG in is_js_function_tag() 59 || tag == Logger::NATIVE_FUNCTION_TAG in is_js_function_tag() 60 || tag == Logger::NATIVE_LAZY_COMPILE_TAG in is_js_function_tag() 61 || tag == Logger::NATIVE_SCRIPT_TAG; in is_js_function_tag()
|
D | cpu-profiler.cc | 182 static bool FilterOutCodeCreateEvent(Logger::LogEventsAndTags tag) { in FilterOutCodeCreateEvent() 184 && (tag != Logger::CALLBACK_TAG in FilterOutCodeCreateEvent() 185 && tag != Logger::FUNCTION_TAG in FilterOutCodeCreateEvent() 186 && tag != Logger::LAZY_COMPILE_TAG in FilterOutCodeCreateEvent() 187 && tag != Logger::REG_EXP_TAG in FilterOutCodeCreateEvent() 188 && tag != Logger::SCRIPT_TAG); in FilterOutCodeCreateEvent() 193 if (FilterOutCodeCreateEvent(Logger::CALLBACK_TAG)) return; in CallbackEvent() 198 Logger::CALLBACK_TAG, in CallbackEvent() 206 void CpuProfiler::CodeCreateEvent(Logger::LogEventsAndTags tag, in CodeCreateEvent() 220 void CpuProfiler::CodeCreateEvent(Logger::LogEventsAndTags tag, in CodeCreateEvent() [all …]
|
D | log.h | 88 v8::internal::Logger* logger = \ 96 v8::internal::Logger* logger = \ 162 class Logger { 383 explicit Logger(Isolate* isolate); 384 ~Logger(); 462 virtual void CodeCreateEvent(Logger::LogEventsAndTags tag, 465 virtual void CodeCreateEvent(Logger::LogEventsAndTags tag, 468 virtual void CodeCreateEvent(Logger::LogEventsAndTags tag, 473 virtual void CodeCreateEvent(Logger::LogEventsAndTags tag, 479 virtual void CodeCreateEvent(Logger::LogEventsAndTags tag, [all …]
|
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/ |
D | LoggerTest.java | 32 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 …]
|
D | LogManagerTest.java | 34 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/chromium_org/gpu/command_buffer/service/ |
D | logger.cc | 16 Logger::Logger(const DebugMarkerManager* debug_marker_manager) in Logger() function in gpu::gles2::Logger 20 Logger* this_temp = this; in Logger() 25 Logger::~Logger() {} in ~Logger() 27 void Logger::LogMessage( in LogMessage() 53 const std::string& Logger::GetLogPrefix() const { in GetLogPrefix() 58 void Logger::SetMsgCallback(const MsgCallback& callback) { in SetMsgCallback()
|
/external/chromium_org/third_party/npapi/npspy/common/ |
D | logger.cpp | 46 Logger::Logger() : in Logger() function in Logger 70 Logger::~Logger() in ~Logger() 74 BOOL Logger::init() in init() 82 void Logger::shut() in shut() 89 void Logger::logNS_NP_GetEntryPoints() in logNS_NP_GetEntryPoints() 103 void Logger::logNS_NP_Initialize() in logNS_NP_Initialize() 117 void Logger::logNS_NP_Shutdown() in logNS_NP_Shutdown() 131 void Logger::logSPY_NP_GetEntryPoints(NPPluginFuncs * pNPPFuncs) in logSPY_NP_GetEntryPoints() 270 void Logger::logSPY_NP_Initialize() in logSPY_NP_Initialize() 284 void Logger::logSPY_NP_Shutdown(char * mimetype) in logSPY_NP_Shutdown() [all …]
|
/external/emma/core/java12/com/vladium/emma/ |
D | Processor.java | 13 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()
|
D | AppLoggers.java | 16 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/chromium_org/chrome/browser/notifications/ |
D | notification_test_util.h | 42 template<class Logger> 51 Logger::log("notification displayed\n"); in Display() 54 Logger::log("notification error\n"); in Error() 57 Logger::log("notification clicked\n"); in Click() 60 Logger::log("notification button clicked\n"); in ButtonClick() 64 Logger::log("notification closed by user\n"); in Close() 66 Logger::log("notification closed by script\n"); in Close()
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/log/ |
D | Logger.java | 15 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/ |
D | notification_test_util.h | 41 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/ |
D | Logger.java | 61 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/chromium_org/third_party/npapi/npspy/include/ |
D | logger.h | 48 class Logger 68 Logger(); 69 ~Logger(); 102 Logger * NewLogger(); 103 void DeleteLogger(Logger * logger);
|