/external/vogar/src/vogar/ |
H A D | Log.java | 22 public interface Log { interface
|
/external/deqp/android/package/src/com/drawelements/deqp/testercore/ |
H A D | Log.java | 21 * \brief Log wrapper 26 public class Log { class 28 private static final boolean LOG_DEBUG = android.util.Log.isLoggable("dEQP", android.util.Log.DEBUG); 35 android.util.Log.d(tag, msg); 40 android.util.Log.i(tag, msg); 45 android.util.Log.w(tag, msg); 50 android.util.Log.w(tag, msg, tr); 55 android.util.Log.e(tag, msg); 60 android.util.Log [all...] |
/external/lldb/utils/misc/ |
H A D | grep-svn-log.py | 21 class Log(StringIO.StringIO): class in inherits:StringIO.StringIO 47 log = Log()
|
/external/apache-http/src/org/apache/commons/logging/ |
H A D | Log.java | 24 * parameter representing the "name" of this Log.</p> 26 * <p> The six logging levels used by <code>Log</code> are (in order): 60 * @version $Id: Log.java 381838 2006-02-28 23:57:11Z skitching $ 67 public interface Log { interface 149 * <p> Log a message with trace log level. </p> 157 * <p> Log an error with trace log level. </p> 166 * <p> Log a message with debug log level. </p> 174 * <p> Log an error with debug log level. </p> 183 * <p> Log a message with info log level. </p> 191 * <p> Log a [all...] |
/external/slf4j/jcl-over-slf4j/src/main/java/org/apache/commons/logging/ |
H A D | Log.java | 23 * parameter representing the "name" of this Log.</p> 25 * <p> The six logging levels used by <code>Log</code> are (in order): 61 * @version $Id: Log.java,v 1.19 2004/06/06 21:16:04 rdonkin Exp $ 63 public interface Log { interface 128 * <p> Log a message with trace log level. </p> 135 * <p> Log an error with trace log level. </p> 143 * <p> Log a message with debug log level. </p> 150 * <p> Log an error with debug log level. </p> 158 * <p> Log a message with info log level. </p> 165 * <p> Log a [all...] |
/external/google-breakpad/src/testing/src/ |
H A D | gmock-internal-utils.cc | 105 // Protects global resources (stdout in particular) used by Log(). 131 GTEST_API_ void Log(LogSeverity severity, function in namespace:testing::internal
|
/external/llvm/tools/llvm-diff/ |
H A D | DiffConsumer.cpp | 160 void DiffConsumer::logf(const LogBuilder &Log) { argument 166 StringRef format = Log.getFormat(); 179 case 'l': printValue(Log.getArgument(arg++), true); break; 180 case 'r': printValue(Log.getArgument(arg++), false); break; 190 void DiffConsumer::logd(const DiffLogBuilder &Log) { argument 193 for (unsigned I = 0, E = Log.getNumLines(); I != E; ++I) { 195 switch (Log.getLineKind(I)) { 198 Log.getLeft(I)->dump(); 199 //printValue(Log.getLeft(I), true); 203 Log [all...] |
/external/v8/src/ |
H A D | log-utils.h | 16 class Log { class in namespace:v8::internal 50 // static buffer in Log. 55 explicit MessageBuilder(Log* log); 87 Log* log_; 93 explicit Log(Logger* logger);
|
H A D | log-utils.cc | 14 const char* const Log::kLogToTemporaryFile = "&"; 15 const char* const Log::kLogToConsole = "-"; 18 Log::Log(Logger* logger) function in class:v8::internal::Log 26 void Log::Initialize(const char* log_file_name) { 44 if (Log::InitLogAtStart()) { 56 void Log::OpenStdout() { 62 void Log::OpenTemporaryFile() { 68 void Log::OpenFile(const char* name) { 74 FILE* Log [all...] |
H A D | string-stream.cc | 249 void StringStream::Log(Isolate* isolate) { function in class:v8::StringStream
|
/external/jetty/src/java/org/eclipse/jetty/util/log/ |
H A D | Log.java | 55 public class Log class 69 * Legacy flag indicating if {@link Log#ignore(Throwable)} methods produce any output in the {@link Logger}s 91 * configuration of the Log class in situations where access to the System.properties are 94 URL testProps = Loader.getResource(Log.class,"jetty-logging.properties",true); 128 /* Now use the configuration properties to configure the Log statics 147 synchronized (Log.class) 158 Class<?> log_class = Loader.loadClass(Log.class, __logClass); 192 Log.LOG = log; 220 * Set Log to parent Logger. 222 * If there is a different Log clas [all...] |
/external/lldb/include/lldb/Core/ |
H A D | Log.h | 1 //===-- Log.h ---------------------------------------------------*- C++ -*-===// 56 class Log class in namespace:lldb_private 64 typedef Log * (*EnableCallback) (lldb::StreamSP &log_stream_sp, 82 const Log::Callbacks &log_callbacks); 89 Log::Callbacks &log_callbacks); 120 Log (); 122 Log (const lldb::StreamSP &stream_sp); 124 ~Log (); 198 DISALLOW_COPY_AND_ASSIGN (Log); 227 std::unique_ptr<Log> m_log_a [all...] |
/external/lldb/test/pexpect-2.4/ |
H A D | ANSI.py | 153 def Log (fsm): function 179 self.state.set_default_transition (Log, 'INIT') 182 self.state.add_transition_any ('ESC', Log, 'INIT') 232 self.state.add_transition_any ('SEMICOLON', Log, 'INIT') 235 self.state.add_transition_any ('NUMBER_2', Log, 'INIT')
|
/external/lldb/source/Core/ |
H A D | Log.cpp | 1 //===-- Log.cpp -------------------------------------------------*- C++ -*-===// 26 #include "lldb/Core/Log.h" 37 Log::Log () : function in class:Log 44 Log::Log (const StreamSP &stream_sp) : function in class:Log 51 Log::~Log () 56 Log::GetOptions() 62 Log [all...] |
/external/clang/tools/libclang/ |
H A D | CIndexHigh.cpp | 414 LogRef Log = Logger::make(LLVM_FUNCTION_NAME); local 417 if (Log) 418 *Log << "Null cursor"; 422 if (Log) 423 *Log << "Got CXCursor_NoDeclFound"; 427 if (Log) 428 *Log << "Null file"; 432 if (Log) 433 *Log << "Null visitor"; 437 if (Log) 488 LogRef Log = Logger::make(LLVM_FUNCTION_NAME); local [all...] |
/external/lldb/source/Target/ |
H A D | ThreadPlanTracer.cpp | 23 #include "lldb/Core/Log.h" 70 ThreadPlanTracer::Log() function in class:ThreadPlanTracer 179 ThreadPlanAssemblyTracer::Log () function in class:ThreadPlanAssemblyTracer
|
/external/llvm/lib/Fuzzer/ |
H A D | FuzzerDriver.cpp | 131 std::string Log = "fuzz-" + std::to_string(C) + ".log"; local 132 std::string ToRun = Cmd + " > " + Log + " 2>&1\n"; 142 fuzzer::CopyFileToErr(Log);
|
/external/v8/samples/ |
H A D | process.cc | 75 static void Log(const char* event); 153 HttpRequestProcessor::Log(*value); 221 Log(*error); 231 Log(*error); 287 Log(*error); 541 void HttpRequestProcessor::Log(const char* event) { function in class:HttpRequestProcessor
|
/external/jarjar/lib/ |
H A D | maven-plugin-api.jar | META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/maven/ org/apache/maven/plugin/ ... |
/external/sonivox/jet_tools/JetCreator/ |
H A D | eas.py | 204 # Log callback function
209 def Log (level, msg):
function 212 LogCallback = LOG_FUNC_TYPE(Log)
|
/external/mdnsresponder/mDNSShared/ |
H A D | dnsextd.c | 145 // Log messages are delivered to syslog unless -f option specified 178 mDNSlocal void Log(const char *format, ...) function 313 Log("ConnectToServer - retrying connection"); 318 else { Log("ConnectToServer - %d failed attempts. Aborting.", ntries); return NULL; } 340 if (!selectval || !FD_ISSET(fd, &wset)) { Log("MySend - timeout"); return -1; } 393 Log("my_recv - timeout"); 436 require_action_quiet( nread == sizeof( msglen ), exit, err = mStatus_UnknownErr; Log( "Could not read length field of message") ); 440 require_action_quiet( msglen <= sizeof( storage->msg ), exit, err = mStatus_UnknownErr; Log( "RecvPacket: provided buffer too small." ) ); 472 require_action_quiet( nread == msglen, exit, err = mStatus_UnknownErr ; Log( "Could not read entire message" ) ); 473 require_action_quiet( pkt->len >= sizeof( DNSMessageHeader ), exit, err = mStatus_UnknownErr ; Log( "RecvPacke [all...] |
/external/clang/lib/StaticAnalyzer/Checkers/ |
H A D | RetainCountChecker.cpp | 1775 const SummaryLogTy &Log, ExplodedNode *n, SymbolRef sym, 1779 addVisitor(llvm::make_unique<CFRefReportVisitor>(sym, GCEnabled, Log)); 1784 const SummaryLogTy &Log, ExplodedNode *n, SymbolRef sym, 1787 addVisitor(llvm::make_unique<CFRefReportVisitor>(sym, GCEnabled, Log)); 1803 const SummaryLogTy &Log, ExplodedNode *n, SymbolRef sym, 2366 bool GCEnabled, const SummaryLogTy &Log, 2370 : CFRefReport(D, LOpts, GCEnabled, Log, n, sym, false) { 2429 addVisitor(llvm::make_unique<CFRefLeakReportVisitor>(sym, GCEnabled, Log)); 1774 CFRefReport(CFRefBug &D, const LangOptions &LOpts, bool GCEnabled, const SummaryLogTy &Log, ExplodedNode *n, SymbolRef sym, bool registerVisitor = true) argument 1783 CFRefReport(CFRefBug &D, const LangOptions &LOpts, bool GCEnabled, const SummaryLogTy &Log, ExplodedNode *n, SymbolRef sym, StringRef endText) argument 2365 CFRefLeakReport(CFRefBug &D, const LangOptions &LOpts, bool GCEnabled, const SummaryLogTy &Log, ExplodedNode *n, SymbolRef sym, CheckerContext &Ctx, bool IncludeAllocationLine) argument
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
H A D | org.eclipse.core.runtime_3.6.0.v20100505.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
H A D | org.apache.commons.logging_1.0.4.v201005080501.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
/external/deqp/modules/glshared/ |
H A D | glsBuiltinPrecisionTests.cpp | 2139 class Log : public LogFunc { public: Log (void) : LogFunc("log", deLog) {} }; function in class:deqp::gls::BuiltinPrecisionTests::Functions::Log 2142 ExprP<float> log (const ExprP<float>& x) { return app<Log>(x); } 5198 addScalarFactory<Log>(*funcs);
|