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

123

/frameworks/base/core/java/android/gesture/
H A DPrediction.java24 Prediction(String label, double predictionScore) { argument
25 name = label;
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);
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardPhoneNumberTranslationCallback.java34 public String onValueReceived(String rawValue, int type, String label, boolean isPrimary); argument
/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/services/java/com/android/server/net/
H A DBaseNetworkObserver.java49 public void interfaceClassDataActivityChanged(String label, boolean active) { argument
/frameworks/base/tests/ImfTest/src/com/android/imftest/samples/
H A DInputTypeActivity.java142 private View buildEntryView(int inputType, int label) { argument
150 TextView textView = (TextView) view.findViewById(R.id.label);
151 textView.setText(label);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
H A DFakeActionBar.java31 public FakeActionBar(Context context, Density density, String label, String icon) argument
39 mTextView = setText(1, label);
H A DTitleBar.java31 public TitleBar(Context context, Density density, String label) argument
38 mTextView = setText(0, label);
/frameworks/base/core/java/android/database/sqlite/
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/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/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/tests/coretests/src/android/widget/focus/
H A DHorizontalFocusSearch.java93 private Button makeTall(String label) { argument
95 button.setText(label);
102 private Button addShort(LinearLayout root, String label, boolean atBottom) { argument
104 button.setText(label);
H A DVerticalFocusSearch.java101 private Button makeWide(String label) { argument
103 button.setText(label);
114 * @param label The label of the button.
118 private Button addSkinny(LinearLayout root, String label, boolean atRight) { argument
120 button.setText(label);
/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 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.
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...]
/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...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DTaskDescription.java34 private CharSequence mLabel; // application package label
76 public void setLabel(CharSequence label) { argument
77 mLabel = label;
/frameworks/base/tests/StatusBar/src/com/android/statusbartest/
H A DNotificationTestList.java934 void timeNotification(int n, String label, long time) { argument
937 time, label, "" + new java.util.Date(time), null));
/frameworks/ex/chips/src/com/android/ex/chips/
H A DQueries.java42 public CharSequence getTypeLabel(Resources res, int type, CharSequence label) {
43 return Phone.getTypeLabel(res, type, label);
60 public CharSequence getTypeLabel(Resources res, int type, CharSequence label) {
61 return Email.getTypeLabel(res, type, label);
98 public abstract CharSequence getTypeLabel(Resources res, int type, CharSequence label); argument
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/
H A DVCardEntryTests.java174 public void onElementGroupStarted(EntryLabel label) { argument
178 mLabel = label;
/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/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...]

Completed in 3414 milliseconds

123