Searched refs:description (Results 1 - 25 of 114) sorted by relevance

12345

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
H A DUnsupportedFormatException.java23 public UnsupportedFormatException(String description) { argument
24 super(description);
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/old/
H A DEditTextFragment.java39 private static final String EXTRA_DESC = "description";
57 public static EditTextFragment newInstance(String description) { argument
58 return newInstance(description, null);
61 public static EditTextFragment newInstance(String description, String initialText) { argument
62 return newInstance(description, initialText, false);
65 public static EditTextFragment newInstance(String description, String initialText, argument
69 args.putString(EXTRA_DESC, description);
98 TextView description = (TextView) view.findViewById(R.id.description);
99 if (description !
[all...]
H A DContentFragment.java49 String description) {
50 return newInstance(title, breadcrumb, description, 0, Color.TRANSPARENT);
53 public static ContentFragment newInstance(String title, String breadcrumb, String description, argument
55 return newInstance(title, breadcrumb, description, iconResourceId, Color.TRANSPARENT);
58 public static ContentFragment newInstance(String title, String breadcrumb, String description, argument
62 BaseContentFragment.buildArgs(title, breadcrumb, description, iconResourceId,
67 public static ContentFragment newInstance(String title, String breadcrumb, String description, argument
69 return newInstance(title, breadcrumb, description, iconResourceUri, Color.TRANSPARENT);
72 public static ContentFragment newInstance(String title, String breadcrumb, String description, argument
76 BaseContentFragment.buildArgs(title, breadcrumb, description, iconResourceUr
48 newInstance(String title, String breadcrumb, String description) argument
81 newInstance(String title, String breadcrumb, String description, Bitmap iconbitmap) argument
[all...]
H A DDialogActivity.java64 * Dialog Content Fragment description.
114 String breadcrumb, String description, String imageUri,
116 return createIntent(context, title, breadcrumb, description, imageUri,
121 String breadcrumb, String description, String imageUri,
126 intent.putExtra(EXTRA_DIALOG_DESCRIPTION, description);
135 String breadcrumb, String description, String imageUri,
137 return createIntent(context, title, breadcrumb, description, imageUri, Color.TRANSPARENT,
142 String breadcrumb, String description, String imageUri, int imageBackground,
147 intent.putExtra(EXTRA_DIALOG_DESCRIPTION, description);
156 String breadcrumb, String description, Strin
113 createIntent(Context context, String title, String breadcrumb, String description, String imageUri, ArrayList<Action> actions) argument
120 createIntent(Context context, String title, String breadcrumb, String description, String imageUri, int imageBackground, ArrayList<Action> actions) argument
134 createIntent(Context context, String title, String breadcrumb, String description, String imageUri, ArrayList<Action> actions, Class<? extends DialogActivity> activityClass) argument
141 createIntent(Context context, String title, String breadcrumb, String description, String imageUri, int imageBackground, ArrayList<Action> actions, Class<? extends DialogActivity> activityClass) argument
155 createIntent(Context context, String title, String breadcrumb, String description, String imageUri, int imageBackground, ArrayList<Action> actions, Class<? extends DialogActivity> activityClass, int startIndex) argument
[all...]
H A DBaseContentFragment.java49 private static final String EXTRA_DESCRIPTION = "description";
59 public static Bundle buildArgs(String title, String breadcrumb, String description) { argument
60 return buildArgs(title, breadcrumb, description, 0, null, null, Color.TRANSPARENT);
64 String title, String breadcrumb, String description, int iconResourceId,
66 return buildArgs(title, breadcrumb, description, iconResourceId, null, null,
70 public static Bundle buildArgs(String title, String breadcrumb, String description, Uri iconUri, argument
72 return buildArgs(title, breadcrumb, description, 0, iconUri, null, backgroundColor);
75 public static Bundle buildArgs(String title, String breadcrumb, String description, argument
77 return buildArgs(title, breadcrumb, description, 0, null, iconBitmap, Color.TRANSPARENT);
81 String title, String breadcrumb, String description, in
63 buildArgs( String title, String breadcrumb, String description, int iconResourceId, int backgroundColor) argument
80 buildArgs( String title, String breadcrumb, String description, int iconResourceId, Uri iconUri, Bitmap iconBitmap, int iconBackgroundColor) argument
[all...]
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/
H A DActionType.java78 Action toAction(Resources resources, String description) { argument
82 .description(description)
86 Action toInfo(Resources resources, String description) { argument
90 .description(description)
103 .description(resources.getString(descResource))
H A DNetworkActivity.java169 .description(proxySettingsResourceId).build())
172 .description(ipSettingsResourceId).build());
177 .description(R.string.not_connected).build());
190 .description(R.string.connected).build())
193 .description(mEthernetIPAddress)
197 .description(mEthernetMacAddress)
208 .description(R.string.not_connected)
283 .description(R.string.connected).build())
286 .description(mConnectivityListener.getWifiIpAddress()).build())
289 .description(mConnectivityListene
[all...]
H A DWpsScanningFragment.java42 TextView descriptionView = (TextView) view.findViewById(R.id.description);
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/
H A DActionType.java69 Action toAction(Resources resources, String description) { argument
73 .description(description)
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/privacy/
H A DActionType.java48 Action toAction(Resources resources, String description) { argument
52 .description(description)
/packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
H A DNotificationImportExportListener.java105 final String description = mContext.getString(R.string.importing_vcard_description,
109 mContext.getApplicationContext(), VCardService.TYPE_IMPORT, description, tickerText,
116 final String description = mContext.getString(R.string.importing_vcard_finished_title,
130 description, null, intent);
145 final String description = mContext.getString(R.string.importing_vcard_canceled_title,
148 NotificationImportExportListener.constructCancelNotification(mContext, description);
174 final String description = type == VCardService.TYPE_IMPORT ?
177 final Notification notification = constructCancelNotification(mContext, description);
187 * @param description Content of the Notification.
197 Context context, int type, String description, Strin
196 constructProgressNotification( Context context, int type, String description, String tickerText, int jobId, String displayName, int totalCount, int currentCount) argument
238 constructCancelNotification( Context context, String description) argument
256 constructFinishNotification( Context context, String title, String description, Intent intent) argument
[all...]
H A DExportProcessor.java234 final String description =
240 VCardService.TYPE_EXPORT, description, tickerText, mJobId, displayName,
248 final String description = mService.getString(R.string.exporting_vcard_canceled_title,
251 NotificationImportExportListener.constructCancelNotification(mService, description);
256 private void doFinishNotification(final String title, final String description) { argument
257 if (DEBUG) Log.d(LOG_TAG, "send finish notification: " + title + ", " + description);
262 description, intent);
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/
H A DBaseSettingsActivity.java71 String description = descResId != 0 ? mResources.getString(descResId) : null;
72 setView(title, breadcrumb, description, iconResId);
75 protected void setView(String title, String breadcrumb, String description, int iconResId) { argument
76 mContentFragment = ContentFragment.newInstance(title, breadcrumb, description, iconResId,
87 protected void setView(String title, String breadcrumb, String description, Uri uri) { argument
96 String description = descResId != 0 ? mResources.getString(descResId) : null;
97 setView(title, breadcrumb, description, uri);
H A DMenuItem.java59 public Builder description(String description) { argument
60 return descriptionGetter(new MenuItem.ConstantTextGetter(description));
/packages/apps/Dialer/tests/src/com/android/dialer/calllog/
H A DCallLogListItemHelperTest.java125 * Test getCallDescriptionID method used to get the accessibility description for calls.
137 * Test getCallDescriptionID method used to get the accessibility description for calls.
149 * Test getCallDescriptionID method used to get the accessibility description for calls.
161 * Test getCallDescriptionID method used to get the accessibility description for calls.
174 * Test getCallDescriptionID method used to get the accessibility description for calls.
187 * Test getCallDescriptionID method used to get the accessibility description for calls.
200 * Test getCallDescriptionID method used to get the accessibility description for calls.
214 * Test getCallDescriptionID method used to get the accessibility description for calls.
228 * Test getCallDescription method used to get the accessibility description for calls.
229 * For outgoing calls, we should NOT have "New Voicemail" in the description
[all...]
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/storage/
H A DStorageItem.java57 Action toAction(Resources resources, String description) { argument
61 .description(description)
H A DStorageContentFragment.java45 String breadcrumb, String description, int iconResourceId, int iconBackgroundColor) {
47 fragment.setArguments(BaseContentFragment.buildArgs(title, breadcrumb, description,
44 newInstance(String title, String breadcrumb, String description, int iconResourceId, int iconBackgroundColor) argument
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/setup/
H A DPasswordInputWizardFragment.java57 private static final String EXTRA_DESCRIPTION = "description";
63 String title, String description, int inputType, String prefill) {
64 return newInstance(title, description, inputType, prefill, null);
69 String title, String description, int inputType, String prefill, String editSuffix) {
73 args.putString(EXTRA_DESCRIPTION, description);
91 ((ViewGroup) view.findViewById(R.id.description)).addView(content);
103 String description = args.getString(EXTRA_DESCRIPTION);
115 if (description != null) {
116 descriptionText.setText(description);
62 newInstance( String title, String description, int inputType, String prefill) argument
68 newInstance( String title, String description, int inputType, String prefill, String editSuffix) argument
H A DTextInputWizardFragment.java67 private static final String EXTRA_DESCRIPTION = "description";
72 String title, String description, int inputType, String prefill) {
76 args.putString(EXTRA_DESCRIPTION, description);
92 ((ViewGroup) view.findViewById(R.id.description)).addView(content);
101 String description = args.getString(EXTRA_DESCRIPTION);
117 if (description != null) {
118 descriptionText.setText(description);
71 newInstance( String title, String description, int inputType, String prefill) argument
/packages/apps/Nfc/src/com/android/nfc/cardemulation/
H A DTapAgainDialog.java75 String description = serviceInfo.getDescription();
76 if (description == null) {
81 description = label.toString();
86 tv.setText(String.format(formatString, description));
89 tv.setText(String.format(formatString, description));
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/apps/
H A DActionType.java92 Action toInitAction(Resources resources, String description) { argument
93 return toAction(resources, ActionBehavior.INIT, description);
96 Action toAction(Resources resources, ActionBehavior actionBehavior, String description) { argument
100 .description(description)
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
H A DWordListMetadata.java53 final String description, final long lastUpdate, final long fileSize,
59 mDescription = description;
80 final String description = values.getAsString(MetadataDbHelper.DESCRIPTION_COLUMN);
93 || null == description
105 return new WordListMetadata(id, type, description, lastUpdate, fileSize, rawChecksum,
52 WordListMetadata(final String id, final int type, final String description, final long lastUpdate, final long fileSize, final String rawChecksum, final String checksum, final String localFilename, final String remoteFilename, final int version, final int formatVersion, final int flags, final String locale) argument
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/
H A DLayout.java382 public Builder description(int resId) { method in class:Layout.Header.Builder
392 public Builder description(String description) { argument
393 mHeader.mAppearence.mDescriptionGetter = new LiteralStringGetter(description);
397 public Builder description(StringGetter description) { argument
398 mHeader.mAppearence.mDescriptionGetter = description;
477 public Builder description(int resId) { method in class:Layout.Action.Builder
488 public Builder description(String description) { argument
559 public Builder description(int resId) { method in class:Layout.Status.Builder
570 description(String description) argument
575 description(StringGetter description) argument
[all...]
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
H A DCalendarSyncTestingBase.java250 boolean allDay, String description) {
258 mDescription = description;
287 public EventInfo(String title, String description, String startDate, String endDate, argument
289 init(title, description, startDate, endDate, rrule, allDay, DEFAULT_TIMEZONE);
293 public EventInfo(String title, String description, String startDate, String endDate, argument
295 init(title, description, startDate, endDate, rrule, allDay, timezone);
298 public void init(String title, String description, String startDate, String endDate, argument
301 mDescription = description;
331 String description, String startDate, String endDate, boolean allDay) {
333 title, description, startDat
249 EventInfo(String title, long startDate, long endDate, boolean allDay, String description) argument
330 EventInfo(String originalTitle, String originalInstance, String title, String description, String startDate, String endDate, boolean allDay) argument
336 init(String originalTitle, String originalInstance, String title, String description, String startDate, String endDate, boolean allDay, String timezone) argument
[all...]
/packages/apps/Tag/src/com/android/apps/tag/record/
H A DRecordUtils.java64 ViewGroup parent, OnClickListener listener, Intent intent, String description) {
72 text.setText(description);
76 intent, description);
96 listener, clone, description));
63 getViewsForIntent(Activity activity, LayoutInflater inflater, ViewGroup parent, OnClickListener listener, Intent intent, String description) argument

Completed in 453 milliseconds

12345