HomeSort by relevance Sort by last modified time
    Searched defs:Log (Results 1 - 25 of 5578) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /development/tools/idegen/src/
Log.java 20 class Log {
  /prebuilts/go/darwin-x86/src/math/cmplx/
log.go 41 // w = log(r) + i arctan(y/x).
56 // Log returns the natural logarithm of x.
57 func Log(x complex128) complex128 {
58 return complex(math.Log(Abs(x)), Phase(x))
63 return math.Log10E * Log(x)
  /prebuilts/go/darwin-x86/src/math/
log.go 33 // 2. Approximation of log(1+f).
34 // Let s = f/(2+f) ; based on log(1+f) = log(1+s) - log(1-s)
48 // In order to guarantee error in log below 1ulp, we compute log by
49 // log(1+f) = f - s*(f - R) (if f is not too large)
50 // log(1+f) = f - (hfsq - s*(hfsq+R)). (better accuracy)
52 // 3. Finally, log(x) = k*Ln2 + log(1+f)
82 func log(x float64) float64 { func
    [all...]
  /prebuilts/go/linux-x86/src/math/cmplx/
log.go 41 // w = log(r) + i arctan(y/x).
56 // Log returns the natural logarithm of x.
57 func Log(x complex128) complex128 {
58 return complex(math.Log(Abs(x)), Phase(x))
63 return math.Log10E * Log(x)
  /prebuilts/go/linux-x86/src/math/
log.go 33 // 2. Approximation of log(1+f).
34 // Let s = f/(2+f) ; based on log(1+f) = log(1+s) - log(1-s)
48 // In order to guarantee error in log below 1ulp, we compute log by
49 // log(1+f) = f - s*(f - R) (if f is not too large)
50 // log(1+f) = f - (hfsq - s*(hfsq+R)). (better accuracy)
52 // 3. Finally, log(x) = k*Ln2 + log(1+f)
82 func log(x float64) float64 { func
    [all...]
  /cts/tests/tests/util/src/android/util/cts/
LogTest.java 20 import android.util.Log;
24 * Test Log
31 final String msg = "Test Log operations.";
39 Log.e(TAG, msg);
40 Log.e(TAG, msg, tr);
41 Log.w(TAG, msg);
42 Log.w(TAG, tr);
43 Log.w(TAG, msg, tr);
44 Log.i(TAG, msg);
45 Log.i(TAG, msg, tr)
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/
LogUtils.java 24 import android.util.Log;
32 if (DEBUG || Log.isLoggable(LOGTAG, Log.VERBOSE)) {
33 Log.v(LOGTAG, args == null || args.length == 0
39 if (DEBUG || Log.isLoggable(LOGTAG, Log.VERBOSE)) {
40 Log.v(LOGTAG + "/" + tag, args == null || args.length == 0 ? message
46 if (DEBUG || Log.isLoggable(LOGTAG, Log.DEBUG)) {
47 Log.d(LOGTAG, args == null || args.length == 0 ? messag
    [all...]
  /external/vogar/src/vogar/
Log.java 20 * Emits output to the console, device log or file.
22 public interface Log {
  /external/vogar/src/vogar/target/
AndroidLog.java 19 import android.util.Log;
22 * Logs everything to Android's log.
24 public final class AndroidLog implements vogar.Log {
33 Log.v(tag, s);
37 Log.i(tag, s);
41 Log.i(tag, s, exception);
45 Log.w(tag, s);
  /packages/services/Mms/src/com/android/mms/service/
LogUtil.java 19 import android.util.Log;
28 Log.i(TAG, "[" + requestId + "] " + message);
32 Log.i(TAG, message);
36 Log.d(TAG, "[" + requestId + "] " + message);
40 Log.d(TAG, message);
44 Log.v(TAG, "[" + requestId + "] " + message);
48 Log.v(TAG, message);
52 Log.e(TAG, "[" + requestId + "] " + message, t);
56 Log.e(TAG, message, t);
60 Log.e(TAG, "[" + requestId + "] " + message)
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/
Log.java 24 public class Log {
27 public Log(Class mClazz) {
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))
    [all...]
  /packages/services/Telephony/src/org/apache/james/mime4j/
Log.java 22 public class Log {
23 private static final String LOG_TAG = "Email Log";
25 public Log(Class mClazz) {
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.w(LOG_TAG, toString(message, null))
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/its/
Logt.java 19 import android.util.Log;
24 Log.i(tag, String.format("[%d] %s", t, msg));
28 Log.e(tag, String.format("[%d] %s", t, msg));
32 Log.w(tag, String.format("[%d] %s", t, msg));
36 Log.e(tag, String.format("[%d] %s", t, msg), tr);
  /cts/hostsidetests/net/app2/src/com/android/cts/net/hostside/app2/
MyForegroundService.java 24 import android.util.Log;
41 Log.v(TAG, "MyForegroundService.onStartCommand(): " + intent);
44 Log.d(TAG, "Starting foreground");
50 Log.d(TAG, "Stopping foreground");
54 Log.wtf(TAG, "Invalid flag on intent " + intent);
  /packages/services/Telecomm/src/com/android/server/telecom/
ProximitySensorManager.java 36 Log.d(this, "onCreate: mProximityWakeLock: ", mTelecomWakeLock);
45 Log.i(this, "All calls removed, resetting proximity sensor to default state");
57 Log.w(this, "Asking to turn on prox sensor without a call? I don't think so.");
RingbackPlayer.java 54 Log.w(this, "Ignoring duplicate requests to ring for %s.", call);
61 Log.wtf(this, "Ringback player thinks there are two foreground-dialing calls.");
66 Log.d(this, "Playing the ringback tone for %s.", call);
84 Log.w(this, "No player found to stop.");
86 Log.i(this, "Stopping the ringback tone for %s.", call);
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/logging/
Logger.java 19 import android.util.Log;
22 * Simplifies usage of Android logging class {@link Log} by abstracting the TAG field that is
24 * class name prefix to log outputs for better debugging.
27 * class name as a prefix to each log output. If you do not want the class name to be prefixed to
28 * log output then use {@link #getLogger()} to create the instance of Logger.
34 * Use this method if you want your class name to be prefixed to each log output.
41 * Use this factory method if you DO NOT want your class name to be prefixed into the log
50 /** No custom log prefix used. */
55 /** Use the supplied custom prefix in log output. */
69 Log.i(APP_TAG, getMsg(msg))
    [all...]
  /packages/inputmethods/LatinIME/tools/dicttool/compat/android/util/
Log.java 20 * This is a compatibility class that aims at emulating android.util.Log from the
24 public class Log {
  /development/apps/CustomLocale/src/com/android/customlocale2/
ChangeLocale.java 26 import android.util.Log;
44 Log.d(TAG, "Change locale to: " + locale);
72 Log.e(TAG, "Change locale failed", e);
CustomLocaleReceiver.java 23 import android.util.Log;
52 Log.d(TAG, "Invalid intent: " + (intent == null ? "null" : intent.toString()));
73 Log.e(TAG, "Invalid locale: expected ab_CD but got " + locale);
  /external/apache-http/android/src/android/net/http/
HttpLog.java 25 import android.util.Log;
34 Log.v(LOGTAG, SystemClock.uptimeMillis() + " " + Thread.currentThread().getName() + " " + logMe);
38 Log.e(LOGTAG, logMe);
  /external/droiddriver/src/io/appium/droiddriver/util/
Logs.java 20 import android.util.Log;
29 call(Log.DEBUG, self, method, args);
33 if (Log.isLoggable(TAG, priority)) {
34 Log.d(
41 public static void log(int priority, String msg) { method in class:Logs
42 if (Log.isLoggable(TAG, priority)) {
43 Log.println(priority, TAG, msg);
47 public static void log(int priority, Throwable e) { method in class:Logs
48 if (Log.isLoggable(TAG, priority)) {
49 Log.println(priority, TAG, Log.getStackTraceString(e))
53 public static void log(int priority, Throwable e, String msg) { method in class:Logs
    [all...]
  /external/opencv3/platforms/android/service/engine/src/org/opencv/engine/
MarketConnector.java 6 import android.util.Log;
18 Log.d(TAG, "Installing app: " + AppID);
26 Log.e(TAG, "Installation failed");
  /frameworks/base/core/java/android/net/metrics/
IpConnectivityLog.java 24 import android.util.Log;
46 * Log an IpConnectivity event. Contrary to logEvent(), this method does not
54 public boolean log(long timestamp, Parcelable data) { method in class:IpConnectivityLog
57 Log.d(TAG, CONNECTIVITY_METRICS_LOGGER_SERVICE + " service was not ready");
64 Log.d(TAG, "skipping logging due to throttling for IpConnectivity component");
78 Log.e(TAG, "Error logging event", e);
83 public void log(Parcelable event) { method in class:IpConnectivityLog
84 log(System.currentTimeMillis(), event);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
MediaFrameworkIntegrationTestRunner.java 22 import android.util.Log;
63 Log.v(TAG,
68 Log.e(TAG, String.format("Failed to convert camera_id to integer"));

Completed in 1506 milliseconds

1 2 3 4 5 6 7 8 91011>>