Searched refs:Log (Results 26 - 50 of 593) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/antlr3-maven-plugin/src/main/java/org/antlr/mojo/antlr3/
H A DAntlr3ErrorLog.java36 import org.apache.maven.plugin.logging.Log;
39 * The Maven plexus container gives us a Log logging provider
45 private Log log;
51 * @param log The Maven Error Log
53 public Antlr3ErrorLog(Log log) {
66 * Sends an error message from ANTLR analysis to the Maven Log sink.
84 * Sends an error message from the ANTLR tool to the Maven Log sink.
/external/jetty/src/java/org/eclipse/jetty/util/log/
H A DAbstractLogger.java34 final String fullname = (isBlank(basename) || Log.getRootLogger()==this)?name:(basename + "." + name);
36 Logger logger = Log.getLoggers().get(fullname);
41 logger = Log.getMutableLoggers().putIfAbsent(fullname,newlog);
/external/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemoteLog.h18 #include "lldb/Core/Log.h"
24 #define GDBR_LOG_MEMORY (1u << 4) // Log memory reads/writes calls
25 #define GDBR_LOG_MEMORY_DATA_SHORT (1u << 5) // Log short memory reads/writes bytes
26 #define GDBR_LOG_MEMORY_DATA_LONG (1u << 6) // Log all memory reads/writes bytes
38 static lldb_private::Log *
41 static lldb_private::Log *
47 static lldb_private::Log *
H A DProcessGDBRemoteLog.cpp26 static Log * g_log = NULL;
27 static Log *
36 Log *
39 Log *log(GetLog ());
49 Log *
52 Log *log(GetLog ());
61 Log *log (GetLog ());
106 Log *
121 g_log = new Log(log_stream_sp);
188 Log *lo
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DRenderingWatchDog.java21 import android.util.Log;
48 Log.i(TAG, "start");
57 Log.i(TAG, "stop");
/external/deqp/android/package/src/com/drawelements/deqp/execserver/
H A DServiceStarter.java28 import com.drawelements.deqp.testercore.Log;
44 Log.e(LOG_TAG, "Service starter starting problem", e);
/external/jetty/src/java/org/eclipse/jetty/util/preventers/
H A DAbstractLeakPreventer.java23 import org.eclipse.jetty.util.log.Log;
40 protected static final Logger LOG = Log.getLogger(AbstractLeakPreventer.class);
/external/lldb/source/Plugins/Process/POSIX/
H A DProcessPOSIXLog.cpp27 static Log * g_log = NULL;
28 static Log *
37 Log *
40 Log *log(GetLog ());
75 Log *log (GetLog ());
105 Log *
120 g_log = new Log(log_stream_sp);
182 Log *log (ProcessPOSIXLog::GetLogIfAllCategoriesSet (mask));
/external/slf4j/jcl-over-slf4j/src/main/java/org/apache/commons/logging/impl/
H A DSLF4JLogFactory.java19 import org.apache.commons.logging.Log;
58 * The {@link org.apache.commons.logging.Log}instances that have already been
61 ConcurrentMap<String, Log> loggerMap;
67 loggerMap = new ConcurrentHashMap<String, Log>();
73 * The name of the system property identifying our {@link Log}implementation
76 public static final String LOG_PROPERTY = "org.apache.commons.logging.Log";
126 * Class for which a suitable Log name will be derived
129 * if a suitable <code>Log</code> instance cannot be returned
131 public Log getInstance(Class clazz) throws LogConfigurationException {
137 * Construct (if necessary) and return a <code>Log</cod
[all...]
/external/svox/pico/src/com/svox/pico/
H A DLangPackUninstaller.java21 import android.util.Log;
34 Log.v(TAG, "about to delete " + INSTALLER_PACKAGE);
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
H A DDownsampler.java7 import android.util.Log;
118 if (Log.isLoggable(TAG, Log.WARN)) {
119 Log.w(TAG, "Cannot determine the image orientation from header", e);
125 if (Log.isLoggable(TAG, Log.WARN)) {
126 Log.w(TAG, "Cannot reset the input stream", e);
218 if (Log.isLoggable(TAG, Log.WARN)) {
219 Log
[all...]
H A DBitmapEncoder.java4 import android.util.Log;
47 if (Log.isLoggable(TAG, Log.VERBOSE)) {
48 Log.v(TAG, "Compressed with type: " + format + " of size " + Util.getBitmapByteSize(bitmap) + " in "
H A DImageVideoBitmapDecoder.java5 import android.util.Log;
41 if (Log.isLoggable(TAG, Log.VERBOSE)) {
42 Log.v(TAG, "Failed to load image from stream, trying FileDescriptor", e);
H A DTransformationUtils.java11 import android.util.Log;
88 if (Log.isLoggable(TAG, Log.VERBOSE)) {
89 Log.v(TAG, "requested target size matches input, returning input");
104 if (Log.isLoggable(TAG, Log.VERBOSE)) {
105 Log.v(TAG, "adjusted target size matches input, returning input");
118 if (Log.isLoggable(TAG, Log.VERBOSE)) {
119 Log
[all...]
/external/glide/library/src/main/java/com/bumptech/glide/load/data/
H A DAssetPathFetcher.java4 import android.util.Log;
40 if (Log.isLoggable(TAG, Log.VERBOSE)) {
41 Log.v(TAG, "Failed to close data", e);
H A DLocalUriFetcher.java6 import android.util.Log;
54 if (Log.isLoggable(TAG, Log.VERBOSE)) {
55 Log.v(TAG, "failed to close data", e);
/external/llvm/tools/llvm-diff/
H A DDiffConsumer.h46 virtual void logf(const LogBuilder &Log) = 0;
49 virtual void logd(const DiffLogBuilder &Log) = 0;
85 void logf(const LogBuilder &Log) override;
86 void logd(const DiffLogBuilder &Log) override;
/external/slf4j/jcl-over-slf4j/src/test/java/org/apache/commons/logging/impl/
H A DSerializationTest.java35 import org.apache.commons.logging.Log;
64 Log resuscitatedLog = (Log) ois.readObject();
78 Log log = LogFactory.getLog("testing");
/external/v8/src/
H A Dlog-utils.h16 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);
/external/apache-http/src/org/apache/commons/logging/
H A DLogSource.java27 * <p>Factory for creating {@link Log} instances. Applications should call
29 * of the configured {@link Log} implementation class.</p>
46 * <code>org.apache.commons.logging.Log</code> implementation class
105 // Set the default Log implementation
110 name = System.getProperty("org.apache.commons.logging.Log");
164 * must implement {@link Log}, and provide a constructor that
185 * by class. The given class must implement {@link Log},
198 /** Get a <code>Log</code> instance by class name */
199 static public Log getInstance(String name) {
200 Log lo
[all...]
/external/glide/library/src/main/java/com/bumptech/glide/load/model/
H A DImageVideoModelLoader.java4 import android.util.Log;
72 if (Log.isLoggable(TAG, Log.VERBOSE)) {
73 Log.v(TAG, "Exception fetching input stream, trying ParcelFileDescriptor", e);
85 if (Log.isLoggable(TAG, Log.VERBOSE)) {
86 Log.v(TAG, "Exception fetching ParcelFileDescriptor", e);
/external/protobuf/java/src/device/main/java/com/google/protobuf/nano/android/
H A DParcelableMessageNanoCreator.java35 import android.util.Log;
66 Log.e(TAG, "Exception trying to create proto from parcel", e);
68 Log.e(TAG, "Exception trying to create proto from parcel", e);
70 Log.e(TAG, "Exception trying to create proto from parcel", e);
72 Log.e(TAG, "Exception trying to create proto from parcel", e);
/external/lldb/include/lldb/Core/
H A DLog.h1 //===-- 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/svox/pico/compat/src/com/android/tts/compat/
H A DCompatTtsService.java24 import android.util.Log;
39 if (DBG) Log.d(TAG, "onCreate()");
78 if (DBG) Log.d(TAG, "onDestroy()");
95 if (DBG) Log.d(TAG, "onIsLanguageAvailable(" + lang + "," + country + "," + variant + ")");
102 if (DBG) Log.d(TAG, "onLoadLanguage(" + lang + "," + country + "," + variant + ")");
123 Log.e(TAG, "setLanguage(" + lang + "," + country + "," + variant + ") failed");
131 Log.e(TAG, "setSpeechRate(" + speechRate + ") failed");
139 Log.e(TAG, "setPitch(" + pitch + ") failed");
153 if (DBG) Log.d(TAG, "onStop()");
/external/apache-http/src/org/apache/commons/logging/impl/
H A DNoOpLog.java22 import org.apache.commons.logging.Log;
26 * <p>Trivial implementation of Log that throws away all messages. No
38 public class NoOpLog implements Log, Serializable {

Completed in 1102 milliseconds

1234567891011>>