Searched refs:label (Results 1 - 25 of 286) sorted by path

1234567891011>>

/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/api/
H A DarmCOMM_s.h264 M_CASE $label
268 DCW ($label - _Switch$_SwNum)/2
270 DCB ($label - _Switch$_SwNum)/2
274 B $label
453 ;// label {,cc}
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/api/
H A DarmCOMM_s.h267 M_CASE $label
271 DCW ($label - _Switch$_SwNum)/2
273 DCB ($label - _Switch$_SwNum)/2
277 B $label
456 ;// label {,cc}
/frameworks/base/cmds/telecom/src/com/android/commands/telecom/
H A DTelecom.java151 final String label = nextArgRequired();
152 PhoneAccount account = PhoneAccount.builder(handle, label)
160 final String label = nextArgRequired();
163 handle, label)
168 .setShortDescription(label)
/frameworks/base/core/java/android/app/
H A DActivityManager.java1205 ATTR_TASKDESCRIPTION_PREFIX + "label";
1224 * @param label A label and description of the current state of this task.
1229 public TaskDescription(String label, Bitmap icon, int colorPrimary) { argument
1230 this(label, icon, null, colorPrimary, 0, 0, 0);
1239 * @param label A label and description of the current state of this activity.
1242 public TaskDescription(String label, Bitmap icon) { argument
1243 this(label, icon, null, 0, 0, 0, 0);
1249 * @param label
1251 TaskDescription(String label) argument
1263 TaskDescription(String label, Bitmap icon, String iconFilename, int colorPrimary, int colorBackground, int statusBarColor, int navigationBarColor) argument
1324 setLabel(String label) argument
[all...]
H A DApplicationPackageManager.java1355 public CharSequence getUserBadgedLabel(CharSequence label, UserHandle user) { argument
1359 return Resources.getSystem().getString(resourceId, label);
1361 return label;
H A DLauncherActivity.java67 public CharSequence label; field in class:LauncherActivity.ListItem
75 label = resolveInfo.loadLabel(pm);
78 if (label == null && ci != null) {
79 label = resolveInfo.activityInfo.name;
164 text.setText(item.label);
212 String[] words = item.label.toString().toLowerCase().split(" ");
H A DNotification.java1209 * It must include an icon, a label, and a {@link PendingIntent} to be fired when the action is
1679 * Set a label to display while the wearable is preparing to automatically execute the
1682 * @param label the label to display while the action is being prepared to execute
1685 public WearableExtender setInProgressLabel(CharSequence label) { argument
1686 mInProgressLabel = label;
1691 * Get the label to display while the wearable is preparing to automatically execute
1694 * @return the label to display while the action is being prepared to execute
1701 * Set a label to display to confirm that the action should be executed.
1704 * @param label th
1707 setConfirmLabel(CharSequence label) argument
1729 setCancelLabel(CharSequence label) argument
[all...]
H A DRemoteInput.java40 * sets the result key as {@code quick_reply}, and sets the label as {@code Quick reply}.
89 private RemoteInput(String resultKey, CharSequence label, CharSequence[] choices, argument
92 this.mLabel = label;
108 * Get the label to display to users when collecting this input.
181 * Set a label to be displayed to the user when collecting this input.
182 * @param label The label to show to users when they input a response.
185 public Builder setLabel(CharSequence label) { argument
186 mLabel = Notification.safeCharSequence(label);
H A DVoiceInteractor.java406 * Creates an option that a user can select with their voice by matching the label
408 * @param label The label that will both be matched against what the user speaks
412 public Option(CharSequence label) { argument
413 mLabel = label;
418 * Creates an option that a user can select with their voice by matching the label
420 * @param label The label that will both be matched against what the user speaks
426 public Option(CharSequence label, int index) { argument
427 mLabel = label;
[all...]
/frameworks/base/core/java/android/app/admin/
H A DDeviceAdminInfo.java170 public final int label; field in class:DeviceAdminInfo.PolicyInfo
175 public PolicyInfo(int ident, String tag, int label, int description) { argument
176 this(ident, tag, label, description, label, description);
179 public PolicyInfo(int ident, String tag, int label, int description, argument
183 this.label = label;
384 * Load the user-displayed label for this device admin.
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetHostView.java512 com.android.internal.R.string.suspended_widget_accessibility, info.label));
514 setContentDescription(info.label);
H A DAppWidgetProviderInfo.java158 * The label to display to the user in the AppWidget picker.
163 public String label; field in class:AppWidgetProviderInfo
237 this.label = in.readString();
247 * Loads the localized label to display to the user in the AppWidget picker.
250 * @return The label for the current locale.
253 CharSequence label = providerInfo.loadLabel(packageManager);
254 if (label != null) {
255 return label.toString().trim();
331 out.writeString(this.label);
353 that.label
[all...]
/frameworks/base/core/java/android/content/
H A DClipData.java53 * For display to the user, it also has a label.</p>
673 * @param label Label to show to the user describing this clip.
677 public ClipData(CharSequence label, String[] mimeTypes, Item item) { argument
678 mClipDescription = new ClipDescription(label, mimeTypes);
737 * @param label User-visible label for the clip data.
741 static public ClipData newPlainText(CharSequence label, CharSequence text) { argument
743 return new ClipData(label, MIMETYPES_TEXT_PLAIN, item);
750 * @param label User-visible label fo
756 newHtmlText(CharSequence label, CharSequence text, String htmlText) argument
770 newIntent(CharSequence label, Intent intent) argument
786 newUri(ContentResolver resolver, CharSequence label, Uri uri) argument
833 newRawUri(CharSequence label, Uri uri) argument
[all...]
H A DClipDescription.java101 * @param label Label to show to the user describing this clip.
104 public ClipDescription(CharSequence label, String[] mimeTypes) { argument
108 mLabel = label;
171 * Return the label for this clip.
H A DUndoManager.java40 * {@link #getLastOperation}, control the label shown to the user for this operation
383 * Return the user-visible label for the top undo state on the stack.
393 * Return the user-visible label for the top redo state on the stack.
405 * @param label Optional user-visible label for this new undo state.
407 public void beginUpdate(CharSequence label) { argument
417 mWorking.updateLabel(label);
437 * Any existing label will be replaced with this one.
439 public void setUndoLabel(CharSequence label) { argument
443 mWorking.setLabel(label);
450 suggestUndoLabel(CharSequence label) argument
787 setLabel(CharSequence label) argument
791 updateLabel(CharSequence label) argument
[all...]
/frameworks/base/core/java/android/content/pm/
H A DApplicationInfo.java743 * here to represent a catchall label when no policy matches.
1374 * @param pm A PackageManager from which the label can be loaded; usually
1382 CharSequence label = pm.getText(packageName, descriptionRes, this);
1383 if (label != null) {
1384 return label;
H A DComponentInfo.java104 CharSequence label;
106 label = pm.getText(packageName, labelRes, ai);
107 if (label != null) {
108 return label;
115 label = pm.getText(packageName, ai.labelRes, ai);
116 if (label != null) {
117 return label;
H A DInstantAppInfo.java30 * such as permissions, label, package name.
52 public InstantAppInfo(String packageName, CharSequence label, argument
56 mLabelText = label;
89 * @return Loads the label if the app is installed or returns the cached one otherwise.
H A DLabeledIntent.java25 * A special subclass of Intent that can have a custom label/icon
35 * Create a labeled intent from the given intent, supplying the label
39 * @param sourcePackage The package in which the label and icon live.
40 * @param labelRes Resource containing the label, or 0 if none.
54 * label and icon resource for it.
57 * @param sourcePackage The package in which the label and icon live.
58 * @param nonLocalizedLabel Concrete text to use for the label.
71 * Create a labeled intent with no intent data but supplying the label
74 * @param sourcePackage The package in which the label and icon live.
75 * @param labelRes Resource containing the label, o
[all...]
H A DPackageItemInfo.java37 * a label, icon, and meta-data. This class is not intended
57 * component's label. From the "label" attribute or, if not set, 0.
120 * Retrieve the current textual label associated with this item. This
121 * will call back on the given PackageManager to load the label from
124 * @param pm A PackageManager from which the label can be loaded; usually
127 * @return Returns a CharSequence containing the item's label. If the
128 * item does not have a label, its name is returned.
135 CharSequence label = pm.getText(packageName, labelRes, getApplicationInfo());
136 if (label !
[all...]
H A DPackageManager.java4558 * is itself a managed profile, then this returns a copy of the label with
4562 * @param label The label to change.
4564 * @return A label that combines the original label and a badge as
4567 public abstract CharSequence getUserBadgedLabel(CharSequence label, UserHandle user); argument
4609 * Return the label to use for this application.
4611 * @return Returns the label associated with this application, or null if
4613 * @param info The application to get the label of.
H A DPermissionGroupInfo.java77 * @param pm A PackageManager from which the label can be loaded; usually
88 CharSequence label = pm.getText(packageName, descriptionRes, null);
89 if (label != null) {
90 return label;
H A DPermissionInfo.java280 * @param pm A PackageManager from which the label can be loaded; usually
291 CharSequence label = pm.getText(packageName, descriptionRes, null);
292 if (label != null) {
293 return label;
H A DResolveInfo.java124 * match's label. From the "label" attribute or, if not set, 0.
188 * Retrieve the current textual label associated with this resolution. This
189 * will call back on the given PackageManager to load the label from
192 * @param pm A PackageManager from which the label can be loaded; usually
195 * @return Returns a CharSequence containing the resolutions's label. If the
196 * item does not have a label, its name is returned.
202 CharSequence label;
204 label = pm.getText(resolvePackageName, labelRes, null);
205 if (label !
[all...]
/frameworks/base/core/java/android/content/pm/permission/
H A DRuntimePermissionPresentationInfo.java44 * @param label The permission label.
48 public RuntimePermissionPresentationInfo(CharSequence label, argument
50 mLabel = label;
81 * Gets the permission label.
83 * @return The label.

Completed in 378 milliseconds

1234567891011>>