Searched refs:label (Results 101 - 117 of 117) sorted by last modified time

12345

/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/
H A DView.java2835 * Specifies the id of a view for which this view serves as a label for
2841 * Predicate for matching labeled view id with its label for
4983 View label = rootView.findLabelForView(this, mID);
4984 if (label != null) {
4985 info.setLabeledBy(label);
5249 * Gets the id of a view for which this view serves as a label for
5260 * Sets the id of a view for which this view serves as a label for
/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/view/textservice/
H A DSpellCheckerInfo.java71 int label = 0;
97 label = sa.getResourceId(com.android.internal.R.styleable.SpellChecker_label, 0);
131 mLabel = label;
203 * Load the user-displayed label for this spell checker.
/frameworks/base/core/java/android/widget/
H A DActivityChooserView.java506 CharSequence label = activity.loadLabel(packageManager);
508 mDefaultActionButtonContentDescription, label);
H A DAppSecurityPermissions.java173 CharSequence label = perm.mLabel;
183 builder.append(label);
184 label = builder;
188 permNameView.setText(label);
191 + ": " + label + " in group " + grp.name);
H A DCalendarView.java1038 TextView label = (TextView) mDayNamesHeader.getChildAt(0);
1040 label.setVisibility(View.VISIBLE);
1042 label.setVisibility(View.GONE);
1045 label = (TextView) mDayNamesHeader.getChildAt(i);
1047 label.setTextAppearance(mContext, mWeekDayTextAppearanceResId);
1050 label.setText(mDayLabels[i - 1]);
1051 label.setVisibility(View.VISIBLE);
1053 label.setVisibility(View.GONE);
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...]
/frameworks/base/core/java/com/android/internal/os/
H A DProcessStats.java756 private void printProcessCPU(PrintWriter pw, String prefix, int pid, String label, argument
767 pw.print(label);
/frameworks/base/core/java/com/android/internal/widget/
H A DPasswordEntryKeyboard.java93 // Log.w(TAG, "Key code for " + key.label + " is not latin-1");
94 key.label = " ";
127 mEnterKey.label = res.getText(labelId);
/frameworks/base/core/jni/android/opengl/
H A Dutil.cpp75 print_poly(const char* label, Poly* pPoly) {
76 ALOGI("%s: %d verts", label, pPoly->n);
/frameworks/base/core/jni/
H A Dandroid_database_SQLiteConnection.cpp82 const String8 label; member in struct:android::SQLiteConnection
86 SQLiteConnection(sqlite3* db, int openFlags, const String8& path, const String8& label) : argument
87 db(db), openFlags(openFlags), path(path), label(label), canceled(false) { }
94 connection->label.string(), sql);
101 connection->label.string(), sql, tm * 0.000001f);
127 String8 label(labelChars);
161 SQLiteConnection* connection = new SQLiteConnection(db, openFlags, path, label);
171 ALOGV("Opened connection %p with label '%s'", db, label
[all...]

Completed in 588 milliseconds

12345