Searched defs:entry (Results 1 - 25 of 100) sorted by relevance

1234

/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
H A DContactTilePhoneFrequentView.java50 public void loadFromContact(ContactEntry entry) { argument
51 super.loadFromContact(entry);
53 if (entry != null) {
55 mPhoneNumberString = entry.phoneNumber;
/packages/apps/Messaging/src/com/android/messaging/ui/contact/
H A DContactRecipientPhotoManager.java59 public void populatePhotoBytesAsync(final RecipientEntry entry, argument
66 ParticipantData.getFromRecipientEntry(entry));
75 entry.setPhotoBytes(resource.getBytes());
H A DContactDropdownLayouter.java71 public View bindView(final View convertView, final ViewGroup parent, final RecipientEntry entry, argument
81 return super.bindView(convertView, parent, entry, position, type, substring,
89 ContactRecipientEntryUtils.getDisplayNameForContactList(entry),
92 ContactRecipientEntryUtils.formatDestination(entry),
103 boolean isWorkContact = ContactUtil.isEnterpriseContactId(entry.getContactId());
104 contactListItemView.bind(entry, styledResults[0], styledResults[1],
110 protected void bindIconToView(boolean showImage, RecipientEntry entry, ImageView view, argument
117 ParticipantData.getFromRecipientEntry(entry));
120 super.bindIconToView(showImage, entry, view, type);
/packages/apps/Settings/src/com/android/settings/applications/
H A DProcessStatsPreference.java35 public void init(ProcStatsPackageEntry entry, PackageManager pm, double maxMemory, argument
37 mEntry = entry;
38 setTitle(TextUtils.isEmpty(entry.mUiLabel) ? entry.mPackage : entry.mUiLabel);
39 if (entry.mUiTargetApp != null) {
40 setIcon(entry.mUiTargetApp.loadIcon(pm));
44 boolean statsForeground = entry.mRunWeight > entry.mBgWeight;
45 double amount = avg ? (statsForeground ? entry
[all...]
H A DAppViewHolder.java31 public ApplicationsState.AppEntry entry; field in class:AppViewHolder
63 + entry.label + " " + entry + ": " + entry.sizeStr);
64 if (entry.sizeStr != null) {
67 summary.setText(entry.internalSizeStr);
70 summary.setText(entry.externalSizeStr);
73 summary.setText(entry.sizeStr);
76 } else if (entry.size == ApplicationsState.SIZE_INVALID) {
H A DClearDefaultsPreference.java82 public void setAppEntry(ApplicationsState.AppEntry entry) { argument
83 mAppEntry = entry;
/packages/apps/TV/src/com/android/tv/dvr/ui/
H A DDvrRecordDeleteFragment.java18 public DvrRecordDeleteFragment(TableEntry entry) { argument
19 super(entry);
H A DDvrRecordScheduleFragment.java24 public DvrRecordScheduleFragment(TableEntry entry) { argument
25 super(entry);
49 TableEntry entry = getEntry();
50 Program program = entry.program;
58 DvrRecordConflictFragment dvrConflict = new DvrRecordConflictFragment(entry);
H A DDvrGuidedStepFragment.java23 public DvrGuidedStepFragment(TableEntry entry) { argument
24 mEntry = entry;
H A DDvrRecordConflictFragment.java30 public DvrRecordConflictFragment(TableEntry entry) { argument
31 super(entry);
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/apps/
H A DAppStoragePreference.java35 public AppStoragePreference(Context context, ApplicationsState.AppEntry entry) { argument
36 super(context, entry);
H A DAppActionPreference.java33 public AppActionPreference(Context context, ApplicationsState.AppEntry entry) { argument
35 mEntry = entry;
H A DAppInfo.java34 public AppInfo(Context context, ApplicationsState.AppEntry entry) { argument
36 mEntry = entry;
39 public void setEntry(ApplicationsState.AppEntry entry) { argument
41 mEntry = entry;
H A DForceStopPreference.java37 public ForceStopPreference(Context context, ApplicationsState.AppEntry entry) { argument
38 super(context, entry);
H A DNotificationsPreference.java35 public NotificationsPreference(Context context, ApplicationsState.AppEntry entry) { argument
37 mEntry = entry;
/packages/inputmethods/LatinIME/native/jni/tests/dictionary/structure/v4/content/
H A Dlanguage_model_dict_content_test.cpp37 const ProbabilityEntry entry = local
39 EXPECT_EQ(flag, entry.getFlags());
40 EXPECT_EQ(probability, entry.getProbability());
60 const ProbabilityEntry entry = languageModelDictContent.getProbabilityEntry(wordId); local
61 EXPECT_EQ(flag, entry.getFlags());
62 EXPECT_EQ(timestamp, entry.getHistoricalInfo()->getTimestamp());
63 EXPECT_EQ(count, entry.getHistoricalInfo()->getCount());
83 for (const auto entry : languageModelDictContent.getProbabilityEntries(WordIdArrayView())) {
84 EXPECT_EQ(originalEntry.getFlags(), entry.getProbabilityEntry().getFlags());
85 EXPECT_EQ(originalEntry.getProbability(), entry
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
H A DBluetoothPbapVcardList.java46 public void onEntryCreated(VCardEntry entry) { argument
47 mCards.add(entry);
/packages/apps/Gallery2/src/com/android/gallery3d/gadget/
H A DPhotoAppWidgetProvider.java40 static RemoteViews buildWidget(Context context, int id, Entry entry) { argument
42 switch (entry.type) {
45 return buildStackWidget(context, id, entry);
47 return buildFrameWidget(context, id, entry);
49 throw new RuntimeException("invalid type - " + entry.type);
64 Entry entry = helper.getEntry(id);
65 if (entry != null) {
66 RemoteViews views = buildWidget(context, id, entry);
80 private static RemoteViews buildStackWidget(Context context, int widgetId, Entry entry) { argument
86 intent.putExtra(WidgetService.EXTRA_WIDGET_TYPE, entry
104 buildFrameWidget(Context context, int appWidgetId, Entry entry) argument
[all...]
/packages/apps/Messaging/src/com/android/messaging/util/
H A DContactRecipientEntryUtils.java48 * Construct a special "Send to xxx" entry for a given destination.
55 * Construct a generated contact entry but with rendered avatar.
80 public static String getDisplayNameForContactList(final RecipientEntry entry) { argument
81 if (entry.getContactId() == CONTACT_ID_SENDTO_DESTINATION) {
83 R.string.contact_list_send_to_text, formatDestination(entry));
84 } else if (!TextUtils.isEmpty(entry.getDisplayName())) {
85 return entry.getDisplayName();
87 return formatDestination(entry);
91 public static String formatDestination(final RecipientEntry entry) { argument
92 return PhoneUtils.getDefault().formatForDisplay(entry
98 isAvatarAndNumberOnlyContact(final RecipientEntry entry) argument
105 isSendToDestinationContact(final RecipientEntry entry) argument
[all...]
/packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
H A DVCardImportExportListener.java25 void onImportParsed(ImportRequest request, int jobId, VCardEntry entry, int currentCount, argument
/packages/apps/Dialer/src/com/android/dialer/list/
H A DPhoneFavoriteSquareTileView.java77 public void loadFromContact(ContactEntry entry) { argument
78 super.loadFromContact(entry);
79 if (entry != null) {
87 mContactEntry = entry;
H A DPhoneFavoriteTileView.java87 public void loadFromContact(ContactEntry entry) { argument
88 super.loadFromContact(entry);
91 if (entry != null) {
93 mPhoneNumberString = entry.phoneNumber;
95 // If this is a blank entry, don't show anything.
98 if (entry == ContactEntry.BLANK_ENTRY) {
102 starIcon.setVisibility(entry.isFavorite ? View.VISIBLE : View.GONE);
/packages/apps/Gallery2/src/com/android/gallery3d/onetimeinitializer/
H A DGalleryWidgetMigrator.java85 // Check each entry's relativePath. If exists, update bucket id using relative
90 for (Entry entry : entries) {
91 Path path = Path.fromString(entry.albumPath);
94 if (entry.relativePath != null && entry.relativePath.length() > 0) {
95 // update entry using relative path + external storage path
96 updateEntryUsingRelativePath(entry, dbHelper);
99 localEntries.put(bucketId, entry);
140 Entry entry = entries.remove(oldBucketId);
141 if (entry !
159 updateEntryUsingRelativePath(Entry entry, WidgetDatabaseHelper dbHelper) argument
[all...]
/packages/apps/Messaging/src/com/android/messaging/datamodel/
H A DBugleRecipientEntry.java60 public boolean isSamePerson(final RecipientEntry entry) { argument
61 return getDestination() != null && entry.getDestination() != null &&
62 TextUtils.equals(getDestination(), entry.getDestination());
/packages/apps/Messaging/src/com/android/messaging/datamodel/media/
H A DCustomVCardEntryConstructor.java35 * The method called when one vCard entry is created. Children come before their parent in
39 * In the following vCard, the entry for "entry2" comes before one for "entry1".
49 public void onEntryCreated(final CustomVCardEntry entry); argument

Completed in 2149 milliseconds

1234