Searched refs:label (Results 226 - 250 of 313) sorted by relevance

1234567891011>>

/packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/apps/specialaccess/
H A DManageExternalSources.java81 switchPref.setTitle(entry.label);
/packages/apps/Settings/src/com/android/settings/applications/
H A DManageApplications.java1183 String label = mEntries.get(pos).label;
1184 int secId = mIndex.getBucketIndex(TextUtils.isEmpty(label) ? "" : label);
1382 if (entry.label != null) {
1383 holder.appName.setText(entry.label);
1513 final String label; field in class:ManageApplications.SectionInfo
1516 public SectionInfo(String label, int position) { argument
1517 this.label = label;
[all...]
H A DRunningState.java533 String label = clientr.getString(service.clientLabel);
535 R.string.service_client_name, label);
754 CharSequence label = item.loadLabel(pm);
755 if (label != null) {
756 return label;
760 String label = className;
761 int tail = label.lastIndexOf('.');
763 label = label.substring(tail+1, label
[all...]
H A DAppOpsState.java298 CharSequence label = mInfo.loadLabel(context.getPackageManager());
299 mLabel = label != null ? label.toString() : mInfo.packageName;
/packages/apps/Email/src/com/android/email/activity/setup/
H A DAuthenticationView.java163 provider.label));
245 provider.label));
/packages/apps/Settings/src/com/android/settings/localepicker/
H A DLocaleDragAndDropAdapter.java155 final String label = feedItem.getFullNameNative();
157 dragCell.setLabelAndDescription(label, description);
/packages/apps/Bluetooth/src/com/android/bluetooth/avrcpcontroller/
H A DAvrcpControllerService.java812 private synchronized void handleRegisterNotificationAbsVol(byte[] address, byte label) { argument
820 MESSAGE_PROCESS_REGISTER_ABS_VOL_NOTIFICATION, (int) label, 0);
825 private synchronized void handleSetAbsVolume(byte[] address, byte absVol, byte label) { argument
833 AvrcpControllerStateMachine.MESSAGE_PROCESS_SET_ABS_VOL_CMD, absVol, label);
1127 native static void sendAbsVolRspNative(byte[] address, int absVol, int label); argument
1131 int label);
1130 sendRegisterAbsVolRspNative(byte[] address, byte rspType, int absVol, int label) argument
/packages/apps/DeskClock/src/com/android/deskclock/
H A DHandleApiCalls.java431 final String label = getLabelFromIntent(intent, "");
434 // Attempt to reuse an existing timer that is Reset with the same length and label.
439 if (!TextUtils.equals(label, t.getLabel())) { continue; }
447 timer = DataModel.getDataModel().addTimer(lengthMillis, label, skipUi);
493 alarm.label = getLabelFromIntent(intent, alarm.label);
/packages/apps/Dialer/java/com/android/incallui/
H A DContactInfoCache.java156 String label = null;
250 label = info.phoneLabel;
264 cce.label = label;
277 /** Gets name strings based on some special presentation modes and the associated custom label. */
695 public String label; field in class:ContactInfoCache.ContactCacheEntry
737 + ", label='"
738 + label
875 final String label = info.getPhoneLabel();
877 entry.label
[all...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
H A DKey.java60 /** Hint label to display on the key in conjunction with the label */
62 /** Flags of the label */
82 // The bit to calculate the ratio of key label width against key width. If autoXScale bit is on
83 // and autoYScale bit is off, the key label may be shrunk only for X-direction.
84 // If both autoXScale and autoYScale bits are on, the key label text size may be auto scaled.
97 /** Icon to display instead of a label. Icon takes precedence over a label */
214 public Key(@Nullable final String label, final int iconId, final int code, argument
229 mLabel = label;
[all...]
/packages/apps/Calendar/src/com/android/calendar/selectcalendars/
H A DSelectSyncedCalendarsMultiAccountAdapter.java299 * Gets the label associated with a particular account type. If none found, return null.
301 * @return a CharSequence for the label or null if one cannot be found.
304 CharSequence label = null;
309 label = authContext.getResources().getText(desc.labelId);
311 Log.w(TAG, "No label for account type " + ", type " + accountType);
314 return label;
/packages/apps/Contacts/src/com/android/contacts/list/
H A DPhoneNumberListAdapter.java468 CharSequence label = null;
474 label = Phone.getTypeLabel(getContext().getResources(), type, customLabel);
476 view.setLabel(label);
481 // Display phone label. If that's null, display geocoded location for the number
/packages/apps/DeskClock/src/com/android/deskclock/data/
H A DTimerNotificationBuilder.java226 final String label = timer.getLabel();
227 if (TextUtils.isEmpty(label)) {
230 stateText = label;
/packages/apps/Dialer/java/com/android/contacts/common/list/
H A DPhoneNumberListAdapter.java364 CharSequence label = null;
370 label = Phone.getTypeLabel(mContext.getResources(), type, customLabel);
372 view.setLabel(label);
378 // Display phone label. If that's null, display geocoded location for the number
/packages/apps/Calendar/tests/src/com/android/calendar/event/
H A DEditEventHelperTest.java1069 String label = EventViewUtils.constructReminderLabel(mActivity, 35, true);
1070 assertEquals("35 mins", label);
1072 label = EventViewUtils.constructReminderLabel(mActivity, 72, false);
1073 assertEquals("72 minutes", label);
1075 label = EventViewUtils.constructReminderLabel(mActivity, 60, true);
1076 assertEquals("1 hours", label);
1078 label = EventViewUtils.constructReminderLabel(mActivity, 60 * 48, true);
1079 assertEquals("2 days", label);
/packages/apps/DocumentsUI/src/com/android/documentsui/files/
H A DFilesActivity.java179 // This is called in the intent contains label and icon resources.
184 // E.g. if we re-brand Files to Downloads by overlaying label and icon
193 String label = getResources().getString(labelRes);
203 setTaskDescription(new TaskDescription(label, flattenDrawableToBitmap(drawable)));
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
H A DEditorVignette.java115 TextView []label = {
127 label[i].setText("" + value);
/packages/apps/PackageInstaller/src/com/android/packageinstaller/permission/ui/handheld/
H A DAllAppPermissionsFragment.java130 final CharSequence label = appInfo.loadLabel(pm);
137 setHeader(icon, label, infoIntent);
H A DPermissionAppsFragment.java170 final CharSequence label = permissionApps.getLabel();
173 ab.setTitle(fragment.getString(R.string.permission_title, label));
/packages/apps/PackageInstaller/src/com/android/packageinstaller/permission/ui/television/
H A DAllAppPermissionsFragment.java135 final CharSequence label = appInfo.loadLabel(pm);
142 setHeader(icon, label, infoIntent, null);
/packages/apps/Contacts/src/com/android/contacts/widget/
H A DSelectPhoneAccountDialogFragment.java236 holder.labelTextView = (TextView) rowView.findViewById(R.id.label);
/packages/apps/DeskClock/src/com/android/deskclock/alarms/
H A DAlarmTimeClickHandler.java184 LabelDialogFragment.newInstance(alarm, alarm.label, mFragment.getTag());
H A DAlarmUpdateHandler.java124 newInstance.mLabel = alarm.label;
/packages/apps/DeskClock/src/com/android/deskclock/alarms/dataadapter/
H A DExpandedAlarmViewHolder.java136 // Edit label handler
241 editLabel.setText(alarm.label);
242 editLabel.setContentDescription(alarm.label != null && alarm.label.length() > 0
243 ? context.getString(R.string.label_description) + " " + alarm.label
/packages/apps/DeskClock/src/com/android/deskclock/provider/
H A DClockDatabaseHelper.java170 alarm.label = cursor.getString(6);

Completed in 1205 milliseconds

1234567891011>>