Searched defs:label (Results 1 - 25 of 132) sorted by last modified time

123456

/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DAction.java50 * @param label The label to display for the Action.
52 public Action(long id, CharSequence label) { argument
53 this(id, label, null);
60 * @param label1 The label to display on the first line of the Action.
61 * @param label2 The label to display on the second line of the Action.
71 * @param label1 The label to display on the first line of the Action.
72 * @param label2 The label to display on the second line of the Action.
97 * Sets the first line label for this Action.
99 public final void setLabel1(CharSequence label) { argument
113 setLabel2(CharSequence label) argument
[all...]
/frameworks/support/v4/api21/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompatApi21.java88 static Object newAccessibilityAction(int actionId, CharSequence label) { argument
89 return new AccessibilityAction(actionId, label);
/frameworks/support/v4/donut/android/support/v4/app/
H A DRemoteInputCompatBase.java31 public RemoteInput build(String resultKey, CharSequence label, argument
/frameworks/support/v4/java/android/support/v4/app/
H A DNotificationCompat.java2330 * It must include an icon, a label, and a {@link PendingIntent} to be fired when the action is
2661 * Set a label to display while the wearable is preparing to automatically execute the
2664 * @param label the label to display while the action is being prepared to execute
2667 public WearableExtender setInProgressLabel(CharSequence label) { argument
2668 mInProgressLabel = label;
2673 * Get the label to display while the wearable is preparing to automatically execute
2676 * @return the label to display while the action is being prepared to execute
2683 * Set a label to display to confirm that the action should be executed.
2686 * @param label th
2689 setConfirmLabel(CharSequence label) argument
2711 setCancelLabel(CharSequence label) argument
[all...]
H A DRemoteInput.java43 private RemoteInput(String resultKey, CharSequence label, CharSequence[] choices, argument
46 this.mLabel = label;
61 * Get the label to display to users when collecting this input.
113 * Set a label to be displayed to the user when collecting this input.
114 * @param label The label to show to users when they input a response.
117 public Builder setLabel(CharSequence label) { argument
118 mLabel = label;
266 CharSequence label, CharSequence[] choices, boolean allowFreeFormInput,
268 return new RemoteInput(resultKey, label, choice
[all...]
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompat.java343 * @param label The action label.
345 public AccessibilityActionCompat(int actionId, CharSequence label) { argument
346 this(IMPL.newAccessibilityAction(actionId, label));
363 * Gets the label for this action. Its purpose is to describe the
366 * @return The label.
489 public Object newAccessibilityAction(int actionId, CharSequence label); argument
625 public Object newAccessibilityAction(int actionId, CharSequence label) { argument
1804 public Object newAccessibilityAction(int actionId, CharSequence label) { argument
1805 return AccessibilityNodeInfoCompatApi21.newAccessibilityAction(actionId, label);
3484 setLabeledBy(View label) argument
[all...]
/frameworks/rs/api/
H A DGenerateDocumentation.cpp226 static void writeSummaryTableStart(GeneratedFile* file, const string& label, bool labelIsHeading) { argument
228 *file << "<h2 style='margin-bottom: 0px;'>" << label << "</h2>\n"; local
232 *file << " <tr><th colspan='2'>" << label << "</th></tr>\n"; local
/frameworks/support/customtabs/src/android/support/customtabs/
H A DCustomTabsIntent.java328 * @param label Menu label.
331 public Builder addMenuItem(@NonNull String label, @NonNull PendingIntent pendingIntent) { argument
334 bundle.putString(KEY_MENU_ITEM_TITLE, label);
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardBuilder.java793 final String label = contentValues.getAsString(Phone.LABEL);
811 phoneNumber, type, label, isPrimary);
814 appendTelLine(type, label, phoneNumber, isPrimary);
822 appendTelLine(type, label, phoneNumber, isPrimary);
869 appendTelLine(type, label, formatted, isPrimary);
945 final String label = contentValues.getAsString(Email.LABEL);
952 appendEmailLine(type, label, emailAddress, isPrimary);
1025 final String label = currentContentValues.getAsString(StructuredPostal.LABEL);
1026 appendPostalLine(currentType, label, currentContentValues, false, true);
1037 final String label
1444 appendPostalLine(final int type, final String label, final ContentValues contentValues, final boolean isPrimary, final boolean emitEveryTime) argument
1522 appendEmailLine(final int type, final String label, final String rawValue, final boolean isPrimary) argument
1572 appendTelLine(final Integer typeAsInteger, final String label, final String encodedValue, boolean isPrimary) argument
[all...]
H A DVCardEntry.java313 public PhoneData(String data, int type, String label, boolean isPrimary) { argument
316 mLabel = label;
370 return String.format("type: %d, data: %s, label: %s, isPrimary: %s", mType, mNumber,
403 public EmailData(String data, int type, String label, boolean isPrimary) { argument
406 mLabel = label;
460 return String.format("type: %d, data: %s, label: %s, isPrimary: %s", mType, mAddress,
506 String region, String postalCode, String country, int type, String label,
516 mLabel = label;
525 final int type, final String label, boolean isPrimary, int vcardType) {
550 dataArray[4], dataArray[5], dataArray[6], type, label, isPrimar
505 PostalData(String pobox, String extendedAddress, String street, String localty, String region, String postalCode, String country, int type, String label, boolean isPrimary, int vcardType) argument
524 constructPostalData(final List<String> propValueList, final int type, final String label, boolean isPrimary, int vcardType) argument
1354 SipData(String rawSip, int type, String label, boolean isPrimary) argument
1570 onElementGroupStarted(EntryLabel label) argument
1640 onElementGroupStarted(EntryLabel label) argument
1675 onElementGroupStarted(EntryLabel label) argument
1726 onElementGroupStarted(EntryLabel label) argument
1767 addPhone(int type, String data, String label, boolean isPrimary) argument
1808 addSip(String sipData, int type, String label, boolean isPrimary) argument
1822 addEmail(int type, String data, String label, boolean isPrimary) argument
1829 addPostal(int type, List<String> propValueList, String label, boolean isPrimary) argument
[all...]
H A DVCardPhoneNumberTranslationCallback.java34 public String onValueReceived(String rawValue, int type, String label, boolean isPrimary); argument
H A DVCardUtils.java189 * when not, which should be set to label.
197 String label = null;
247 label = labelCandidate;
270 return label;
277 public static boolean isMobilePhoneLabel(final String label) { argument
280 // To support mobile type at that time, this custom label had been used.
281 return ("_AUTO_CELL".equals(label) || sMobilePhoneLabelSet.contains(label));
284 public static boolean isValidInV21ButUnknownToContactsPhoteType(final String label) { argument
285 return sPhoneTypesUnknownToContactsSet.contains(label);
[all...]
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/
H A DVCardEntryTests.java174 public void onElementGroupStarted(EntryLabel label) { argument
178 mLabel = label;
H A DVCardExporterTests.java1047 Integer type, String label) {
1050 + (label != null ? label : "") + ";;;;;;;;;;;;");
1046 getAndroidPropValue(final String mimeType, String value, Integer type, String label) argument
/frameworks/opt/setupwizard/tools/docs/
H A Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...
/frameworks/opt/chips/src/com/android/ex/chips/
H A DQueries.java45 public CharSequence getTypeLabel(Resources res, int type, CharSequence label) {
46 return Phone.getTypeLabel(res, type, label);
65 public CharSequence getTypeLabel(Resources res, int type, CharSequence label) {
66 return Email.getTypeLabel(res, type, label);
105 public abstract CharSequence getTypeLabel(Resources res, int type, CharSequence label); argument
/frameworks/native/include/input/
H A DInputEventLabels.h424 static int32_t getKeyCodeByLabel(const char* label) { argument
425 return int32_t(lookupValueByLabel(label, KEYCODES));
435 static uint32_t getKeyFlagByLabel(const char* label) { argument
436 return uint32_t(lookupValueByLabel(label, FLAGS));
439 static int32_t getAxisByLabel(const char* label) { argument
440 return int32_t(lookupValueByLabel(label, AXES));
447 static int32_t getLedByLabel(const char* label) { argument
448 return int32_t(lookupValueByLabel(label, LEDS));
H A DKeyCharacterMap.h91 /* Gets the primary character for this key as in the label physically printed on it.
172 /* The single character label printed on the key, or 0 if none. */
173 char16_t label; member in struct:android::KeyCharacterMap::Key
/frameworks/native/libs/input/
H A DInput.cpp50 int32_t KeyEvent::getKeyCodeFromLabel(const char* label) { argument
51 return getKeyCodeByLabel(label);
536 int32_t MotionEvent::getAxisFromLabel(const char* label) { argument
537 return getAxisByLabel(label);
H A DKeyCharacterMap.cpp52 const char* label; member in struct:android::Modifier
211 result = key->label;
617 char16_t label = parcel->readInt32(); local
624 key->label = label;
667 parcel->writeInt32(key->label);
686 label(0), number(0), firstBehavior(NULL) {
690 label(other.label), number(other.number),
831 ALOGE("%s: Expected keyboard type label, go
[all...]
/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A DglObjectPtrLabel.cpp1 /* void glObjectPtrLabel ( const void *ptr, GLsizei length, const GLchar *label ) */
3 android_glObjectPtrLabel(JNIEnv *_env, jobject _this, jlong ptr, jstring label) { argument
H A DglObjectPtrLabel.java1 // C function void glObjectPtrLabel ( const void *ptr, GLsizei length, const GLchar *label )
3 public static native void glObjectPtrLabel(long ptr, String label); argument
H A DglObjectPtrLabelKHR.cpp1 /* void glObjectPtrLabelKHR ( const void *ptr, GLsizei length, const GLchar *label ) */
3 android_glObjectPtrLabelKHR(JNIEnv *_env, jobject _this, jlong ptr, jstring label) { argument
H A DglObjectPtrLabelKHR.java1 // C function void glObjectPtrLabelKHR ( const void *ptr, GLsizei length, const GLchar *label )
3 public static native void glObjectPtrLabelKHR(long ptr, String label); argument
/frameworks/native/services/inputflinger/
H A DInputReader.cpp972 const char* label = getAxisLabel(range.axis); local
974 if (label) {
975 strncpy(name, label, sizeof(name));
6898 const char* label = getAxisLabel(axis.axisInfo.axis); local
6899 if (label) {
6900 dump.appendFormat(INDENT4 "%s", label);
6905 label = getAxisLabel(axis.axisInfo.highAxis);
6906 if (label) {
6907 dump.appendFormat(" / %s (split at %d)", label, axis.axisInfo.splitValue);

Completed in 4925 milliseconds

123456