Searched defs:Log (Results 1 - 13 of 13) sorted by relevance

/packages/inputmethods/LatinIME/tools/dicttool/compat/android/util/
H A DLog.java20 * This is a compatibility class that aims at emulating android.util.Log from the
24 public class Log { class
/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DLog.java19 public class Log { class
21 return android.util.Log.v(tag, msg);
24 return android.util.Log.v(tag, msg, tr);
27 return android.util.Log.d(tag, msg);
30 return android.util.Log.d(tag, msg, tr);
33 return android.util.Log.i(tag, msg);
36 return android.util.Log.i(tag, msg, tr);
39 return android.util.Log.w(tag, msg);
42 return android.util.Log.w(tag, msg, tr);
45 return android.util.Log
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DLog.java19 public class Log { class
21 return android.util.Log.v(tag, msg);
24 return android.util.Log.v(tag, msg, tr);
27 return android.util.Log.d(tag, msg);
30 return android.util.Log.d(tag, msg, tr);
33 return android.util.Log.i(tag, msg);
36 return android.util.Log.i(tag, msg, tr);
39 return android.util.Log.w(tag, msg);
42 return android.util.Log.w(tag, msg, tr);
45 return android.util.Log
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DLog.java20 public class Log { class
22 return android.util.Log.v(tag, msg);
25 return android.util.Log.v(tag, msg, tr);
28 return android.util.Log.d(tag, msg);
31 return android.util.Log.d(tag, msg, tr);
34 return android.util.Log.i(tag, msg);
37 return android.util.Log.i(tag, msg, tr);
40 return android.util.Log.w(tag, msg);
43 return android.util.Log.w(tag, msg, tr);
46 return android.util.Log
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/util/
H A DLog.java19 public class Log { class
21 return android.util.Log.v(tag, msg);
24 return android.util.Log.v(tag, msg, tr);
27 return android.util.Log.d(tag, msg);
30 return android.util.Log.d(tag, msg, tr);
33 return android.util.Log.i(tag, msg);
36 return android.util.Log.i(tag, msg, tr);
39 return android.util.Log.w(tag, msg);
42 return android.util.Log.w(tag, msg, tr);
45 return android.util.Log
[all...]
/packages/apps/Camera2/src/com/android/camera/debug/
H A DLog.java23 public class Log { class
34 private static final Log.Tag TAG = new Log.Tag("Log");
65 if (isLoggable(tag, android.util.Log.DEBUG)) {
66 android.util.Log.d(tag.toString(), msg);
71 if (isLoggable(tag, android.util.Log.DEBUG)) {
72 android.util.Log.d(tag.toString(), LogUtil.addTags(instance, msg));
77 if (isLoggable(tag, android.util.Log.DEBUG)) {
78 android.util.Log
[all...]
/packages/apps/InCallUI/src/com/android/incallui/
H A DLog.java29 public class Log { class
36 android.util.Log.isLoggable(TAG, android.util.Log.DEBUG);
38 android.util.Log.isLoggable(TAG, android.util.Log.VERBOSE);
43 android.util.Log.d(TAG, delimit(tag) + msg);
49 android.util.Log.d(TAG, getPrefix(obj) + msg);
55 android.util.Log.d(TAG, getPrefix(obj) + str1 + str2);
61 android.util.Log.v(TAG, getPrefix(obj) + msg);
67 android.util.Log
[all...]
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/
H A DLog.java24 public class Log { class
27 public Log(Class mClazz) { method in class:Log
56 android.util.Log.v(LOG_TAG, toString(message, null));
61 android.util.Log.v(LOG_TAG, toString(message, t));
66 android.util.Log.d(LOG_TAG, toString(message, null));
71 android.util.Log.d(LOG_TAG, toString(message, t));
76 android.util.Log.i(LOG_TAG, toString(message, null));
81 android.util.Log.i(LOG_TAG, toString(message, t));
85 android.util.Log.w(LOG_TAG, toString(message, null));
89 android.util.Log
[all...]
/packages/services/Telephony/src/org/apache/james/mime4j/
H A DLog.java22 public class Log { class
23 private static final String LOG_TAG = "Email Log";
25 public Log(Class mClazz) { method in class:Log
54 android.util.Log.v(LOG_TAG, toString(message, null));
59 android.util.Log.v(LOG_TAG, toString(message, t));
64 android.util.Log.d(LOG_TAG, toString(message, null));
69 android.util.Log.d(LOG_TAG, toString(message, t));
74 android.util.Log.i(LOG_TAG, toString(message, null));
79 android.util.Log.i(LOG_TAG, toString(message, t));
83 android.util.Log
[all...]
/packages/services/Telephony/src/com/android/services/telephony/
H A DLog.java27 final public class Log { class
33 public static final boolean DEBUG = isLoggable(android.util.Log.DEBUG);
34 public static final boolean INFO = isLoggable(android.util.Log.INFO);
35 public static final boolean VERBOSE = isLoggable(android.util.Log.VERBOSE);
36 public static final boolean WARN = isLoggable(android.util.Log.WARN);
37 public static final boolean ERROR = isLoggable(android.util.Log.ERROR);
39 private Log() {} method in class:Log
42 return FORCE_LOGGING || android.util.Log.isLoggable(TAG, level);
47 android.util.Log.d(TAG, buildMessage(prefix, format, args));
53 android.util.Log
[all...]
/packages/services/Telecomm/src/com/android/server/telecom/
H A DLog.java44 public class Log { class
134 Log.i("Event", "Call %d: %s, %s", mId, event, data);
209 public static final boolean DEBUG = isLoggable(android.util.Log.DEBUG);
210 public static final boolean INFO = isLoggable(android.util.Log.INFO);
211 public static final boolean VERBOSE = isLoggable(android.util.Log.VERBOSE);
212 public static final boolean WARN = isLoggable(android.util.Log.WARN);
213 public static final boolean ERROR = isLoggable(android.util.Log.ERROR);
219 private Log() {} method in class:Log
232 Log.i(TAG, "Non-call EVENT: %s, %s", event, data);
257 return FORCE_LOGGING || android.util.Log
[all...]
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/
H A DLayout.java27 import android.util.Log;
61 /* package */ abstract void Log(int level); method in class:Layout.LayoutTreeNode
391 /* package */ void Log(int level) { method in class:Layout.LayoutGetter
392 Log.d("Layout", indent(level) + "LayoutGetter");
394 l.Log(level + 1);
500 /* package */ void Log(int level) { method in class:Layout.SelectionGroup
501 Log.d("Layout", indent(level) + "SelectionGroup '" + getTitle() + "'");
736 /* package */ void Log(int level) { method in class:Layout.Header
737 Log.d("Layout", indent(level) + "Header " + mAppearance);
739 i.Log(leve
858 /* package */ void Log(int level) { method in class:Layout.Action
949 /* package */ void Log(int level) { method in class:Layout.Status
991 /* package */ void Log(int level) { method in class:Layout.Static
1033 /* package */ void Log(int level) { method in class:Layout.WallOfText
1195 public void Log(int level) { method in class:Layout
1201 public void Log() { method in class:Layout
[all...]
/packages/apps/Messaging/build/gcheckstyle/
H A Dgoogle-style-checker_deploy.jarMETA-INF/ META-INF/MANIFEST.MF build-data.properties com/ com/google/ com/google/ ...

Completed in 8294 milliseconds