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

12

/packages/apps/Settings/src/com/android/settings/net/
H A DUidDetail.java22 public CharSequence label; field in class:UidDetail
/packages/apps/Email/src/com/android/email/
H A DStopWatch.java53 public void split(String label) { argument
56 Log.w(Logging.LOG_TAG, "StopWatch(" + mName + ") split(" + label + ") " + elapse);
/packages/apps/Email/src/com/android/email/activity/setup/
H A DSpinnerOption.java24 public final String label; field in class:SpinnerOption
36 public SpinnerOption(Object value, String label) { argument
38 this.label = label;
43 return label;
H A DAccountSettingsUtils.java123 provider.label = getXmlAttribute(context, xml, "label");
217 public String label; field in class:AccountSettingsUtils.Provider
/packages/apps/Contacts/src/com/android/contacts/calllog/
H A DContactInfo.java31 public String label; field in class:ContactInfo
63 if (!TextUtils.equals(label, other.label)) return false;
/packages/apps/Contacts/src/com/android/contacts/interactions/
H A DGroupDeletionDialogFragment.java34 private static final String ARG_LABEL = "label";
37 public static void show(FragmentManager fragmentManager, long groupId, String label, argument
42 args.putString(ARG_LABEL, label);
50 String label = getArguments().getString(ARG_LABEL);
51 String message = getActivity().getString(R.string.delete_group_dialog_message, label);
H A DPhoneNumberInteraction.java88 String label; field in class:PhoneNumberInteraction.PhoneItem
99 this.label = in.readString();
108 dest.writeString(label);
171 values.put(Phone.LABEL, item.label);
380 item.label = cursor.getString(cursor.getColumnIndex(Phone.LABEL));
/packages/apps/Contacts/src/com/android/contacts/detail/
H A DCarouselTab.java55 mLabelView = (TextView) findViewById(R.id.label);
62 public void setLabel(String label) { argument
63 mLabelView.setText(label);
/packages/apps/Contacts/tests/src/com/android/contacts/tests/allintents/
H A DResultActivity.java83 private void addRowForValue(String label, Object value) { argument
85 addRow(label, "null");
87 addRowWithBitmap(label, (Bitmap)value);
89 addRow(label, "INTENT");
92 addRow(label, "DATA");
95 addRow(label, "ARRAY");
101 addRow(label, String.valueOf(value));
134 TextView label = new TextView(this);
135 label.setPadding(4, 4, 4, 4);
136 label
165 addRowWithBitmap(String label, Bitmap bitmap) argument
[all...]
/packages/apps/Launcher2/src/com/android/launcher2/
H A DApplicationInfo.java125 public static void dumpApplicationInfoList(String tag, String label, argument
127 Log.d(tag, label + " size=" + list.size());
H A DShortcutInfo.java151 public static void dumpShortcutInfoList(String tag, String label, argument
153 Log.d(tag, label + " size=" + list.size());
/packages/apps/PackageInstaller/src/com/android/packageinstaller/
H A DPackageUtil.java81 public static View initSnippet(View snippetView, CharSequence label, Drawable icon) { argument
83 ((TextView)snippetView.findViewById(R.id.app_name)).setText(label);
120 ((TextView)appSnippet.findViewById(R.id.app_name)).setText(as.label);
138 CharSequence label; field in class:PackageUtil.AppSnippet
140 public AppSnippet(CharSequence label, Drawable icon) { argument
141 this.label = label;
146 * Utility method to load application label
159 CharSequence label = null;
160 // Try to load the label fro
[all...]
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
H A DCorpusView.java59 public void setLabel(CharSequence label) { argument
60 mLabel.setText(label);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/deprecated/languageswitcher/
H A DInputLanguageSelection.java62 public LocaleEntry(String label, Locale locale) { argument
63 this.mLabel = label;
/packages/apps/VoiceDialer/src/com/android/voicedialer/
H A DVoiceDialerTester.java221 private void reportSummary(String label, FileFilter filter) { argument
253 label);
H A DCommandRecognizerEngine.java252 // fetch a scrubbed window label
253 String label = scrubName(ri.loadLabel(pm).toString());
254 if (label.length() == 0) continue;
257 addClassName(mOpenEntries, label,
261 String[] words = label.split(" ");
320 for (String label : mOpenEntries.keySet()) {
322 String entry = mOpenEntries.get(label);
335 mSrecGrammar.addWordToSlot("@Opens", label, null, 1, "V='" + label + "'");
342 * @param label
345 addClassName(HashMap<String,String> openEntries, String label, String packageName, String className) argument
[all...]
/packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/
H A DContactEntryAdapter.java42 public String label; field in class:ContactEntryAdapter.Entry
55 p.writeString(label);
69 label = p.readString();
/packages/apps/Calendar/src/com/android/calendar/event/
H A DAttendeesView.java144 private View constructDividerView(CharSequence label) { argument
147 textView.setText(label);
153 // parenthesis next to the label
154 private void updateDividerViewLabel(View divider, CharSequence label, int count) { argument
156 ((TextView)divider).setText(label);
159 ((TextView)divider).setText(label + " (" + count + ")");
/packages/apps/Calendar/src/com/android/calendar/widget/
H A DCalendarAppWidgetModel.java203 DayInfo(int julianDay, String label) { argument
205 mDayLabel = label;
411 String label;
413 label = mContext.getString(R.string.agenda_tomorrow,
417 label = Utils.formatDateRange(mContext, millis, millis, flags);
419 return new DayInfo(julianDay, label);
/packages/apps/DeskClock/src/com/android/deskclock/
H A DAlarm.java58 p.writeString(label);
164 public String label; field in class:Alarm
176 label = c.getString(Columns.ALARM_MESSAGE_INDEX);
205 label = p.readString();
223 if (label == null || label.length() == 0) {
226 return label;
/packages/apps/Settings/src/com/android/settings/
H A DActivityPicker.java153 String label = labels.get(i);
167 items.add(new PickAdapter.Item(this, label, icon));
216 CharSequence label; field in class:ActivityPicker.PickAdapter.Item
223 * Create a list item from given label and icon.
225 Item(Context context, CharSequence label, Drawable icon) { argument
226 this.label = label;
235 label = resolveInfo.loadLabel(pm);
236 if (label == null && resolveInfo.activityInfo != null) {
237 label
[all...]
H A DTrustedCredentialsSettings.java74 private Tab(String tag, int label, int view, int progress, int list, boolean checkbox) { argument
76 mLabel = label;
/packages/apps/Settings/src/com/android/settings/fuelgauge/
H A DBatterySipper.java64 Handler handler, String label, DrainType drainType,
70 name = label;
76 if ((label == null || iconId == 0) && uid != null) {
155 CharSequence label = ai.loadLabel(pm);
156 if (label != null) {
157 packageLabels[i] = label.toString();
63 BatterySipper(Context context, ArrayList<BatterySipper> requestQueue, Handler handler, String label, DrainType drainType, int iconId, Uid uid, double[] values) argument
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
H A DFallbackSource.java512 protected CharSequence getTypeLabel(Resources res, Integer type, CharSequence label) { argument
517 return res.getString(labelRes, label == null ? "" : label);
525 final String label = cursor.getString(cursor.getColumnIndex(getLabelColumn()));
526 return getTypeLabel(context.getResources(), type, label);
531 final String label = values.getAsString(getLabelColumn());
532 return getTypeLabel(context.getResources(), type, label);
/packages/experimental/LoaderApp/src/com/android/loaderapp/util/
H A DContactsUtils.java52 // Try finding the type and label for this mimetype
58 // Reset to phone mimetype so we generate a label for SMS case
76 final CharSequence label = cursor.getString(colLabel);
78 return getDisplayLabel(context, mimeType, type, label);
82 CharSequence label) {
105 // Can't return display label for given mimetype.
117 if (!TextUtils.isEmpty(label)) {
118 display = label;
81 getDisplayLabel(Context context, String mimetype, int type, CharSequence label) argument

Completed in 1706 milliseconds

12