Searched defs:WARN (Results 1 - 3 of 3) sorted by relevance

/frameworks/multidex/library/test/src/android/util/
H A DLog.java46 public static final int WARN = 5; field in class:Log
125 * Send a {@link #WARN} log message.
131 return println(LOG_ID_MAIN, WARN, tag, msg);
135 * Send a {@link #WARN} log message and log the exception.
142 return println(LOG_ID_MAIN, WARN, tag, msg + '\n' + getStackTraceString(tr));
146 * Send a {@link #WARN} log message and log the exception.
152 return println(LOG_ID_MAIN, WARN, tag, getStackTraceString(tr));
/frameworks/base/telecomm/java/android/telecom/
H A DLog.java38 public static final boolean WARN = isLoggable(android.util.Log.WARN); field in class:Log
84 if (WARN) {
90 if (WARN) {
/frameworks/base/core/java/android/util/
H A DLog.java33 * ERROR, WARN, INFO, DEBUG, VERBOSE. Verbose should never be compiled
74 public static final int WARN = 5; field in class:Log
175 * Send a {@link #WARN} log message.
181 return println_native(LOG_ID_MAIN, WARN, tag, msg);
185 * Send a {@link #WARN} log message and log the exception.
192 return println_native(LOG_ID_MAIN, WARN, tag, msg + '\n' + getStackTraceString(tr));
202 * Where level is either VERBOSE, DEBUG, INFO, WARN, ERROR, ASSERT, or SUPPRESS. SUPPRESS will
216 * Send a {@link #WARN} log message and log the exception.
222 return println_native(LOG_ID_MAIN, WARN, tag, getStackTraceString(tr));

Completed in 156 milliseconds