Searched defs:label (Results 26 - 38 of 38) sorted by relevance

12

/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboard.java81 /** Keyboard label **/
233 public CharSequence label; field in class:Keyboard.Key
235 /** Icon to display instead of a label. Icon takes precedence over a label */
380 label = a.getText(com.android.internal.R.styleable.Keyboard_Key_keyLabel);
383 if (codes == null && !TextUtils.isEmpty(label)) {
384 codes = new int[] { label.charAt(0) };
571 key.label = String.valueOf(c);
H A DKeyboardView.java562 private CharSequence adjustCase(CharSequence label) { argument
563 if (mKeyboard.isShifted() && label != null && label.length() < 3
564 && Character.isLowerCase(label.charAt(0))) {
565 label = label.toString().toUpperCase();
567 return label;
670 String label = key.label == null? null : adjustCase(key.label)
[all...]
/frameworks/base/core/java/android/pim/vcard/
H A DVCardEntry.java84 public final String label; field in class:VCardEntry.PhoneData
88 public PhoneData(int type, String data, String label, boolean isPrimary) { argument
91 this.label = label;
102 label.equals(phoneData.label) && isPrimary == phoneData.isPrimary);
107 return String.format("type: %d, data: %s, label: %s, isPrimary: %s",
108 type, data, label, isPrimary);
116 public final String label; field in class:VCardEntry.EmailData
118 public EmailData(int type, String data, String label, boolea argument
155 public final String label; field in class:VCardEntry.PostalData
158 PostalData(final int type, final List<String> propValueList, final String label, boolean isPrimary) argument
495 addPhone(int type, String data, String label, boolean isPrimary) argument
527 addEmail(int type, String data, String label, boolean isPrimary) argument
534 addPostal(int type, List<String> propValueList, String label, boolean isPrimary) argument
[all...]
/frameworks/base/core/tests/coretests/src/android/pim/vcard/
H A DVCardExporterTests.java1000 Integer type, String label) {
1003 + (label != null ? label : "") + ";;;;;;;;;;;;");
999 getAndroidPropValue(final String mimeType, String value, Integer type, String label) argument
/frameworks/base/services/java/com/android/server/
H A DProcessStats.java753 private void printProcessCPU(PrintWriter pw, String prefix, int pid, String label, argument
764 pw.print(label);
H A DMountService.java576 // FMT: <label> <mountpoint> <state>
642 * Format: "NNN Volume <label> <path> state changed
658 // FMT: NNN Volume <label> <mountpoint> disk inserted (<major>:<minor>)
659 // FMT: NNN Volume <label> <mountpoint> disk removed (<major>:<minor>)
660 // FMT: NNN Volume <label> <mountpoint> bad removal (<major>:<minor>)
661 final String label = cooked[2];
727 private void notifyVolumeStateChange(String label, String path, int oldState, int newState) { argument
/frameworks/base/tools/aapt/
H A DAaptAssets.h439 bool check_valid_symbol_name(const String8& symbol, const SourcePos& pos, const char* label) { argument
443 pos.error("invalid %s: '%s'\n", label, symbol.string());
H A DCommand.cpp631 printf("label='%s' icon='%s'\n",
696 String8 label = getResolvedAttribute(&res, tree, LABEL_ATTR, &error); local
698 fprintf(stderr, "ERROR getting 'android:label' attribute: %s\n", error.string());
701 printf("application: label='%s' ", label.string());
935 fprintf(stderr, "ERROR getting 'android:label' attribute: %s\n", error.string());
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DAsmAnalyzer.java566 public void visitJumpInsn(int opcode, Label label) { argument
570 public void visitLabel(Label label) { argument
571 // pass -- a label target
/frameworks/base/core/java/android/provider/
H A DContacts.java910 * The user provided label for the phone number, only used if TYPE is TYPE_CUSTOM.
915 public static final String LABEL = "label";
961 CharSequence label, CharSequence[] labelArray) {
974 if (!TextUtils.isEmpty(label)) {
975 display = label;
986 CharSequence label) {
987 return getDisplayLabel(context, type, label, null);
1196 * The user defined label for the the contact method.
1201 public static final String LABEL = "label";
1398 int type, CharSequence label) {
960 getDisplayLabel(Context context, int type, CharSequence label, CharSequence[] labelArray) argument
985 getDisplayLabel(Context context, int type, CharSequence label) argument
1397 getDisplayLabel(Context context, int kind, int type, CharSequence label) argument
1762 getDisplayLabel(Context context, int type, CharSequence label) argument
[all...]
H A DContactsContract.java433 * The package containing resources for this status: label and icon.
439 * The resource ID of the label describing the source of contact
836 * <td> The package containing resources for this status: label and icon.</td>
842 * <td>The resource ID of the label describing the source of contact status,
1943 * The package containing resources for this status: label and icon.
1949 * The resource ID of the label describing the source of the status update, e.g. "Google
2435 * <td>The package containing resources for this status: label and icon.</td>
2441 * <td>The resource ID of the label describing the source of status update linked
2861 * The user defined label for the phone number.
2864 public static final String LABEL = "label";
3698 getDisplayLabel(Context context, int type, CharSequence label, CharSequence[] labelArray) argument
3708 getDisplayLabel(Context context, int type, CharSequence label) argument
3748 getTypeLabel(Resources res, int type, CharSequence label) argument
3900 getTypeLabel(Resources res, int type, CharSequence label) argument
4107 getTypeLabel(Resources res, int type, CharSequence label) argument
4245 getTypeLabel(Resources res, int type, CharSequence label) argument
4279 getProtocolLabel(Resources res, int type, CharSequence label) argument
4452 getTypeLabel(Resources res, int type, CharSequence label) argument
4929 getTypeLabel(Resources res, int type, CharSequence label) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DTextView.java3101 public void setImeActionLabel(CharSequence label, int actionId) { argument
3105 mInputContentType.imeActionLabel = label;
3110 * Get the IME action label previous set with {@link #setImeActionLabel}.
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java7866 String prefix, String label, boolean complete) {
7880 pw.print(prefix); pw.print(full ? " * " : " "); pw.print(label);
7865 dumpHistoryList(PrintWriter pw, List list, String prefix, String label, boolean complete) argument

Completed in 1169 milliseconds

12