Searched refs:isLoggable (Results 1 - 25 of 80) sorted by relevance

1234

/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
H A DFilterTest.java31 f.isLoggable(null);
39 public boolean isLoggable(LogRecord record) { method in class:FilterTest.MockFilter
H A DHandlerTest.java286 assertTrue(h.isLoggable(r));
289 assertTrue(h.isLoggable(r));
292 assertFalse(h.isLoggable(r));
296 assertFalse(h.isLoggable(r));
306 assertFalse(h.isLoggable(r));
309 assertFalse(h.isLoggable(r));
313 assertFalse(h.isLoggable(r));
318 * @tests java.util.logging.Handler#isLoggable(LogRecord)
323 h.isLoggable(null);
355 public boolean isLoggable(LogRecor method in class:HandlerTest.MockFilter
[all...]
H A DMemoryHandlerTest.java113 assertFalse(handler.isLoggable(new LogRecord(Level.SEVERE, "test")));
128 assertTrue(handler.isLoggable(new LogRecord(Level.SEVERE, "test")));
133 handler.isLoggable(null);
139 assertFalse(handler.isLoggable(record));
142 assertTrue(handler.isLoggable(record));
145 assertTrue(handler.isLoggable(record));
148 assertFalse(handler.isLoggable(record));
152 assertTrue(handler.isLoggable(record));
301 assertTrue(handler.isLoggable(lr));
360 public boolean isLoggable(LogRecor method in class:MemoryHandlerTest.MockFilter
[all...]
H A DStreamHandlerTest.java376 * Test isLoggable(), use no filter, having output stream
381 assertFalse(h.isLoggable(r));
384 assertFalse(h.isLoggable(r));
387 assertFalse(h.isLoggable(r));
391 assertFalse(h.isLoggable(r));
395 * Test isLoggable(), use no filter, having output stream
401 assertTrue(h.isLoggable(r));
404 assertFalse(h.isLoggable(r));
407 assertTrue(h.isLoggable(r));
411 assertFalse(h.isLoggable(
793 public boolean isLoggable(LogRecord r) { method in class:StreamHandlerTest.MockStreamHandler
804 public boolean isLoggable(LogRecord record) { method in class:StreamHandlerTest.MockFilter
[all...]
/external/droiddriver/src/io/appium/droiddriver/util/
H A DLogs.java33 if (Log.isLoggable(TAG, priority)) {
42 if (Log.isLoggable(TAG, priority)) {
48 if (Log.isLoggable(TAG, priority)) {
54 if (Log.isLoggable(TAG, priority)) {
60 if (Log.isLoggable(TAG, priority)) {
66 if (Log.isLoggable(TAG, priority)) {
/external/slf4j/slf4j-jdk14/src/main/java/org/slf4j/impl/
H A DJDK14LoggerAdapter.java65 return logger.isLoggable(Level.FINEST);
75 if (logger.isLoggable(Level.FINEST)) {
95 if (logger.isLoggable(Level.FINEST)) {
118 if (logger.isLoggable(Level.FINEST)) {
139 if (logger.isLoggable(Level.FINEST)) {
154 if (logger.isLoggable(Level.FINEST)) {
165 return logger.isLoggable(Level.FINE);
175 if (logger.isLoggable(Level.FINE)) {
194 if (logger.isLoggable(Level.FINE)) {
217 if (logger.isLoggable(Leve
[all...]
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
H A DLogTest.java143 assertFalse(Log.isLoggable("FOO", Log.VERBOSE));
144 assertFalse(Log.isLoggable("FOO", Log.DEBUG));
146 assertTrue(Log.isLoggable("FOO", Log.INFO));
147 assertTrue(Log.isLoggable("FOO", Log.WARN));
148 assertTrue(Log.isLoggable("FOO", Log.ERROR));
149 assertTrue(Log.isLoggable("FOO", Log.ASSERT));
157 assertTrue(Log.isLoggable("FOO", Log.VERBOSE));
158 assertTrue(Log.isLoggable("FOO", Log.DEBUG));
159 assertTrue(Log.isLoggable("FOO", Log.INFO));
160 assertTrue(Log.isLoggable("FO
[all...]
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
H A DImageHeaderParser.java154 if (Log.isLoggable(TAG, Log.DEBUG)) {
165 if (Log.isLoggable(TAG, Log.DEBUG)) {
176 if (Log.isLoggable(TAG, Log.DEBUG)) {
185 if (Log.isLoggable(TAG, Log.DEBUG)) {
206 if (Log.isLoggable(TAG, Log.DEBUG)) {
232 if (Log.isLoggable(TAG, Log.DEBUG)) {
241 if (Log.isLoggable(TAG, Log.DEBUG)) {
247 if (Log.isLoggable(TAG, Log.DEBUG)) {
255 if (Log.isLoggable(TAG, Log.DEBUG)) {
264 if (Log.isLoggable(TA
[all...]
H A DDownsampler.java118 if (Log.isLoggable(TAG, Log.WARN)) {
125 if (Log.isLoggable(TAG, Log.WARN)) {
218 if (Log.isLoggable(TAG, Log.WARN)) {
225 if (Log.isLoggable(TAG, Log.WARN)) {
245 if (Log.isLoggable(TAG, Log.WARN)) {
252 if (Log.isLoggable(TAG, Log.WARN)) {
314 if (Log.isLoggable(TAG, Log.ERROR)) {
/external/apache-http/src/org/apache/commons/logging/impl/
H A DJdk14Logger.java90 if (logger.isLoggable(level)) {
218 return (getLogger().isLoggable(Level.FINE));
226 return (getLogger().isLoggable(Level.SEVERE));
234 return (getLogger().isLoggable(Level.SEVERE));
242 return (getLogger().isLoggable(Level.INFO));
250 return (getLogger().isLoggable(Level.FINEST));
258 return (getLogger().isLoggable(Level.WARNING));
/external/slf4j/slf4j-android/src/main/java/org/slf4j/impl/
H A DAndroidLoggerAdapter.java99 return isLoggable(Log.VERBOSE);
186 return isLoggable(Log.DEBUG);
272 return isLoggable(Log.INFO);
360 return isLoggable(Log.WARN);
448 return isLoggable(Log.ERROR);
531 if (isLoggable(priority)) {
538 if (isLoggable(priority)) {
543 private boolean isLoggable(int priority) { method in class:AndroidLoggerAdapter
544 return Log.isLoggable(name, priority);
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/
H A DDecodeJob.java85 if (Log.isLoggable(TAG, Log.VERBOSE)) {
90 if (Log.isLoggable(TAG, Log.VERBOSE)) {
109 if (Log.isLoggable(TAG, Log.VERBOSE)) {
139 if (Log.isLoggable(TAG, Log.VERBOSE)) {
147 if (Log.isLoggable(TAG, Log.VERBOSE)) {
160 if (Log.isLoggable(TAG, Log.VERBOSE)) {
170 if (Log.isLoggable(TAG, Log.VERBOSE)) {
190 if (Log.isLoggable(TAG, Log.VERBOSE)) {
201 if (Log.isLoggable(TAG, Log.VERBOSE)) {
207 if (Log.isLoggable(TA
[all...]
H A DCacheLoader.java30 if (Log.isLoggable(TAG, Log.DEBUG)) {
35 if (Log.isLoggable(TAG, Log.DEBUG)) {
H A DEngineRunnable.java60 if (Log.isLoggable(TAG, Log.VERBOSE)) {
110 if (Log.isLoggable(TAG, Log.DEBUG)) {
/external/jmdns/src/javax/jmdns/impl/tasks/
H A DResponder.java75 if (logger.isLoggable(Level.FINEST)) {
87 if (logger.isLoggable(Level.FINEST)) {
107 if (logger.isLoggable(Level.FINER)) {
124 if (logger.isLoggable(Level.FINER)) {
132 if (logger.isLoggable(Level.FINER)) {
H A DRecordReaper.java52 if (logger.isLoggable(Level.FINEST)) {
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/
H A DDiskLruCacheWrapper.java76 if (Log.isLoggable(TAG, Log.WARN)) {
100 if (Log.isLoggable(TAG, Log.WARN)) {
112 if (Log.isLoggable(TAG, Log.WARN)) {
/external/glide/library/src/main/java/com/bumptech/glide/load/model/
H A DStreamEncoder.java28 if (Log.isLoggable(TAG, Log.DEBUG)) {
H A DImageVideoModelLoader.java72 if (Log.isLoggable(TAG, Log.VERBOSE)) {
85 if (Log.isLoggable(TAG, Log.VERBOSE)) {
/external/glide/library/src/main/java/com/bumptech/glide/util/
H A DByteArrayPool.java50 if (Log.isLoggable(TAG, Log.DEBUG)) {
/external/jmdns/src/javax/jmdns/impl/
H A DSocketListener.java51 if (logger.isLoggable(Level.FINEST)) {
72 if (logger.isLoggable(Level.FINEST)) {
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/
H A DLruBitmapPool.java66 if (Log.isLoggable(TAG, Log.VERBOSE)) {
80 if (Log.isLoggable(TAG, Log.VERBOSE)) {
113 if (Log.isLoggable(TAG, Log.DEBUG)) {
125 if (Log.isLoggable(TAG, Log.VERBOSE)) {
155 if (Log.isLoggable(TAG, Log.DEBUG)) {
163 if (Log.isLoggable(TAG, Log.VERBOSE)) {
/external/deqp/android/package/src/com/drawelements/deqp/testercore/
H A DLog.java28 private static final boolean LOG_DEBUG = android.util.Log.isLoggable("dEQP", android.util.Log.DEBUG);
/external/glide/library/src/main/java/com/bumptech/glide/load/data/
H A DAssetPathFetcher.java40 if (Log.isLoggable(TAG, Log.VERBOSE)) {
H A DLocalUriFetcher.java54 if (Log.isLoggable(TAG, Log.VERBOSE)) {

Completed in 1155 milliseconds

1234