Searched refs:displayName (Results 1 - 25 of 84) sorted by relevance

1234

/packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
H A DCancelRequest.java27 public final String displayName; field in class:CancelRequest
28 public CancelRequest(int jobId, String displayName) { argument
30 this.displayName = displayName;
H A DImportRequest.java42 * {@link #displayName} instead.
56 public final String displayName; field in class:ImportRequest
99 byte[] data, Uri uri, String displayName, int estimatedType, String estimatedCharset,
104 this.displayName = displayName;
98 ImportRequest(Account account, byte[] data, Uri uri, String displayName, int estimatedType, String estimatedCharset, int vcardVersion, int entryCount) argument
H A DNotificationImportExportListener.java68 final String displayName;
70 if (request.displayName != null) {
71 displayName = request.displayName;
72 message = mContext.getString(R.string.vcard_import_will_start_message, displayName);
74 displayName = mContext.getString(R.string.vcard_unknown_filename);
88 VCardService.TYPE_IMPORT, message, message, jobId, displayName, -1, 0);
110 jobId, request.displayName, totalCount, currentCount);
117 request.displayName);
146 request.displayName);
196 constructProgressNotification( Context context, int type, String description, String tickerText, int jobId, String displayName, int totalCount, int currentCount) argument
[all...]
/packages/apps/Exchange/src/com/android/exchange/provider/
H A DGalResult.java37 public void addGalData(long id, String displayName, String emailAddress) { argument
38 galData.add(new GalData(id, displayName, emailAddress));
48 public static final String DISPLAY_NAME = "displayName";
64 public String displayName; field in class:GalResult.GalData
74 displayName = _displayName;
H A DExchangeDirectoryProvider.java125 String displayName) {
135 put(Contacts.DISPLAY_NAME, displayName);
138 put(Contacts.DISPLAY_NAME_ALTERNATIVE, displayName);
160 long contactId, String accountName, String displayName, String address) {
163 galProjection, contactId, accountName, displayName);
172 String accountName, String displayName, int type, String number) {
175 projection, contactId, accountName, displayName);
184 long contactId, String accountName, String displayName,
187 galProjection, contactId, accountName, displayName);
191 r.put(StructuredName.DISPLAY_NAME, displayName);
124 GalContactRow(GalProjection projection, long contactId, String accountName, String displayName) argument
159 addEmailAddress(MatrixCursor cursor, GalProjection galProjection, long contactId, String accountName, String displayName, String address) argument
171 addPhoneRow(MatrixCursor cursor, GalProjection projection, long contactId, String accountName, String displayName, int type, String number) argument
183 addNameRow(MatrixCursor cursor, GalProjection galProjection, long contactId, String accountName, String displayName, String firstName, String lastName) argument
604 getAlternateDisplayName(GalData galDataRow, String displayName) argument
[all...]
/packages/apps/Dialer/src/com/android/dialer/calllog/
H A DPhoneNumberDisplayHelper.java71 final CharSequence displayName = getDisplayName(number, presentation);
72 if (!TextUtils.isEmpty(displayName)) {
73 return displayName;
/packages/apps/Dialer/tests/src/com/android/dialer/dialpad/
H A DSmartDialNameMatcherTest.java250 private void checkMatches(String displayName, String query, boolean expectedMatches, argument
256 displayName, query, matchPositions);
257 Log.d(TAG, "query=" + query + " text=" + displayName
258 + " nfd=" + Normalizer.normalize(displayName, Normalizer.Form.NFD)
259 + " nfc=" + Normalizer.normalize(displayName, Normalizer.Form.NFC)
260 + " nfkd=" + Normalizer.normalize(displayName, Normalizer.Form.NFKD)
261 + " nfkc=" + Normalizer.normalize(displayName, Normalizer.Form.NFKC)
/packages/apps/Contacts/src/com/android/contacts/editor/
H A DStructuredNameEditorView.java125 String displayName = values.getDisplayName();
127 getContext(), displayName);
137 mSnapshot.setDisplayName(displayName);
149 String displayName = NameConverter.structuredNameToDisplayName(getContext(),
151 if (!TextUtils.isEmpty(displayName)) {
153 values.put(StructuredName.DISPLAY_NAME, displayName);
177 String displayName = NameConverter.structuredNameToDisplayName(getContext(),
179 values.setDisplayName(displayName);
189 String displayName = values.getDisplayName();
191 getContext(), displayName);
[all...]
/packages/apps/Dialer/src/com/android/dialer/dialpad/
H A DSmartDialNameMatcher.java251 * @param displayName The normalized(no accented characters) display name we intend to match
256 * @return Returns true if a combination of the tokens in displayName match the query
261 boolean matchesCombination(String displayName, String query, argument
264 constructEmptyMask(builder, displayName.length());
266 final int nameLength = displayName.length();
277 // The current character index in displayName
281 // The current character in the query we are trying to match the displayName against
294 // Keep going until we reach the end of displayName
296 char ch = displayName.charAt(nameStart);
321 displayName
412 matches(String displayName) argument
[all...]
/packages/apps/Exchange/src/com/android/exchange/adapter/
H A DGalParser.java62 String displayName = getValue();
63 galData.put(GalData.DISPLAY_NAME, displayName);
64 galData.displayName = displayName;
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
H A DDirectoryPartition.java79 public void setDisplayName(String displayName) { argument
80 this.mDisplayName = displayName;
H A DShortcutIntentBuilder.java251 private Drawable getPhotoDrawable(byte[] bitmapData, String displayName, String lookupKey) { argument
257 false, new DefaultImageRequest(displayName, lookupKey));
261 private void createContactShortcutIntent(Uri contactUri, String contentType, String displayName, argument
263 Drawable drawable = getPhotoDrawable(bitmapData, displayName, lookupKey);
287 if (TextUtils.isEmpty(displayName)) {
291 intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, displayName);
297 private void createPhoneNumberShortcutIntent(Uri uri, String displayName, String lookupKey, argument
300 Drawable drawable = getPhotoDrawable(bitmapData, displayName, lookupKey);
321 intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, displayName);
H A DDirectoryListLoader.java168 String displayName = cursor.getString(DirectoryQuery.DISPLAY_NAME);
170 result.addRow(new Object[]{directoryId, directoryType, displayName, photoSupport});
/packages/apps/Settings/src/com/android/settings/accessibility/
H A DLocalePreference.java86 final String displayName;
88 displayName = "[Developer] Accented English";
90 displayName = "[Developer] Fake Bi-Directional";
92 displayName = l.getDisplayLanguage(l);
94 localeInfos[finalSize++] = new LocaleInfo(displayName, l);
/packages/apps/ContactsCommon/src/com/android/contacts/common/util/
H A DNameConverter.java92 String displayName = null;
100 displayName = cursor.getString(0);
106 return displayName;
116 * @param displayName The display name to convert.
120 String displayName) {
124 appendQueryParameter(builder, StructuredName.DISPLAY_NAME, displayName);
149 * @param displayName The display name to convert.
155 public static ContentValues displayNameToStructuredName(Context context, String displayName, argument
160 Map<String, String> mapValues = displayNameToStructuredName(context, displayName);
119 displayNameToStructuredName(Context context, String displayName) argument
/packages/apps/InCallUI/src/com/android/incallui/
H A DContactInfoCache.java348 String displayName = null;
394 displayName = getPresentationString(context, presentation);
395 Log.d(TAG, " ==> no name *or* number! displayName = " + displayName);
400 displayName = getPresentationString(context, presentation);
401 Log.d(TAG, " ==> presentation not allowed! displayName = " + displayName);
404 displayName = info.cnapName;
407 Log.d(TAG, " ==> cnapName available: displayName '" + displayName
[all...]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DContactLookupKey.java69 String displayName) {
70 if (displayName == null) {
71 displayName = "";
81 NameNormalizer.normalize(displayName));
67 appendToLookupKey(StringBuilder lookupKey, String accountTypeWithDataSet, String accountName, long rawContactId, String sourceId, String displayName) argument
/packages/apps/Calendar/src/com/android/calendar/
H A DEmailAddressAdapter.java55 String displayName, String emailAddress) {
58 text1.setText(displayName);
54 bindView(View view, String directoryType, String directoryName, String displayName, String emailAddress) argument
/packages/apps/UnifiedEmail/src/com/android/mail/photomanager/
H A DLetterTileProvider.java43 * matching contact photo is found, and there is a supplied displayName or email
97 final String displayName = contactIdentifier.name;
107 final Bitmap bitmap = getLetterTile(mDims, displayName, address);
116 public Bitmap getLetterTile(final Dimensions dimensions, final String displayName, argument
118 final String display = !TextUtils.isEmpty(displayName) ? displayName : address;
125 + "address %s.", dimensions.width, dimensions.height, displayName, address);
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/util/
H A DNameConverterTests.java65 * @param displayName Display name to break into a structured name.
72 private void assertStructuredName(String displayName, String prefix, argument
75 displayName);
/packages/apps/Contacts/src/com/android/contacts/activities/
H A DContactDetailActivity.java236 CharSequence displayName = ContactDetailDisplayUtils.getDisplayName(this, mContactData);
240 actionBar.setTitle(displayName);
244 if (!TextUtils.isEmpty(displayName)) {
245 talkback.append(displayName);
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
H A DDownloadStorageProvider.java105 public String createDocument(String docId, String mimeType, String displayName) argument
118 displayName = removeExtension(mimeType, displayName);
119 File file = new File(parent, addExtension(mimeType, displayName));
124 file = new File(parent, addExtension(mimeType, displayName + " (" + n + ")"));
293 final String displayName = cursor.getString(
346 row.add(Document.COLUMN_DISPLAY_NAME, displayName);
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/codec/
H A DEncoderUtil.java116 * @param displayName
120 public static String encodeAddressDisplayName(String displayName) { argument
127 if (isAtomPhrase(displayName)) {
128 return displayName;
129 } else if (hasToBeEncoded(displayName, 0)) {
130 return encodeEncodedWord(displayName, Usage.WORD_ENTITY);
132 return quote(displayName);
/packages/apps/Dialer/src/com/android/dialer/database/
H A DDialerDatabaseHelper.java242 public final String displayName; field in class:DialerDatabaseHelper.ContactNumber
247 public ContactNumber(long id, long dataID, String displayName, String phoneNumber, argument
251 this.displayName = displayName;
259 return Objects.hashCode(id, dataId, displayName, phoneNumber, lookupKey, photoId);
271 && Objects.equal(this.displayName, that.displayName)
665 final String displayName = updatedContactCursor.getString(
667 if (displayName == null) {
670 insert.bindString(5, displayName);
[all...]
/packages/apps/Contacts/src/com/android/contacts/list/
H A DJoinContactListFragment.java126 private void showTargetContactName(String displayName) { argument
129 String blurb = activity.getString(R.string.blurbJoinContactDataWith, displayName);

Completed in 479 milliseconds

1234