Home | History | Annotate | Download | only in mime4j

Lines Matching refs:toString

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.w(LOG_TAG, toString(message, t));
93 android.util.Log.e(LOG_TAG, toString(message, null));
97 android.util.Log.e(LOG_TAG, toString(message, t));
101 android.util.Log.e(LOG_TAG, toString(message, null));
105 android.util.Log.e(LOG_TAG, toString(message, t));
108 private static String toString(Object o, Throwable t) {
109 String m = (o == null) ? "(null)" : o.toString();