/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
D | LogTest.java | 3 import android.util.Log; 22 Log.d("tag", "msg"); in d_shouldLogAppropriately() 24 assertLogged(Log.DEBUG, "tag", "msg", null); in d_shouldLogAppropriately() 31 Log.d("tag", "msg", throwable); in d_shouldLogAppropriately_withThrowable() 33 assertLogged(Log.DEBUG, "tag", "msg", throwable); in d_shouldLogAppropriately_withThrowable() 38 Log.e("tag", "msg"); in e_shouldLogAppropriately() 40 assertLogged(Log.ERROR, "tag", "msg", null); in e_shouldLogAppropriately() 47 Log.e("tag", "msg", throwable); in e_shouldLogAppropriately_withThrowable() 49 assertLogged(Log.ERROR, "tag", "msg", throwable); in e_shouldLogAppropriately_withThrowable() 54 Log.i("tag", "msg"); in i_shouldLogAppropriately() [all …]
|
/external/v8/src/ |
D | log-utils.cc | 14 const char* const Log::kLogToTemporaryFile = "&"; 15 const char* const Log::kLogToConsole = "-"; 18 Log::Log(Logger* logger) in Log() function in v8::internal::Log 26 void Log::Initialize(const char* log_file_name) { in Initialize() 44 if (Log::InitLogAtStart()) { in Initialize() 56 void Log::OpenStdout() { in OpenStdout() 62 void Log::OpenTemporaryFile() { in OpenTemporaryFile() 68 void Log::OpenFile(const char* name) { in OpenFile() 74 FILE* Log::Close() { in Close() 93 Log::MessageBuilder::MessageBuilder(Log* log) in MessageBuilder() [all …]
|
/external/slf4j/slf4j-android/src/main/java/org/slf4j/impl/ |
D | AndroidLoggerAdapter.java | 27 import android.util.Log; 99 return isLoggable(Log.VERBOSE); in isTraceEnabled() 109 log(Log.VERBOSE, msg, null); in trace() 127 formatAndLog(Log.VERBOSE, format, arg); in trace() 147 formatAndLog(Log.VERBOSE, format, arg1, arg2); in trace() 165 formatAndLog(Log.VERBOSE, format, argArray); in trace() 177 log(Log.VERBOSE, msg, t); in trace() 186 return isLoggable(Log.DEBUG); in isDebugEnabled() 196 log(Log.DEBUG, msg, null); in debug() 213 formatAndLog(Log.DEBUG, format, arg); in debug() [all …]
|
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/ |
D | ImageHeaderParser.java | 9 import android.util.Log; 154 if (Log.isLoggable(TAG, Log.DEBUG)) { in getExifSegment() 155 Log.d(TAG, "Unknown segmentId=" + segmentId); in getExifSegment() 165 if (Log.isLoggable(TAG, Log.DEBUG)) { in getExifSegment() 166 Log.d(TAG, "Found MARKER_EOI in exif segment"); in getExifSegment() 176 if (Log.isLoggable(TAG, Log.DEBUG)) { in getExifSegment() 177 Log.d(TAG, "Unable to skip enough data for type=" + segmentType); in getExifSegment() 185 if (Log.isLoggable(TAG, Log.DEBUG)) { in getExifSegment() 186 … Log.d(TAG, "Unable to read segment data for type=" + segmentType + " length=" + segmentLength); in getExifSegment() 206 if (Log.isLoggable(TAG, Log.DEBUG)) { in parseExifSegment() [all …]
|
D | Downsampler.java | 7 import android.util.Log; 118 if (Log.isLoggable(TAG, Log.WARN)) { in decode() 119 Log.w(TAG, "Cannot determine the image orientation from header", e); in decode() 125 if (Log.isLoggable(TAG, Log.WARN)) { in decode() 126 Log.w(TAG, "Cannot reset the input stream", e); in decode() 218 if (Log.isLoggable(TAG, Log.WARN)) { in shouldUsePool() 219 Log.w(TAG, "Cannot determine the image type from header", e); in shouldUsePool() 225 if (Log.isLoggable(TAG, Log.WARN)) { in shouldUsePool() 226 Log.w(TAG, "Cannot reset the input stream", e); in shouldUsePool() 245 if (Log.isLoggable(TAG, Log.WARN)) { in getConfig() [all …]
|
D | TransformationUtils.java | 11 import android.util.Log; 88 if (Log.isLoggable(TAG, Log.VERBOSE)) { in fitCenter() 89 Log.v(TAG, "requested target size matches input, returning input"); in fitCenter() 104 if (Log.isLoggable(TAG, Log.VERBOSE)) { in fitCenter() 105 Log.v(TAG, "adjusted target size matches input, returning input"); in fitCenter() 118 if (Log.isLoggable(TAG, Log.VERBOSE)) { in fitCenter() 119 Log.v(TAG, "request: " + width + "x" + height); in fitCenter() 120 Log.v(TAG, "toFit: " + toFit.getWidth() + "x" + toFit.getHeight()); in fitCenter() 121 Log.v(TAG, "toReuse: " + toReuse.getWidth() + "x" + toReuse.getHeight()); in fitCenter() 122 Log.v(TAG, "minPct: " + minPercentage); in fitCenter() [all …]
|
/external/lldb/source/Core/ |
D | Log.cpp | 37 Log::Log () : in Log() function in Log 44 Log::Log (const StreamSP &stream_sp) : in Log() function in Log 51 Log::~Log () in ~Log() 56 Log::GetOptions() in GetOptions() 62 Log::GetOptions() const in GetOptions() 68 Log::GetMask() in GetMask() 74 Log::GetMask() const in GetMask() 86 Log::PrintfWithFlagsVarArg (uint32_t flags, const char *format, va_list args) in PrintfWithFlagsVarArg() 131 Log::PutCString (const char *cstr) in PutCString() 141 Log::Printf(const char *format, ...) in Printf() [all …]
|
/external/droiddriver/src/io/appium/droiddriver/util/ |
D | Logs.java | 20 import android.util.Log; 29 call(Log.DEBUG, self, method, args); in call() 33 if (Log.isLoggable(TAG, priority)) { in call() 34 Log.d( in call() 42 if (Log.isLoggable(TAG, priority)) { in log() 43 Log.println(priority, TAG, msg); in log() 48 if (Log.isLoggable(TAG, priority)) { in log() 49 Log.println(priority, TAG, Log.getStackTraceString(e)); in log() 54 if (Log.isLoggable(TAG, priority)) { in log() 55 Log.println(priority, TAG, msg + '\n' + Log.getStackTraceString(e)); in log() [all …]
|
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/ |
D | LruBitmapPool.java | 8 import android.util.Log; 66 if (Log.isLoggable(TAG, Log.VERBOSE)) { in put() 67 Log.v(TAG, "Reject bitmap from pool=" + strategy.logBitmap(bitmap) + " is mutable=" in put() 80 if (Log.isLoggable(TAG, Log.VERBOSE)) { in put() 81 Log.v(TAG, "Put bitmap in pool=" + strategy.logBitmap(bitmap)); in put() 113 if (Log.isLoggable(TAG, Log.DEBUG)) { in getDirty() 114 Log.d(TAG, "Missing bitmap=" + strategy.logBitmap(width, height, config)); in getDirty() 125 if (Log.isLoggable(TAG, Log.VERBOSE)) { in getDirty() 126 Log.v(TAG, "Get bitmap=" + strategy.logBitmap(width, height, config)); in getDirty() 155 if (Log.isLoggable(TAG, Log.DEBUG)) { in trimToSize() [all …]
|
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/ |
D | DecodeJob.java | 3 import android.util.Log; 85 if (Log.isLoggable(TAG, Log.VERBOSE)) { in decodeResultFromCache() 90 if (Log.isLoggable(TAG, Log.VERBOSE)) { in decodeResultFromCache() 109 if (Log.isLoggable(TAG, Log.VERBOSE)) { in decodeSourceFromCache() 139 if (Log.isLoggable(TAG, Log.VERBOSE)) { in transformEncodeAndTranscode() 147 if (Log.isLoggable(TAG, Log.VERBOSE)) { in transformEncodeAndTranscode() 160 if (Log.isLoggable(TAG, Log.VERBOSE)) { in writeTransformedToCache() 170 if (Log.isLoggable(TAG, Log.VERBOSE)) { in decodeSource() 190 if (Log.isLoggable(TAG, Log.VERBOSE)) { in decodeFromSourceData() 201 if (Log.isLoggable(TAG, Log.VERBOSE)) { in cacheAndDecodeSourceData() [all …]
|
D | CacheLoader.java | 3 import android.util.Log; 30 if (Log.isLoggable(TAG, Log.DEBUG)) { in load() 31 Log.d(TAG, "Exception decoding image from cache", e); in load() 35 if (Log.isLoggable(TAG, Log.DEBUG)) { in load() 36 Log.d(TAG, "Failed to decode image from cache or not present in cache"); in load()
|
/external/slf4j/slf4j-migrator/jcl/ |
D | jclcontent.java | 5 import org.apache.commons.logging.Log; 8 Log l = LogFactory.getLog(MyClass.class); 9 Log mylog=LogFactory.getLog(MyClass.class); 10 Log mylog1 = LogFactory.getLog(MyClass.class); 11 Log mylog2 = LogFactory.getLog(MyClass.class); 13 Log log3=LogFactory.getFactory().getInstance(MyClass.class); 14 Log mylog4 = LogFactory.getFactory().getInstance(MyClass.class); 15 Log mylog5 = LogFactory.getLog(MyClass.class); 17 Log myLog6;
|
/external/replicaisland/src/com/replica/replicaisland/ |
D | DebugLog.java | 19 import android.util.Log; 35 result = Log.v(tag, msg); in v() 43 result = Log.v(tag, msg, tr); in v() 51 result = Log.d(tag, msg); in d() 59 result = Log.d(tag, msg, tr); in d() 67 result = Log.i(tag, msg); in i() 75 result = Log.i(tag, msg, tr); in i() 83 result = Log.w(tag, msg); in w() 91 result = Log.w(tag, msg, tr); in w() 99 result = Log.w(tag, tr); in w() [all …]
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowLog.java | 3 import android.util.Log; 11 @Implements(Log.class) 23 addLog(Log.ERROR, tag, msg, throwable); in e() 33 addLog(Log.DEBUG, tag, msg, throwable); in d() 43 addLog(Log.INFO, tag, msg, throwable); in i() 53 addLog(Log.VERBOSE, tag, msg, throwable); in v() 69 addLog(Log.WARN, tag, msg, throwable); in w() 79 addLog(Log.ASSERT, tag, msg, throwable); in wtf() 84 return stream != null || level >= Log.INFO; in isLoggable() 98 case Log.ASSERT: c = 'A'; break; in logToStream() [all …]
|
/external/deqp/android/package/src/com/drawelements/deqp/testercore/ |
D | Log.java | 26 public class Log { class 28 …private static final boolean LOG_DEBUG = android.util.Log.isLoggable("dEQP", android.util.Log.DEB… 35 android.util.Log.d(tag, msg); in d() 40 android.util.Log.i(tag, msg); in i() 45 android.util.Log.w(tag, msg); in w() 50 android.util.Log.w(tag, msg, tr); in w() 55 android.util.Log.e(tag, msg); in e() 60 android.util.Log.e(tag, msg, tr); in e()
|
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/ |
D | DiskLruCacheWrapper.java | 7 import android.util.Log; 76 if (Log.isLoggable(TAG, Log.WARN)) { in get() 77 Log.w(TAG, "Unable to get from disk cache", e); in get() 100 if (Log.isLoggable(TAG, Log.WARN)) { in put() 101 Log.w(TAG, "Unable to put to disk cache", e); in put() 112 if (Log.isLoggable(TAG, Log.WARN)) { in delete() 113 Log.w(TAG, "Unable to delete from disk cache", e); in delete()
|
/external/vogar/src/vogar/target/ |
D | AndroidLog.java | 19 import android.util.Log; 24 public final class AndroidLog implements vogar.Log { 33 Log.v(tag, s); in verbose() 37 Log.i(tag, s); in info() 41 Log.i(tag, s, exception); in info() 45 Log.w(tag, s); in warn()
|
/external/lldb/source/API/ |
D | SBCommunication.cpp | 31 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API)); in SBCommunication() 82 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API)); in AdoptFileDesriptor() 110 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API)); in Disconnect() 126 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API)); in IsConnected() 140 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API)); in Read() 174 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API)); in Write() 185 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API)); in ReadThreadStart() 201 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API)); in ReadThreadStop() 221 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API)); in ReadThreadIsRunning() 234 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API)); in SetReadThreadBytesReceivedCallback() [all …]
|
/external/lldb/include/lldb/Core/ |
D | Log.h | 56 class Log 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_ap;
|
/external/lldb/source/Plugins/Process/gdb-remote/ |
D | ProcessGDBRemoteLog.cpp | 26 static Log * g_log = NULL; 27 static Log * 36 Log * 39 Log *log(GetLog ()); in GetLogIfAllCategoriesSet() 49 Log * 52 Log *log(GetLog ()); in GetLogIfAnyCategoryIsSet() 61 Log *log (GetLog ()); in DisableLog() 106 Log * 121 g_log = new Log(log_stream_sp); in EnableLog() 188 Log *log (ProcessGDBRemoteLog::GetLogIfAllCategoriesSet (mask)); in LogIf()
|
/external/svox/pico/compat/src/com/android/tts/compat/ |
D | CompatTtsService.java | 24 import android.util.Log; 39 if (DBG) Log.d(TAG, "onCreate()"); in onCreate() 78 if (DBG) Log.d(TAG, "onDestroy()"); in onDestroy() 95 if (DBG) Log.d(TAG, "onIsLanguageAvailable(" + lang + "," + country + "," + variant + ")"); in onIsLanguageAvailable() 102 if (DBG) Log.d(TAG, "onLoadLanguage(" + lang + "," + country + "," + variant + ")"); in onLoadLanguage() 123 Log.e(TAG, "setLanguage(" + lang + "," + country + "," + variant + ") failed"); in onSynthesizeText() 131 Log.e(TAG, "setSpeechRate(" + speechRate + ") failed"); in onSynthesizeText() 139 Log.e(TAG, "setPitch(" + pitch + ") failed"); in onSynthesizeText() 153 if (DBG) Log.d(TAG, "onStop()"); in onStop()
|
/external/slf4j/jcl-over-slf4j/src/main/java/org/apache/commons/logging/impl/ |
D | SLF4JLogFactory.java | 19 import org.apache.commons.logging.Log; 61 ConcurrentMap<String, Log> loggerMap; 67 loggerMap = new ConcurrentHashMap<String, Log>(); in SLF4JLogFactory() 131 public Log getInstance(Class clazz) throws LogConfigurationException { in getInstance() 149 public Log getInstance(String name) throws LogConfigurationException { in getInstance() 150 Log instance = loggerMap.get(name); in getInstance() 154 Log newInstance; in getInstance() 161 Log oldInstance = loggerMap.putIfAbsent(name, newInstance); in getInstance()
|
/external/lldb/source/ |
D | lldb-log.cpp | 31 static Log * g_log = NULL; 32 static Log * 43 Log *log(GetLog ()); in GetLogMask() 56 Log * 59 Log *log(GetLog ()); in GetLogIfAllCategoriesSet() 72 Log *log(GetLogIfAllCategoriesSet (mask)); in LogIfAllCategoriesSet() 85 Log *log(GetLogIfAnyCategoriesSet (mask)); in LogIfAnyCategoriesSet() 95 Log * 98 Log *log(GetLog ()); in GetLogIfAnyCategoriesSet() 107 Log *log(GetLog ()); in DisableLog() [all …]
|
/external/jmonkeyengine/engine/src/android/com/jme3/util/ |
D | AndroidLogHandler.java | 3 import android.util.Log; 30 Log.i(clsName, msg, t); in publish() 32 Log.e(clsName, msg, t); in publish() 34 Log.w(clsName, msg, t); in publish() 36 Log.d(clsName, msg, t); in publish() 38 Log.v(clsName, msg, t); in publish()
|
/external/clang/tools/libclang/ |
D | CIndexHigh.cpp | 414 LogRef Log = Logger::make(LLVM_FUNCTION_NAME); in clang_findReferencesInFile() local 417 if (Log) in clang_findReferencesInFile() 418 *Log << "Null cursor"; in clang_findReferencesInFile() 422 if (Log) in clang_findReferencesInFile() 423 *Log << "Got CXCursor_NoDeclFound"; in clang_findReferencesInFile() 427 if (Log) in clang_findReferencesInFile() 428 *Log << "Null file"; in clang_findReferencesInFile() 432 if (Log) in clang_findReferencesInFile() 433 *Log << "Null visitor"; in clang_findReferencesInFile() 437 if (Log) in clang_findReferencesInFile() [all …]
|