Searched defs:entries (Results 1 - 12 of 12) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/onetimeinitializer/
H A DGalleryWidgetMigrator.java79 // only need to migrate local-album entries of type TYPE_ALBUM
80 List<Entry> entries = dbHelper.getEntries(WidgetDatabaseHelper.TYPE_ALBUM);
81 if (entries != null) {
82 HashMap<Integer, Entry> localEntries = new HashMap<Integer, Entry>(entries.size());
83 for (Entry entry : entries) {
96 HashMap<Integer, Entry> entries, WidgetDatabaseHelper dbHelper) {
100 updatePath(new File(root, "DCIM"), entries, dbHelper);
103 if (!entries.isEmpty()) updatePath(root, entries, dbHelper);
107 File root, HashMap<Integer, Entry> entries, WidgetDatabaseHelpe
95 migrateLocalEntries( HashMap<Integer, Entry> entries, WidgetDatabaseHelper dbHelper) argument
106 updatePath( File root, HashMap<Integer, Entry> entries, WidgetDatabaseHelper dbHelper) argument
[all...]
/packages/apps/Settings/src/com/android/settings/deviceinfo/
H A DPercentageBarChart.java123 public void setEntries(Collection<Entry> entries) { argument
124 mEntries = entries;
/packages/apps/Camera/src/com/android/camera/
H A DListPreference.java84 public void setEntries(CharSequence entries[]) { argument
85 mEntries = entries == null ? new CharSequence[0] : entries;
148 ArrayList<CharSequence> entries = new ArrayList<CharSequence>();
152 entries.add(mEntries[i]);
156 int size = entries.size();
157 mEntries = entries.toArray(new CharSequence[size]);
/packages/apps/LegacyCamera/src/com/android/camera/
H A DListPreference.java84 public void setEntries(CharSequence entries[]) { argument
85 mEntries = entries == null ? new CharSequence[0] : entries;
148 ArrayList<CharSequence> entries = new ArrayList<CharSequence>();
152 entries.add(mEntries[i]);
156 int size = entries.size();
157 mEntries = entries.toArray(new CharSequence[size]);
/packages/providers/CalendarProvider/
H A Dmaketests.py74 entries = root.getElementsByTagName("entry") variable
76 for entry in entries:
/packages/apps/Contacts/tests/src/com/android/contacts/
H A DEntityModifierTests.java173 protected EntityDelta getEntity(Long existingId, ContentValues... entries) { argument
182 for (ContentValues values : entries) {
521 // Try creating a contact without any child entries
1033 // Exchange can have up to 3 email entries. This 4th entry should be dropped.
1091 // Exchange can have up to 3 IM entries. This 4th entry should be dropped.
H A DEntityDeltaListTests.java122 ContentValues... entries) {
128 for (ContentValues entry : entries) {
134 static EntityDelta buildAfterEntity(ContentValues... entries) { argument
139 for (ContentValues entry : entries) {
121 buildBeforeEntity(long rawContactId, long version, ContentValues... entries) argument
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
H A DCalendarInstancesHelper.java154 * Perform instance expansion on the given entries.
159 * @param entries The entries to process.
162 Cursor entries) {
170 int statusColumn = entries.getColumnIndex(Events.STATUS);
171 int dtstartColumn = entries.getColumnIndex(Events.DTSTART);
172 int dtendColumn = entries.getColumnIndex(Events.DTEND);
173 int eventTimezoneColumn = entries.getColumnIndex(Events.EVENT_TIMEZONE);
174 int durationColumn = entries.getColumnIndex(Events.DURATION);
175 int rruleColumn = entries
161 performInstanceExpansion(long begin, long end, String localTimezone, Cursor entries) argument
[all...]
/packages/apps/Contacts/src/com/android/contacts/model/
H A DEntityModifier.java207 // Find all entries for this kind, bailing early if none found
213 // Only count visible entries
423 // Walk through entries for each well-known kind
426 final ArrayList<ValuesDelta> entries = state.getMimeEntries(mimeType);
427 if (entries == null) continue;
429 for (ValuesDelta entry : entries) {
462 final ArrayList<ValuesDelta> entries = state.getMimeEntries(mimeType);
463 if (entries == null) continue;
465 for (ValuesDelta entry : entries) {
703 ArrayList<ValuesDelta> entries
780 adjustType( ValuesDelta entry, ArrayList<ValuesDelta> entries, DataKind kind) argument
812 isTypeAllowed(int type, ArrayList<ValuesDelta> entries, DataKind kind) argument
839 getEntryCountByType( ArrayList<ValuesDelta> entries, String typeColumn, int type) argument
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DLocalAlbumSet.java180 private static int findBucket(BucketEntry entries[], int bucketId) { argument
181 for (int i = 0, n = entries.length; i < n ; ++i) {
182 if (entries[i].bucketId == bucketId) return i;
194 BucketEntry[] entries = loadBucketEntries(jc);
201 int index = findBucket(entries, MediaSetUtils.CAMERA_BUCKET_ID);
203 circularShiftRight(entries, offset++, index);
205 index = findBucket(entries, MediaSetUtils.DOWNLOAD_BUCKET_ID);
207 circularShiftRight(entries, offset++, index);
212 for (BucketEntry entry : entries) {
/packages/apps/Nfc/jni/
H A Dcom_android_nfc.h202 /* List entries */
203 LIST_ENTRY(nfc_jni_listen_data) entries; member in struct:nfc_jni_listen_data
/packages/apps/Contacts/src/com/android/contacts/detail/
H A DContactDetailFragment.java451 // Build up the contact entries
464 // Make one aggregated list of all entries for display to the user.
524 * Build up the entries to display on the screen.
531 // Clear out the old entries
540 // Build up method entries
590 // Build phone entries
628 // Build email entries
654 // Build postal entries
658 // Build IM entries
671 // Build nickname entries
919 flattenList(ArrayList<DetailViewEntry> entries) argument
[all...]

Completed in 219 milliseconds