HomeSort by relevance Sort by last modified time
    Searched refs:displayName (Results 51 - 75 of 379) sorted by null

1 23 4 5 6 7 8 91011>>

  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
CreateDirectoryFragment.java 71 final String displayName = text1.getText().toString();
76 new CreateDirectoryTask(activity, cwd, displayName).executeOnExecutor(
91 DocumentsActivity activity, DocumentInfo cwd, String displayName) {
94 mDisplayName = displayName;
PickFragment.java 77 public void setPickTarget(DocumentInfo pickTarget, CharSequence displayName) {
85 mPick.setText(TextUtils.expandTemplate(raw, displayName));
  /frameworks/opt/chips/tests/src/com/android/ex/chips/
RecipientAlternatesAdapterTest.java 78 String displayName,
87 c.addRow(new Object[] {displayName, destination, destinationType, destinationLabel,
93 String displayName,
103 assertEquals(displayName, c.getString(0));
  /packages/apps/UnifiedEmail/src/com/android/mail/photomanager/
LetterTileProvider.java 38 * matching contact photo is found, and there is a supplied displayName or email
83 public Bitmap getLetterTile(final Dimensions dimensions, final String displayName,
85 final String display = !TextUtils.isEmpty(displayName) ? displayName : address;
92 + "address %s.", dimensions.width, dimensions.height, displayName, address);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactLookupKey.java 69 String displayName) {
70 if (displayName == null) {
71 displayName = "";
81 NameNormalizer.normalize(displayName));
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/audits/
AuditsPanel.js 177 * @param {string} displayName
179 WebInspector.AuditCategoryImpl = function(displayName)
181 this._displayName = displayName;
200 get displayName()
252 * @param {string} displayName
254 WebInspector.AuditRule = function(id, displayName)
257 this._displayName = displayName;
281 get displayName()
305 var result = new WebInspector.AuditRuleResult(this.displayName);
329 this.title = category.displayName;
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
EmailAddressAdapter.java 55 String displayName, String emailAddress) {
58 text1.setText(displayName);
  /packages/apps/Contacts/src/com/android/contacts/detail/
ContactDisplayUtils.java 65 final CharSequence displayName = contactData.getDisplayName();
67 if (!TextUtils.isEmpty(displayName)) {
70 displayName.toString(), TextDirectionHeuristics.LTR);
72 return displayName;
102 final String displayName;
104 displayName = directoryDisplayName;
106 displayName = directoryType;
110 return context.getString(R.string.contact_directory_description, displayName);
130 // DisplayName is already the organization, it mirrors company or (if company
131 // is empty title). Make sure we don't show what's already shown as DisplayName
    [all...]
  /frameworks/base/core/java/android/hardware/hdmi/
HdmiDeviceInfo.java 133 String displayName = source.readString();
135 deviceType, vendorId, displayName, powerStatus);
163 * @param displayName name of device
168 int vendorId, String displayName, int powerStatus) {
178 mDisplayName = displayName;
192 * @param displayName name of device
196 int vendorId, String displayName) {
198 vendorId, displayName, HdmiControlManager.POWER_STATUS_UNKNOWN);
  /frameworks/ex/common/java/com/android/common/contacts/
BaseEmailAddressAdapter.java 101 public String displayName;
132 private static final String DIRECTORY_DISPLAY_NAME = "displayName";
294 String displayName, String emailAddress);
328 String directoryName = directoryPartition.displayName;
332 String displayName = cursor.getString(EmailQuery.NAME);
334 if (TextUtils.isEmpty(displayName) || TextUtils.equals(displayName, emailAddress)) {
335 displayName = emailAddress;
338 bindView(v, directoryType, directoryName, displayName, emailAddress);
383 partition.displayName = directoryCursor.getString(DirectoryListQuery.DISPLAY_NAME)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/workspace/
UISourceCode.js 107 return this._project.displayName() + "/" + (this._parentPath ? this._parentPath + "/" : "") + this.displayName(true);
114 displayName: function(skipTrim)
116 var displayName = this.name() || WebInspector.UIString("(index)");
117 return skipTrim ? displayName : displayName.trimEnd(100);
611 var linkText = this.uiSourceCode.displayName();
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
ShortcutIntentBuilder.java 254 private Drawable getPhotoDrawable(byte[] bitmapData, String displayName, String lookupKey) {
260 false, new DefaultImageRequest(displayName, lookupKey, false));
264 private void createContactShortcutIntent(Uri contactUri, String contentType, String displayName,
266 Drawable drawable = getPhotoDrawable(bitmapData, displayName, lookupKey);
291 if (TextUtils.isEmpty(displayName)) {
295 intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, displayName);
301 private void createPhoneNumberShortcutIntent(Uri uri, String displayName, String lookupKey,
304 Drawable drawable = getPhotoDrawable(bitmapData, displayName, lookupKey);
325 intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, displayName);
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DatabaseManager.cpp 162 const String& name, const String& expectedVersion, const String& displayName,
168 if (DatabaseTracker::tracker().canEstablishDatabase(backendContext, name, displayName, estimatedSize, error)) {
169 RefPtrWillBeRawPtr<Database> backend = adoptRefWillBeNoop(new Database(backendContext, name, expectedVersion, displayName, estimatedSize));
191 const String& name, const String& expectedVersion, const String& displayName,
199 expectedVersion, displayName, estimatedSize, setVersionInNewDatabase, error, errorMessage);
Database.h 90 String displayName() const;
121 Database(DatabaseContext*, const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize);
  /packages/apps/Exchange/src/com/android/exchange/provider/
ExchangeDirectoryProvider.java 120 private final String displayName;
125 displayName = ps.get(GalData.DISPLAY_NAME);
130 String getDisplayName() { return displayName; }
475 Pair<String, Integer> displayName = getDisplayName(galDataRow, phones);
476 if (TextUtils.isEmpty(displayName.first)) {
480 galDataRow.put(GalData.DISPLAY_NAME, displayName.first);
481 galDataRow.put(GalData.DISPLAY_NAME_SOURCE, String.valueOf(displayName.second));
484 galDataRow, displayName.first);
485 final String sortName = usePrimarySortKey ? displayName.first
489 row[displayNameIndex] = displayName.first
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
File.h 93 static PassRefPtrWillBeRawPtr<File> createForUserProvidedFile(const String& path, const String& displayName)
95 if (displayName.isEmpty())
97 return adoptRefWillBeNoop(new File(path, displayName, File::AllContentTypes, File::IsUserVisible));
  /external/nist-sip/java/gov/nist/javax/sip/address/
AddressFactoryImpl.java 68 * @param displayName - the new string value of the display name of the
72 * unexpectedly while parsing the displayName value.
75 String displayName,
80 if (displayName != null)
81 addressImpl.setDisplayName(displayName);
  /packages/apps/InCallUI/src/com/android/incallui/
ContactInfoCache.java 349 String displayName = null;
395 displayName = getPresentationString(context, presentation);
396 Log.d(TAG, " ==> no name *or* number! displayName = " + displayName);
401 displayName = getPresentationString(context, presentation);
402 Log.d(TAG, " ==> presentation not allowed! displayName = " + displayName);
405 displayName = info.cnapName;
408 Log.d(TAG, " ==> cnapName available: displayName '" + displayName
    [all...]
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/model/
DocumentInfo.java 59 public String displayName;
78 displayName = null;
98 displayName = DurableUtils.readNullableString(in);
117 DurableUtils.writeNullableString(out, displayName);
166 this.displayName = getCursorString(cursor, Document.COLUMN_DISPLAY_NAME);
215 return "Document{docId=" + documentId + ", name=" + displayName + "}";
  /frameworks/opt/timezonepicker/src/com/android/timezonepicker/
TimeZoneInfo.java 150 CharSequence displayName = null;
155 displayName = mGmtDisplayNameCache.get(cacheKey);
158 if (displayName == null) {
191 displayName = spannableText;
192 mGmtDisplayNameCache.put(cacheKey, displayName);
194 return displayName;
  /developers/build/prebuilts/gradle/BasicContactables/Application/src/main/java/com/example/android/basiccontactables/
ContactablesLoaderCallbacks.java 115 String displayName = cursor.getString(nameColumnIndex);
116 tv.append(displayName + "\n");
  /developers/samples/android/content/contacts/BasicContactables/Application/src/main/java/com/example/android/basiccontactables/
ContactablesLoaderCallbacks.java 115 String displayName = cursor.getString(nameColumnIndex);
116 tv.append(displayName + "\n");
  /development/samples/browseable/BasicContactables/src/com.example.android.basiccontactables/
ContactablesLoaderCallbacks.java 115 String displayName = cursor.getString(nameColumnIndex);
116 tv.append(displayName + "\n");
  /external/junit/src/org/junit/runner/
Description.java 94 private Description(final String displayName, Annotation... annotations) {
95 fDisplayName= displayName;
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/util/
NameConverterTests.java 65 * @param displayName Display name to break into a structured name.
72 private void assertStructuredName(String displayName, String prefix,
75 displayName);

Completed in 2661 milliseconds

1 23 4 5 6 7 8 91011>>