Searched defs:label (Results 1 - 25 of 70) sorted by path

123

/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 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/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 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 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.
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboard.java81 /** Keyboard label **/
238 public CharSequence label; field in class:Keyboard.Key
240 /** Icon to display instead of a label. Icon takes precedence over a label */
385 label = a.getText(com.android.internal.R.styleable.Keyboard_Key_keyLabel);
388 if (codes == null && !TextUtils.isEmpty(label)) {
389 codes = new int[] { label.charAt(0) };
599 key.label = String.valueOf(c);
H A DKeyboardView.java576 private CharSequence adjustCase(CharSequence label) { argument
577 if (mKeyboard.isShifted() && label != null && label.length() < 3
578 && Character.isLowerCase(label.charAt(0))) {
579 label = label.toString().toUpperCase();
581 return label;
687 String label = key.label == null? null : adjustCase(key.label)
[all...]
/frameworks/base/core/java/android/net/
H A DEthernetDataTracker.java103 public void interfaceClassDataActivityChanged(String label, boolean active) { argument
/frameworks/base/core/java/android/os/
H A DPerformanceCollector.java29 * with name of test as the label, e.g. EmailPerformanceTest.
34 * with the name of test case as the label, e.g. testSimpleSendMailSequence.
71 * @param label description of code block between beginSnapshot and
75 public void writeBeginSnapshot(String label); argument
93 * @param label description of code block between startTiming and
97 public void writeStartTiming(String label); argument
116 * @param label short description of the metric that was measured
119 public void writeMeasurement(String label, long value); argument
126 * @param label short description of the metric that was measured
129 public void writeMeasurement(String label, floa argument
139 writeMeasurement(String label, String value) argument
305 beginSnapshot(String label) argument
362 startTiming(String label) argument
387 addIteration(String label) argument
411 stopTiming(String label) argument
424 addMeasurement(String label, long value) argument
435 addMeasurement(String label, float value) argument
446 addMeasurement(String label, String value) argument
[all...]
/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.java976 * The package containing resources for this status: label and icon.
982 * The resource ID of the label describing the source of contact
1382 * <td> The package containing resources for this status: label and icon.</td>
1388 * <td>The resource ID of the label describing the source of contact status,
2992 * The package containing resources for this status: label and icon.
2998 * The resource ID of the label describing the source of the status update, e.g. "Google
3358 * The resource name of the label describing the source of the status update, e.g. "Google
3363 public static final String RES_LABEL = "label";
4154 * <td>The package containing resources for this status: label and icon.</td>
4160 * <td>The resource ID of the label describin
5475 getDisplayLabel(Context context, int type, CharSequence label, CharSequence[] labelArray) argument
5485 getDisplayLabel(Context context, int type, CharSequence label) argument
5525 getTypeLabel(Resources res, int type, CharSequence label) argument
5676 getTypeLabel(Resources res, int type, CharSequence label) argument
5883 getTypeLabel(Resources res, int type, CharSequence label) argument
6021 getTypeLabel(Resources res, int type, CharSequence label) argument
6055 getProtocolLabel(Resources res, int type, CharSequence label) argument
6228 getTypeLabel(Resources res, int type, CharSequence label) argument
6354 getTypeLabel(Resources res, int type, CharSequence label) argument
6761 getTypeLabel(Resources res, int type, CharSequence label) argument
[all...]
/frameworks/base/core/java/android/speech/tts/
H A DTextToSpeech.java1368 * Localized label for the engine.
1370 public String label; field in class:TextToSpeech.EngineInfo
/frameworks/base/core/java/android/util/
H A DTimingLogger.java56 /** A label to be included in every log. */
74 * @param label a string to be displayed with each log
76 public TimingLogger(String tag, String label) { argument
77 reset(tag, label);
86 * @param label a string to be displayed with each log
88 public void reset(String tag, String label) { argument
90 mLabel = label;
96 * the tag and label that was specified previously, either via
97 * the constructor or a call to reset(tag, label). If the
120 * @param splitLabel a label t
[all...]
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java1239 * label for accessibility purposes.
1241 * @param labeled The view for which this info serves as a label.
1249 * label for accessibility purposes. If <code>virtualDescendantId</code>
1263 * @param root The root whose virtual descendant serves as a label.
1275 * a label for accessibility purposes.
1295 * Sets the view which serves as the label of the view represented by
1298 * @param label The view that labels this node's source.
1300 public void setLabeledBy(View label) { argument
1301 setLabeledBy(label, UNDEFINED);
1305 * Sets the view which serves as the label o
[all...]
/frameworks/base/core/java/android/view/inputmethod/
H A DCompletionInfo.java34 * Create a simple completion with just text, no label.
44 * Create a full completion with both text and label.
46 public CompletionInfo(long id, int index, CharSequence text, CharSequence label) { argument
50 mLabel = label;
85 * Return the user-visible label for the completion, or null if the plain
96 + "\" id=" + mId + " label=" + mLabel + "}";
H A DEditorInfo.java211 * In some cases an IME may be able to display an arbitrary label for
255 * A label to show to the user describing the text they are writing.
257 public CharSequence label; field in class:EditorInfo
338 + " label=" + label);
361 TextUtils.writeToParcel(label, dest, flags);
383 res.label = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source);
H A DInputMethodInfo.java224 CharSequence label, String settingsActivity) {
235 si.nonLocalizedLabel = label;
285 * Load the user-displayed label for this input method.
223 InputMethodInfo(String packageName, String className, CharSequence label, String settingsActivity) argument
/frameworks/base/core/java/android/widget/
H A DTabHost.java480 * 1) set a label
481 * 2) set a label and an icon
500 * Specify a label as the tab indicator.
502 public TabSpec setIndicator(CharSequence label) { argument
503 mIndicatorStrategy = new LabelIndicatorStrategy(label);
508 * Specify a label and icon as the tab indicator.
510 public TabSpec setIndicator(CharSequence label, Drawable icon) { argument
511 mIndicatorStrategy = new LabelAndIconIndicatorStrategy(label, icon);
584 * How to create a tab indicator that just has a label.
590 private LabelIndicatorStrategy(CharSequence label) { argument
623 LabelAndIconIndicatorStrategy(CharSequence label, Drawable icon) argument
[all...]
H A DTextView.java3921 public void setImeActionLabel(CharSequence label, int actionId) { argument
3924 mEditor.mInputContentType.imeActionLabel = label;
3929 * Get the IME action label previous set with {@link #setImeActionLabel}.
/frameworks/base/core/java/com/android/internal/app/
H A DLocalePicker.java56 String label; field in class:LocalePicker.LocaleInfo
59 public LocaleInfo(String label, Locale locale) { argument
60 this.label = label;
65 return label;
74 return this.label;
79 return sCollator.compare(this.label, another.label);
85 * {@link LocaleInfo#label}.
124 preprocess[finalSize-1].label
[all...]

Completed in 770 milliseconds

123