HomeSort by relevance Sort by last modified time
    Searched defs:tag (Results 451 - 475 of 3210) sorted by null

<<11121314151617181920>>

  /frameworks/data-binding/extensions/library/src/main/java/android/databinding/
DataBindingUtil.java 168 String tag = (String) tagObj; local
169 int layoutId = sMapper.getLayoutId(tag);
207 Object tag = view.getTag(); local
208 if (tag instanceof String) {
209 String tagString = (String) tag;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
ComprehensionTlv.java 45 * @param tag The tag for this object
51 protected ComprehensionTlv(int tag, boolean cr, int length, byte[] data,
53 mTag = tag;
120 /* tag */
121 int tag; local
128 Rlog.d("CAT ", "decode: unexpected first tag byte=" + Integer.toHexString(temp) +
135 case 0x7f: // tag is in three-byte format
136 tag = ((data[curIndex] & 0xff) << 8)
138 cr = (tag & 0x8000) != 0
    [all...]
ResponseData.java 61 int tag = 0x80 | ComprehensionTlvTag.ITEM_ID.value(); local
62 buf.write(tag); // tag
104 int tag = 0x80 | ComprehensionTlvTag.TEXT_STRING.value(); local
105 buf.write(tag); // tag
188 int tag = 0x80 | ComprehensionTlvTag.LANGUAGE.value(); local
189 buf.write(tag); // tag
226 int tag = 0x80 | CommandType.PROVIDE_LOCAL_INFORMATION.value() local
    [all...]
  /frameworks/support/lifecycle/integration-tests/test-app/src/main/java/com/android/support/lifecycle/testapp/
LiveDataTestActivity.java 93 String tag = "0_a"; local
94 if (getSupportFragmentManager().findFragmentByTag(tag) == null) {
97 getSupportFragmentManager().beginTransaction().add(internalFragment, tag).commitNow();
  /frameworks/support/samples/Support13Demos/src/main/java/com/example/android/supportv13/app/
FragmentNestingPagerSupport.java 143 Object tag = tab.getTag(); local
145 if (mTabs.get(i) == tag) {
FragmentNestingStatePagerSupport.java 143 Object tag = tab.getTag(); local
145 if (mTabs.get(i) == tag) {
  /hardware/libhardware/include/hardware/
hardware.h 29 * Value for the hw_module_t.tag field
87 /** tag must be initialized to HARDWARE_MODULE_TAG */
88 uint32_t tag; member in struct:hw_module_t
168 /** tag must be initialized to HARDWARE_DEVICE_TAG */
169 uint32_t tag; member in struct:hw_device_t
  /packages/apps/Camera2/src/com/android/camera/debug/
Log.java 25 * All Camera logging using this class will use this tag prefix.
30 * adb shell setprop log.tag.CAM_ VERBOSE
31 * adb shell setprop log.tag.CAM_ ""
34 private static final Log.Tag TAG = new Log.Tag("Log");
39 * This class restricts the length of the log tag to be less than the
40 * framework limit and also prepends the common tag prefix defined by
43 public static final class Tag {
50 public Tag(String tag)
    [all...]
  /packages/apps/Camera2/src/com/android/camera/one/v2/
AutoFocusHelper.java 36 private static final Log.Tag TAG = new Log.Tag("OneCameraAFHelp");
82 Log.e(TAG, "\n!!!! TotalCaptureResult missing CONTROL_AF_STATE. !!!!\n ");
95 Log.e(TAG, "\n!!!! TotalCaptureResult missing LENS_STATE. !!!!\n ");
106 Object tag = result.getRequest().getTag(); local
108 Log.v(TAG, String.format("af_state:%-17s lens_foc_dist:%.3f lens_state:%-10s %s",
112 (tag == null) ? "" : "[" + tag +"]"
  /packages/apps/Camera2/src/com/android/camera/one/v2/core/
TagDispatchCaptureSession.java 49 * @param listeners A map from tag objects to the listener to be invoked
50 * for events related to the request with that tag.
59 Object tag = request.getTag(); local
60 mListeners.get(tag).onStarted(timestamp);
66 Object tag = request.getTag(); local
67 mListeners.get(tag).onProgressed(partialResult);
73 Object tag = request.getTag(); local
74 mListeners.get(tag).onCompleted(result);
80 Object tag = request.getTag(); local
81 mListeners.get(tag).onFailed(failure)
112 Object tag = Long.valueOf(mTagCounter); local
142 Object tag = generateTag(); local
    [all...]
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/
PackedString.java 32 * Packing format is: element : [ value ] or [ value TAG-DELIMITER tag ] packed-string : [ element
54 * Get the value referred to by a given tag. If the tag does not exist, return null.
56 * @param tag identifier of string of interest
59 public String get(String tag) {
63 return exploded.get(tag);
67 * Return a map of all of the values referred to by a given tag. This is a shallow copy, don't
96 String tag; local
100 // so synthesize a positional tag for the value, and don't update tagEndInde
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/touch/
ItemClickHandler.java 73 Object tag = v.getTag(); local
74 if (tag instanceof ShortcutInfo) {
75 onClickAppShortcut(v, (ShortcutInfo) tag, launcher);
76 } else if (tag instanceof FolderInfo) {
80 } else if (tag instanceof AppInfo) {
81 startAppShortcutOrInfoActivity(v, (AppInfo) tag, launcher);
82 } else if (tag instanceof LauncherAppWidgetInfo) {
  /packages/apps/SecureElement/src/com/android/se/security/gpac/
BerTlv.java 50 public BerTlv(byte[] rawData, int tag, int valueIndex, int valueLength) {
52 mTag = tag;
69 /** Decodes the byte array into BerTlv Object. Performs checks for length and tag */
74 /** Decodes the byte array into BerTlv Object. Performs checks for length and tag */
83 int tag = 0; local
85 /* tag */
89 case 0xff: // tag is in two byte format
92 tag = ((temp & 0xff) << 8) | (data[curIndex++] & 0xff);
99 default: // tag is in single-byte format
100 tag = temp
    [all...]
  /packages/apps/TV/common/src/com/android/tv/common/ui/setup/
SetupActivity.java 126 String tag = fragment.getClass().getCanonicalName(); local
128 ft.addToBackStack(tag);
130 ft.replace(R.id.fragment_container, fragment, tag).commit();
  /packages/apps/Tag/src/com/android/apps/tag/
TagViewer.java 17 package com.android.apps.tag;
19 import com.android.apps.tag.message.NdefMessageParser;
20 import com.android.apps.tag.message.ParsedNdefMessage;
21 import com.android.apps.tag.record.ParsedNdefRecord;
39 * An {@link Activity} which handles a broadcast of a new tag that the device just discovered.
42 static final String TAG = "TagViewer";
70 Log.e(TAG, "Unknown intent " + intent);
97 //TODO figure out what to do when/if we support multiple messages per tag
  /packages/apps/Tag/src/com/android/apps/tag/record/
RecordUtils.java 17 package com.android.apps.tag.record;
19 import com.android.apps.tag.R;
61 * The views will have a {@link ClickInfo} set as their tag.
VCardRecord.java 17 package com.android.apps.tag.record;
19 import com.android.apps.tag.R;
73 private static final String TAG = VCardRecord.class.getSimpleName();
175 Log.e(TAG, "Failed to launch activity for intent " + info.intent, e);
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
PackedString.java 34 * element : [ value ] or [ value TAG-DELIMITER tag ]
54 * Get the value referred to by a given tag. If the tag does not exist, return null.
55 * @param tag identifier of string of interest
58 public String get(String tag) {
62 return mExploded.get(tag);
66 * Return a map of all of the values referred to by a given tag. This is a shallow
96 String tag; local
100 // so synthesize a positional tag for the value, and don't update tagEndInde
    [all...]
  /packages/experimental/NotificationLog/src/com/android/notificationlog/
NotificationLogActivity.java 90 // EventLog.writeEvent(EventLogTags.NOTIFICATION_ENQUEUE, pkg, id, tag,
94 String tag = (String) data[2]; local
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/
KeyboardLayoutSetNavigateMoreKeysBase.java 90 final String tag = actualKey.toString() + " moreKeys=" + Arrays.toString(actualMoreKeys); local
92 assertEquals(tag, null, actualMoreKeys);
96 assertEquals(tag + " fixedOrder", false, actualKey.isMoreKeysFixedOrder());
97 assertEquals(tag + " fixedColumn", false, actualKey.isMoreKeysFixedColumn());
99 assertEquals(tag + " fixedOrder", true, actualKey.isMoreKeysFixedOrder());
100 assertEquals(tag + " fixedColumn", true, actualKey.isMoreKeysFixedColumn());
102 assertEquals(tag + " column",
105 assertNotNull(tag + " moreKeys", actualMoreKeys);
106 assertEquals(tag, expectedMoreKeys.length, actualMoreKeys.length);
110 assertEquals(tag + " label " + index, null, actualMoreKeys[index].mLabel)
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/action/
KlpActionLabelTests.java 36 void doTestActionKeys(final InputMethodSubtype subtype, final String tag,
42 tag + " unspecified", subtype, EditorInfo.IME_ACTION_UNSPECIFIED, unspecifiedKey);
43 doTestActionKey(tag + " none", subtype, EditorInfo.IME_ACTION_NONE, noneKey);
44 doTestActionKey(tag + " go", subtype, EditorInfo.IME_ACTION_GO, goKey);
45 doTestActionKey(tag + " search", subtype, EditorInfo.IME_ACTION_SEARCH, searchKey);
46 doTestActionKey(tag + " send", subtype, EditorInfo.IME_ACTION_SEND, sendKey);
47 doTestActionKey(tag + " next", subtype, EditorInfo.IME_ACTION_NEXT, nextKey);
48 doTestActionKey(tag + " done", subtype, EditorInfo.IME_ACTION_DONE, doneKey);
49 doTestActionKey(tag + " previous", subtype, EditorInfo.IME_ACTION_PREVIOUS, previousKey);
76 final String tag = "label=" + labelLocale + " system=" + systemLocal local
134 final String tag = "label=" + subtype.getLocale() + " system=" + systemLocale local
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/tests/
LayoutTestsBase.java 140 final String tag = mLogTag + "/" + KeyboardId.elementIdToName(elementId); local
148 Log.d(tag, "expected=\n" + ExpectedKeyboardBuilder.toString(expectedKeyboard));
149 Log.d(tag, "actual =\n" + ActualKeyboardBuilder.toString(actualKeyboard));
151 assertEquals(tag + " labels"
158 assertEquals(tag + " labels row=" + row
167 assertTrue(tag + " labels row,column=" + row + "," + column
  /packages/services/Car/service/src/com/android/car/
CarLog.java 48 String tag = tagPrefix + "." + clazz.getSimpleName(); local
49 if (tag.length() > MAX_TAG_LEN) {
50 tag = tag.substring(0, MAX_TAG_LEN);
52 return tag;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
StringExtras.h 233 typedef typename std::iterator_traits<IteratorT>::iterator_category tag; typedef
234 return detail::join_impl(Begin, End, Separator, tag());
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
StringExtras.h 233 typedef typename std::iterator_traits<IteratorT>::iterator_category tag; typedef
234 return detail::join_impl(Begin, End, Separator, tag());

Completed in 1131 milliseconds

<<11121314151617181920>>