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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/brotli/src/woff2/
table_tags.cc 22 #define TAG(a, b, c, d) ((a << 24) | (b << 16) | (c << 8) | d)
25 TAG('c', 'm', 'a', 'p'), // 0
26 TAG('h', 'e', 'a', 'd'), // 1
27 TAG('h', 'h', 'e', 'a'), // 2
28 TAG('h', 'm', 't', 'x'), // 3
29 TAG('m', 'a', 'x', 'p'), // 4
30 TAG('n', 'a', 'm', 'e'), // 5
31 TAG('O', 'S', '/', '2'), // 6
32 TAG('p', 'o', 's', 't'), // 7
33 TAG('c', 'v', 't', ' '), //
    [all...]
  /external/chromium_org/net/quic/crypto/
crypto_protocol.h 14 // representation of the name of the tag. For example
15 // the client hello tag (CHLO) will be written as the
22 #define TAG(a, b, c, d) ((d << 24) + (c << 16) + (b << 8) + a)
28 const QuicTag kCHLO = TAG('C', 'H', 'L', 'O'); // Client hello
29 const QuicTag kSHLO = TAG('S', 'H', 'L', 'O'); // Server hello
30 const QuicTag kSCFG = TAG('S', 'C', 'F', 'G'); // Server config
31 const QuicTag kREJ = TAG('R', 'E', 'J', '\0'); // Reject
32 const QuicTag kCETV = TAG('C', 'E', 'T', 'V'); // Client encrypted tag-value
34 const QuicTag kPRST = TAG('P', 'R', 'S', 'T'); // Public rese
    [all...]
  /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/chromium_org/third_party/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/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...]
  /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 31 static final String TAG = "MainInteractionService";
36 Log.i(TAG, "onAvailabilityChanged(" + status + ")");
42 Log.i(TAG, "onDetected");
47 Log.i(TAG, "onError");
52 Log.i(TAG, "onRecognitionPaused");
57 Log.i(TAG, "onRecognitionResumed");
66 Log.i(TAG, "Creating " + this);
67 Log.i(TAG, "Keyphrase enrollment error? " + getKeyphraseEnrollmentInfo().getParseError());
68 Log.i(TAG, "Keyphrase enrollment meta-data: "
85 Log.i(TAG, "Hotword availability = " + availability)
    [all...]
  /external/droiddriver/src/com/google/android/droiddriver/util/
Logs.java 26 public static final String TAG = "DroidDriver";
27 public static final boolean DEBUG = Log.isLoggable(TAG, Log.DEBUG);
32 TAG,
39 if (Log.isLoggable(TAG, priority)) {
40 Log.println(priority, TAG, msg);
45 if (Log.isLoggable(TAG, priority)) {
46 Log.println(priority, TAG, Log.getStackTraceString(e));
51 if (Log.isLoggable(TAG, priority)) {
52 Log.println(priority, TAG, msg + '\n' + Log.getStackTraceString(e));
57 if (Log.isLoggable(TAG, priority))
    [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 + ")");
  /external/chromium_org/components/cronet/android/java/src/org/chromium/net/
LibraryLoader.java 13 private static final String TAG = "LibraryLoader";
22 Log.i(TAG, "libcronet initialization success.");
  /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);
  /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/chromium_org/third_party/mesa/src/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...]
  /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...]
  /frameworks/testing/support/src/android/support/test/internal/runner/listener/
LogRunListener.java 32 // use tag consistent with InstrumentationTestRunner
33 private static final String TAG = "TestRunner";
37 Log.i(TAG, String.format("run started: %d tests", description.testCount()));
42 Log.i(TAG, String.format("run finished: %d tests, %d failed, %d ignored",
48 Log.i(TAG, "started: " + description.getDisplayName());
53 Log.i(TAG, "finished: " + description.getDisplayName());
58 Log.i(TAG, "failed: " + failure.getDescription().getDisplayName());
59 Log.i(TAG, "----- begin exception -----");
60 Log.i(TAG, failure.getTrace());
61 Log.i(TAG, "----- end exception -----")
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppRfcommListener.java 51 private static final String TAG = "BtOppRfcommListener";
80 mSocketAcceptThread = new Thread(TAG) {
85 if (V) Log.v(TAG, "Create TCP ServerSocket");
88 Log.e(TAG, "Error listing on port" + Constants.TCP_DEBUG_PORT);
95 if (V) Log.v(TAG, "Socket connected!");
104 Log.e(TAG, "Error accept connection " + e);
107 if (V) Log.v(TAG, "TCP listen thread finished");
117 if (V) Log.v(TAG, "Starting RFCOMM listener....");
119 if (V) Log.v(TAG, "Started RFCOMM listener....");
121 Log.e(TAG, "Error create RfcommServerSocket " + e1)
    [all...]

Completed in 483 milliseconds

1 2 3 4 5 6 7 8 91011>>