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

1 2 3 4 5 6 7 8 91011>>

  /cts/tests/tests/util/src/android/util/cts/
LogTest.java 28 private static final String TAG = "LogTest";
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);
46 Log.d(TAG, msg);
47 Log.d(TAG, msg, tr)
    [all...]
  /external/sfntly/cpp/src/sfntly/
tag.cc 17 #include "sfntly/tag.h"
22 #define TAG(a, b, c, d) ((a << 24) | (b << 16) | (c << 8) | d);
26 const int32_t Tag::ttcf = TAG('t', 't', 'c', 'f');
27 const int32_t Tag::cmap = TAG('c', 'm', 'a', 'p');
28 const int32_t Tag::head = TAG('h', 'e', 'a', 'd');
29 const int32_t Tag::hhea = TAG('h', 'h', 'e', 'a')
    [all...]
  /external/emma/core/java12/com/vladium/jcd/cls/constant/
CONSTANT_info.java 31 * Returns the tag byte for this CONSTANT type [this data is
34 public abstract byte tag (); method in class:CONSTANT_info
63 byte tag = bytes.readByte ();
65 switch (tag)
67 case CONSTANT_Utf8_info.TAG:
70 case CONSTANT_Integer_info.TAG:
73 case CONSTANT_Float_info.TAG:
76 case CONSTANT_Long_info.TAG:
79 case CONSTANT_Double_info.TAG:
83 case CONSTANT_Class_info.TAG
130 out.writeByte (tag ()); method
    [all...]
  /cts/tests/tests/alarmclock/service/src/android/alarmclock/service/
MainRecognitionService.java 27 private static final String TAG = "MainRecognitionService";
32 Log.i(TAG, "onCreate");
37 Log.i(TAG, "onStartListening");
42 Log.i(TAG, "onCancel");
47 Log.i(TAG, "onStopListening");
53 Log.i(TAG, "onDestroy");
  /cts/tests/tests/assist/service/src/android/voiceinteraction/service/
MainRecognitionService.java 27 private static final String TAG = "MainRecognitionService";
32 Log.i(TAG, "onCreate");
37 Log.i(TAG, "onStartListening");
42 Log.i(TAG, "onCancel");
47 Log.i(TAG, "onStopListening");
53 Log.i(TAG, "onDestroy");
  /cts/tests/tests/voiceinteraction/service/src/android/voiceinteraction/service/
MainRecognitionService.java 27 private static final String TAG = "MainRecognitionService";
32 Log.i(TAG, "onCreate");
37 Log.i(TAG, "onStartListening");
42 Log.i(TAG, "onCancel");
47 Log.i(TAG, "onStopListening");
53 Log.i(TAG, "onDestroy");
  /cts/tests/tests/voicesettings/service/src/android/voicesettings/service/
MainRecognitionService.java 27 private static final String TAG = "MainRecognitionService";
32 Log.i(TAG, "onCreate");
37 Log.i(TAG, "onStartListening");
42 Log.i(TAG, "onCancel");
47 Log.i(TAG, "onStopListening");
53 Log.i(TAG, "onDestroy");
  /frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/
MainRecognitionService.java 28 private static final String TAG = "MainRecognitionService";
33 Log.i(TAG, "onCreate");
38 Log.d(TAG, "onStartListening");
43 Log.d(TAG, "onCancel");
48 Log.d(TAG, "onStopListening");
54 Log.d(TAG, "onDestroy");
MainInteractionService.java 33 static final String TAG = "MainInteractionService";
38 Log.i(TAG, "onAvailabilityChanged(" + status + ")");
44 Log.i(TAG, "onDetected");
49 Log.i(TAG, "onError");
54 Log.i(TAG, "onRecognitionPaused");
59 Log.i(TAG, "onRecognitionResumed");
68 Log.i(TAG, "Creating " + this);
69 Log.i(TAG, "Keyphrase enrollment error? " + getKeyphraseEnrollmentInfo().getParseError());
70 Log.i(TAG, "Keyphrase enrollment meta-data: "
78 Log.i(TAG, "Hotword availability = " + availability)
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/multiprocess/camera/cts/
Camera1Activity.java 32 private static final String TAG = "Camera1Activity";
39 Log.i(TAG, "onCreate called.");
47 Log.i(TAG, "onResume called.");
52 mErrorServiceConnection.logAsync(TestConstants.EVENT_CAMERA_ERROR, TAG +
60 TAG + " camera evicted");
61 Log.e(TAG, "onError called with event " + i + ", camera evicted");
64 TAG + " camera experienced error: " + i);
65 Log.e(TAG, "onError called with event " + i + ", camera error");
70 TAG + " camera connected");
72 mErrorServiceConnection.logAsync(TestConstants.EVENT_CAMERA_ERROR, TAG
    [all...]
  /cts/hostsidetests/appsecurity/test-apps/SplitApp/feature/src/com/android/cts/splitapp/
FeatureLogic.java 22 private static final String TAG = "FeatureLogic";
25 Log.d(TAG, "FeatureLogic.mult(" + a + ", " + b + ")");
  /packages/services/Mms/src/com/android/mms/service/
LogUtil.java 25 private static final String TAG = "MmsService";
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...]
  /development/apps/SettingInjectorSample/src/com/example/android/injector/
DisabledInjectorService.java 27 private static final String TAG = "DisabledInjectorService";
30 super(TAG);
39 Log.e(TAG, "", e);
FailingInjectorService.java 27 private static final String TAG = "FailingInjectorService";
38 super(TAG);
47 Log.e(TAG, "", e);
MyInjectorService.java 27 private static final String TAG = "MyInjectorService";
30 super(TAG);
39 Log.e(TAG, "", e);
SlowInjectorService.java 27 private static final String TAG = "SlowInjectorService";
30 super(TAG);
39 Log.e(TAG, "", e);
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/notifier/
NotifierService.java 27 private static final String TAG = "NotifierService";
30 super(TAG);
37 Log.i(TAG, "Contact opened: " + intent.getData());
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
LogProblemReporter.java 25 private final String TAG;
27 public LogProblemReporter(final String tag) {
28 TAG = tag;
33 Log.e(TAG, "Reporting problem", e);
  /packages/services/Telecomm/src/com/android/server/telecom/
ThreadUtil.java 25 private static final String TAG = ThreadUtil.class.getSimpleName();
40 Log.wtf(TAG, new IllegalStateException(), "Must be on the main thread!");
50 Log.wtf(TAG, new IllegalStateException(), "Must not be on the main thread!");
  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
AdapterApp.java 27 private static final String TAG = "BluetoothAdapterApp";
33 if (DBG) Log.d(TAG,"Loading JNI Library");
42 Log.d(TAG, "REFCOUNT: Constructed "+ this + " Instance Count = " + sRefCount);
50 if (DBG) Log.d(TAG, "onCreate");
59 Log.d(TAG, "REFCOUNT: Finalized: " + this +", Instance Count = " + sRefCount);
  /packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/
SecurityTest.java 13 static final String TAG = "SecurityTest";
18 Log.e(TAG,"No Bluetooth Device!");
23 Log.i(TAG,"BT Enabled");
25 Log.i(TAG,"ServerDevice: " + serverDevice);
30 Log.i(TAG,"createInsecureRfcommSocketToServiceRecord() - waiting for connect...");
32 Log.i(TAG,"Connected!");
34 Log.i(TAG,"Closing...");
36 Log.i(TAG,"Closed!");
39 Log.w(TAG, "Sleep interrupted", e);
43 Log.e(TAG, "Failed to create connection", e)
    [all...]
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/authenticator/
AuthenticationService.java 30 private static final String TAG = "AuthenticationService";
36 if (Log.isLoggable(TAG, Log.VERBOSE)) {
37 Log.v(TAG, "SampleSyncAdapter Authentication Service started.");
44 if (Log.isLoggable(TAG, Log.VERBOSE)) {
45 Log.v(TAG, "SampleSyncAdapter Authentication Service stopped.");
51 if (Log.isLoggable(TAG, Log.VERBOSE)) {
52 Log.v(TAG, "getBinder()... returning the AccountAuthenticator binder for intent "
  /external/mesa3d/src/mesa/main/
texcompress_etc_tmp.h 28 struct TAG(etc1_block) {
36 TAG(etc1_base_color_diff_hi)(UINT8_TYPE in)
42 TAG(etc1_base_color_diff_lo)(UINT8_TYPE in)
52 TAG(etc1_base_color_ind_hi)(UINT8_TYPE in)
58 TAG(etc1_base_color_ind_lo)(UINT8_TYPE in)
64 TAG(etc1_clamp)(UINT8_TYPE base, int modifier)
72 static const int TAG(etc1_modifier_tables)[8][4] = {
84 TAG(etc1_parse_block)(struct TAG(etc1_block) *block, const UINT8_TYPE *src)
88 block->base_colors[0][0] = (int) TAG(etc1_base_color_diff_hi)(src[0])
    [all...]
  /frameworks/ex/camera2/public/src/com/android/ex/camera2/utils/
SysTrace.java 31 * All traces are written using the <pre>APP</pre> tag.
36 private static final String TAG = "SysTrace";
37 private static final boolean VERBOSE = Log.isLoggable(TAG, Log.VERBOSE);
50 Log.v(TAG, "traceCounter " + counterName + " " + counterValue);
67 Log.v(TAG, String.format("beginSection[%d] %s", sNestingLevel, sectionName));
86 Log.v(TAG, String.format("endSection[%d]", sNestingLevel));
95 * tag. Unlike {@link #beginSection} and {@link #endSection},
104 Log.v(TAG, "beginSectionAsync " + methodName + " " + cookie);
111 * using the same tag, name and cookie.
118 Log.v(TAG, "endSectionAsync " + methodName + " " + cookie)
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppRfcommListener.java 53 private static final String TAG = "BtOppRfcommListener";
82 mSocketAcceptThread = new Thread(TAG) {
87 if (V) Log.v(TAG, "Create TCP ServerSocket");
90 Log.e(TAG, "Error listing on port" + Constants.TCP_DEBUG_PORT);
97 if (V) Log.v(TAG, "Socket connected!");
106 Log.e(TAG, "Error accept connection " + e);
109 if (V) Log.v(TAG, "TCP listen thread finished");
119 if (V) Log.v(TAG, "Starting RFCOMM listener....");
121 if (V) Log.v(TAG, "Started RFCOMM listener....");
123 Log.e(TAG, "Error create RfcommServerSocket " + e1)
    [all...]

Completed in 823 milliseconds

1 2 3 4 5 6 7 8 91011>>