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

12345

/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/api/
H A DarmCOMM_s.h250 M_CASE $label
254 DCW ($label - _Switch$_SwNum)/2
256 DCB ($label - _Switch$_SwNum)/2
260 B $label
439 ;// label {,cc}
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/api/
H A DarmCOMM_s.h253 M_CASE $label
257 DCW ($label - _Switch$_SwNum)/2
259 DCB ($label - _Switch$_SwNum)/2
263 B $label
442 ;// label {,cc}
/frameworks/base/core/java/android/accounts/
H A DAccountManagerService.java1046 String label = result.getString(AccountManager.KEY_AUTH_TOKEN_LABEL);
1048 bundle.putString(AccountManager.KEY_AUTH_TOKEN_LABEL, label);
/frameworks/base/core/java/android/app/
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(" ");
/frameworks/base/core/java/android/app/admin/
H A DDeviceAdminInfo.java153 final public int label; field in class:DeviceAdminInfo.PolicyInfo
159 label = labelIn;
338 * Load the user-displayed label for this device admin.
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetHostView.java147 setContentDescription(info.label);
H A DAppWidgetProviderInfo.java143 * The label to display to the user in the AppWidget picker. If not supplied in the
144 * xml, the application label will be used.
146 * <p>This field corresponds to the <code>android:label</code> attribute in
149 public String label; field in class:AppWidgetProviderInfo
218 this.label = in.readString();
246 out.writeString(this.label);
266 that.label = this.label == null ? null : this.label.substring(0);
/frameworks/base/core/java/android/content/
H A DClipData.java43 * For display to the user, it also has a label and iconic representation.</p>
615 * @param label Label to show to the user describing this clip.
619 public ClipData(CharSequence label, String[] mimeTypes, Item item) { argument
620 mClipDescription = new ClipDescription(label, mimeTypes);
661 * @param label User-visible label for the clip data.
665 static public ClipData newPlainText(CharSequence label, CharSequence text) { argument
667 return new ClipData(label, MIMETYPES_TEXT_PLAIN, item);
674 * @param label User-visible label fo
680 newHtmlText(CharSequence label, CharSequence text, String htmlText) argument
694 newIntent(CharSequence label, Intent intent) argument
710 newUri(ContentResolver resolver, CharSequence label, Uri uri) argument
750 newRawUri(CharSequence label, Uri uri) argument
[all...]
H A DClipDescription.java68 * @param label Label to show to the user describing this clip.
71 public ClipDescription(CharSequence label, String[] mimeTypes) { argument
75 mLabel = label;
114 * Return the label for this clip.
/frameworks/base/core/java/android/content/pm/
H A DApplicationInfo.java642 * @param pm A PackageManager from which the label can be loaded; usually
650 CharSequence label = pm.getText(packageName, descriptionRes, this);
651 if (label != null) {
652 return label;
H A DComponentInfo.java83 CharSequence label;
85 label = pm.getText(packageName, labelRes, ai);
86 if (label != null) {
87 return label;
94 label = pm.getText(packageName, ai.labelRes, ai);
95 if (label != null) {
96 return label;
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.java33 * a label, icon, and meta-data. This class is not intended
52 * component's label. From the "label" attribute or, if not set, 0.
100 * Retrieve the current textual label associated with this item. This
101 * will call back on the given PackageManager to load the label from
104 * @param pm A PackageManager from which the label can be loaded; usually
107 * @return Returns a CharSequence containing the item's label. If the
108 * item does not have a label, its name is returned.
115 CharSequence label = pm.getText(packageName, labelRes, getApplicationInfo());
116 if (label !
[all...]
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.java176 * @param pm A PackageManager from which the label can be loaded; usually
187 CharSequence label = pm.getText(packageName, descriptionRes, null);
188 if (label != null) {
189 return label;
H A DResolveInfo.java94 * match's label. From the "label" attribute or, if not set, 0.
123 * Retrieve the current textual label associated with this resolution. This
124 * will call back on the given PackageManager to load the label from
127 * @param pm A PackageManager from which the label can be loaded; usually
130 * @return Returns a CharSequence containing the resolutions's label. If the
131 * item does not have a label, its name is returned.
137 CharSequence label;
139 label = pm.getText(resolvePackageName, labelRes, null);
140 if (label !
[all...]
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteConnection.java120 private static native int nativeOpen(String path, int openFlags, String label, argument
210 mConfiguration.label,
339 + mConfiguration.label + "' from '" + value + "' to '" + newValue
386 throw new SQLiteException("Failed to change locale for db '" + mConfiguration.label
1133 String label = " (attached) " + name;
1135 label += ": " + path;
1137 dbStatsList.add(new DbStats(label, pageCount, pageSize, 0, 0, 0, 0));
1159 String label = mConfiguration.path;
1161 label += " (" + mConnectionId + ")";
1163 return new DbStats(label, pageCoun
[all...]
H A DSQLiteConnectionPool.java230 Log.i(TAG, "The connection pool for " + mConfiguration.label
489 + mConfiguration.label + "' was leaked! Please fix your application "
740 msg.append("The connection pool for database '").append(mConfiguration.label);
H A DSQLiteDatabase.java324 * Gets a label to use when describing the database in log messages.
325 * @return The label.
329 return mConfigurationLocked.label;
1939 Log.d(TAG, "this database: " + mConfigurationLocked.label
2158 throw new IllegalStateException("The database '" + mConfigurationLocked.label
H A DSQLiteDatabaseConfiguration.java39 // when constructing a label to use in log messages.
54 * The label to use to describe the database when it appears in logs.
57 public final String label; field in class:SQLiteDatabaseConfiguration
105 label = stripPathForLogs(path);
124 this.label = other.label;
/frameworks/base/core/java/android/gesture/
H A DInstance.java21 * An instance represents a sample if the label is available or a query if the
22 * label is null.
38 // the label can be null
39 final String label; field in class:Instance
47 label = sampleName;
69 * @param label
72 static Instance createInstance(int sequenceType, int orientationType, Gesture gesture, String label) { argument
77 instance = new Instance(gesture.getID(), pts, label);
81 instance = new Instance(gesture.getID(), pts, label);
H A DInstanceLearner.java66 Double score = label2score.get(sample.label);
68 label2score.put(sample.label, weight);
H A DLearner.java74 // the label can be null, as specified in Instance
75 if ((instance.label == null && name == null)
76 || (instance.label != null && instance.label.equals(name))) {
H A DPrediction.java24 Prediction(String label, double predictionScore) { argument
25 name = label;
/frameworks/base/core/java/android/hardware/input/
H A DKeyboardLayout.java43 public KeyboardLayout(String descriptor, String label, String collection) { argument
45 mLabel = label;
67 * Gets the keyboard layout descriptive label to show in the user interface.
68 * @return The keyboard layout descriptive label.
76 * the label of the broadcast receiver or application that provided the keyboard layout.

Completed in 253 milliseconds

12345