HomeSort by relevance Sort by last modified time
    Searched refs:isLoggable (Results 1 - 25 of 649) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/ojluni/src/main/java/java/util/logging/
Filter.java 34 * The Logger or Handler will call the isLoggable method to check
35 * if a given LogRecord should be published. If isLoggable returns
48 public boolean isLoggable(LogRecord record);
  /frameworks/base/core/tests/coretests/src/android/util/
LogTest.java 49 Assert.assertFalse(Log.isLoggable(LOG_TAG, Log.VERBOSE));
50 Assert.assertFalse(Log.isLoggable(LOG_TAG, Log.DEBUG));
51 Assert.assertTrue(Log.isLoggable(LOG_TAG, Log.INFO));
52 Assert.assertTrue(Log.isLoggable(LOG_TAG, Log.WARN));
53 Assert.assertTrue(Log.isLoggable(LOG_TAG, Log.ERROR));
54 Assert.assertTrue(Log.isLoggable(LOG_TAG, Log.ASSERT));
60 Assert.assertTrue(Log.isLoggable(LOG_TAG, Log.VERBOSE));
61 Assert.assertTrue(Log.isLoggable(LOG_TAG, Log.DEBUG));
62 Assert.assertTrue(Log.isLoggable(LOG_TAG, Log.INFO));
63 Assert.assertTrue(Log.isLoggable(LOG_TAG, Log.WARN))
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
D.java 22 public static boolean BUG = Log.isLoggable("volume", Log.DEBUG);
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
FilterTest.java 31 f.isLoggable(null);
39 public boolean isLoggable(LogRecord record) {
  /frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/debug/
Log.java 22 * Additionally, the prefix itself is checked in isLoggable and
59 if (isLoggable(tag, android.util.Log.DEBUG)) {
65 if (isLoggable(tag, android.util.Log.DEBUG)) {
71 if (isLoggable(tag, android.util.Log.ERROR)) {
77 if (isLoggable(tag, android.util.Log.ERROR)) {
83 if (isLoggable(tag, android.util.Log.INFO)) {
89 if (isLoggable(tag, android.util.Log.INFO)) {
95 if (isLoggable(tag, android.util.Log.VERBOSE)) {
101 if (isLoggable(tag, android.util.Log.VERBOSE)) {
107 if (isLoggable(tag, android.util.Log.WARN))
    [all...]
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/authenticator/
AuthenticationService.java 36 if (Log.isLoggable(TAG, Log.VERBOSE)) {
44 if (Log.isLoggable(TAG, Log.VERBOSE)) {
51 if (Log.isLoggable(TAG, Log.VERBOSE)) {
  /external/droiddriver/src/io/appium/droiddriver/util/
Logs.java 33 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)) {
  /packages/apps/Camera2/src/com/android/camera/debug/
Log.java 26 * Additionally, the prefix itself is checked in isLoggable and
65 if (isLoggable(tag, android.util.Log.DEBUG)) {
71 if (isLoggable(tag, android.util.Log.DEBUG)) {
77 if (isLoggable(tag, android.util.Log.DEBUG)) {
83 if (isLoggable(tag, android.util.Log.DEBUG)) {
89 if (isLoggable(tag, android.util.Log.ERROR)) {
95 if (isLoggable(tag, android.util.Log.ERROR)) {
101 if (isLoggable(tag, android.util.Log.DEBUG)) {
107 if (isLoggable(tag, android.util.Log.ERROR)) {
113 if (isLoggable(tag, android.util.Log.INFO))
    [all...]
  /external/slf4j/slf4j-jdk14/src/main/java/org/slf4j/impl/
JDK14LoggerAdapter.java 65 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(Level.FINE))
    [all...]
  /developers/build/prebuilts/gradle/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/
DigitalWatchFaceConfigListenerService.java 44 if (Log.isLoggable(TAG, Log.DEBUG)) {
55 if (Log.isLoggable(TAG, Log.DEBUG)) {
78 if (Log.isLoggable(TAG, Log.DEBUG)) {
85 if (Log.isLoggable(TAG, Log.DEBUG)) {
92 if (Log.isLoggable(TAG, Log.DEBUG)) {
  /developers/samples/android/wearable/wear/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/
DigitalWatchFaceConfigListenerService.java 44 if (Log.isLoggable(TAG, Log.DEBUG)) {
55 if (Log.isLoggable(TAG, Log.DEBUG)) {
78 if (Log.isLoggable(TAG, Log.DEBUG)) {
85 if (Log.isLoggable(TAG, Log.DEBUG)) {
92 if (Log.isLoggable(TAG, Log.DEBUG)) {
  /development/samples/browseable/WatchFace/Wearable/src/com.example.android.wearable.watchface/
DigitalWatchFaceConfigListenerService.java 44 if (Log.isLoggable(TAG, Log.DEBUG)) {
55 if (Log.isLoggable(TAG, Log.DEBUG)) {
78 if (Log.isLoggable(TAG, Log.DEBUG)) {
85 if (Log.isLoggable(TAG, Log.DEBUG)) {
92 if (Log.isLoggable(TAG, Log.DEBUG)) {
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
LogUtils.java 102 return Log.isLoggable(tag, Log.DEBUG) || Log.isLoggable(TAG, Log.DEBUG);
169 public static boolean isLoggable(String tag, int level) {
173 return Log.isLoggable(tag, level) || Log.isLoggable(TAG, level);
187 if (isLoggable(tag, VERBOSE)) {
205 if (isLoggable(tag, VERBOSE)) {
222 if (isLoggable(tag, DEBUG)) {
240 if (isLoggable(tag, DEBUG)) {
257 if (isLoggable(tag, INFO))
    [all...]
  /packages/services/Telephony/src/com/android/phone/common/mail/utils/
LogUtils.java 102 return Log.isLoggable(tag, Log.DEBUG) || Log.isLoggable(TAG, Log.DEBUG);
169 public static boolean isLoggable(String tag, int level) {
173 return Log.isLoggable(tag, level) || Log.isLoggable(TAG, level);
187 if (isLoggable(tag, VERBOSE)) {
205 if (isLoggable(tag, VERBOSE)) {
222 if (isLoggable(tag, DEBUG)) {
240 if (isLoggable(tag, DEBUG)) {
257 if (isLoggable(tag, INFO))
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/
LogUtils.java 32 if (DEBUG || Log.isLoggable(LOGTAG, Log.VERBOSE)) {
39 if (DEBUG || Log.isLoggable(LOGTAG, Log.VERBOSE)) {
46 if (DEBUG || Log.isLoggable(LOGTAG, Log.DEBUG)) {
53 if (DEBUG || Log.isLoggable(LOGTAG, Log.DEBUG)) {
60 if (DEBUG || Log.isLoggable(LOGTAG, Log.INFO)) {
67 if (DEBUG || Log.isLoggable(LOGTAG, Log.INFO)) {
74 if (DEBUG || Log.isLoggable(LOGTAG, Log.WARN)) {
81 if (DEBUG || Log.isLoggable(LOGTAG, Log.WARN)) {
88 if (DEBUG || Log.isLoggable(LOGTAG, Log.ERROR)) {
95 if (DEBUG || Log.isLoggable(LOGTAG, Log.ERROR))
    [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarProviderIntentService.java 33 if (Log.isLoggable(TAG, Log.DEBUG)) {
47 } else if (Log.isLoggable(TAG, Log.DEBUG)) {
  /cts/tests/camera/src/android/hardware/camera2/cts/
NativeImageReaderTest.java 27 private static final boolean VERBOSE = Log.isLoggable(TAG, Log.VERBOSE);
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
LogTest.java 143 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("FOO", Log.WARN))
    [all...]
  /frameworks/base/core/java/android/accounts/
AccountAuthenticatorResponse.java 46 if (Log.isLoggable(TAG, Log.VERBOSE)) {
59 if (Log.isLoggable(TAG, Log.VERBOSE)) {
70 if (Log.isLoggable(TAG, Log.VERBOSE)) {
  /frameworks/base/core/java/android/database/sqlite/
SQLiteDebug.java 40 Log.isLoggable("SQLiteLog", Log.VERBOSE);
48 Log.isLoggable("SQLiteStatements", Log.VERBOSE);
57 Log.isLoggable("SQLiteTime", Log.VERBOSE);
  /packages/apps/Messaging/src/com/android/messaging/util/
Trace.java 48 android.util.Log.isLoggable(TAG, android.util.Log.VERBOSE)) {
67 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) {
82 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) {
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
ImageHeaderParser.java 154 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(TAG, Log.DEBUG))
    [all...]
  /external/apache-http/src/org/apache/commons/logging/impl/
Jdk14Logger.java 90 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));
  /packages/apps/Messaging/src/com/android/messaging/datamodel/
NoConfirmationSmsSendService.java 56 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) {
62 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) {
70 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) {
90 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) {
100 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) {
114 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) {
121 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) {
  /packages/apps/Messaging/src/com/android/messaging/widget/
BaseWidgetProvider.java 54 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) {
70 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) {
92 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) {
107 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) {
129 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) {
157 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) {
175 if (LogUtil.isLoggable(TAG, LogUtil.VERBOSE)) {

Completed in 2425 milliseconds

1 2 3 4 5 6 7 8 91011>>