Searched defs:entries (Results 1 - 12 of 12) sorted by last modified time

/packages/providers/CalendarProvider/
H A Dmaketests.py74 entries = root.getElementsByTagName("entry") variable
76 for entry in entries:
/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/Settings/src/com/android/settings/deviceinfo/
H A DPercentageBarChart.java157 public void setEntries(Collection<Entry> entries) { argument
158 mEntries = entries;
/packages/apps/Nfc/nxp/jni/
H A Dcom_android_nfc.h204 /* List entries */
205 LIST_ENTRY(nfc_jni_listen_data) entries; member in struct:nfc_jni_listen_data
/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/apps/Gallery2/src/com/android/gallery3d/data/
H A DLocalAlbumSet.java94 private static int findBucket(BucketEntry entries[], int bucketId) { argument
95 for (int i = 0, n = entries.length; i < n; ++i) {
96 if (entries[i].bucketId == bucketId) return i;
108 BucketEntry[] entries = BucketHelper.loadBucketEntries(
116 int index = findBucket(entries, MediaSetUtils.CAMERA_BUCKET_ID);
118 circularShiftRight(entries, offset++, index);
120 index = findBucket(entries, MediaSetUtils.DOWNLOAD_BUCKET_ID);
122 circularShiftRight(entries, offset++, index);
127 for (BucketEntry entry : entries) {
/packages/apps/Gallery2/src/com/android/gallery3d/onetimeinitializer/
H A DGalleryWidgetMigrator.java78 // only need to migrate local-album entries of type TYPE_ALBUM
79 List<Entry> entries = dbHelper.getEntries(WidgetDatabaseHelper.TYPE_ALBUM);
80 if (entries != null) {
81 HashMap<Integer, Entry> localEntries = new HashMap<Integer, Entry>(entries.size());
82 for (Entry entry : entries) {
95 HashMap<Integer, Entry> entries, WidgetDatabaseHelper dbHelper) {
99 updatePath(new File(root, "DCIM"), entries, dbHelper);
102 if (!entries.isEmpty()) updatePath(root, entries, dbHelper);
106 File root, HashMap<Integer, Entry> entries, WidgetDatabaseHelpe
94 migrateLocalEntries( HashMap<Integer, Entry> entries, WidgetDatabaseHelper dbHelper) argument
105 updatePath( File root, HashMap<Integer, Entry> entries, WidgetDatabaseHelper dbHelper) argument
[all...]
/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]);
162 ArrayList<CharSequence> entries = new ArrayList<CharSequence>();
165 if (!entries.contains(mEntries[i])) {
166 entries
[all...]
/packages/apps/Contacts/src/com/android/contacts/detail/
H A DContactDetailFragment.java193 * Lists of specific types of entries to be shown in contact details.
452 // Build up the contact entries
466 // Make one aggregated list of all entries for display to the user.
526 * Build up the entries to display on the screen.
533 // Clear out the old entries
538 // Build up method entries
575 // Build phone entries
610 // Build email entries
635 // Build postal entries
639 // Build IM entries
898 flattenList(ArrayList<DetailViewEntry> entries) argument
[all...]
/packages/apps/Contacts/src/com/android/contacts/model/
H A DRawContactModifier.java211 // Find all entries for this kind, bailing early if none found
217 // Only count visible entries
427 // Walk through entries for each well-known kind
430 final ArrayList<ValuesDelta> entries = state.getMimeEntries(mimeType);
431 if (entries == null) continue;
433 for (ValuesDelta entry : entries) {
466 final ArrayList<ValuesDelta> entries = state.getMimeEntries(mimeType);
467 if (entries == null) continue;
469 for (ValuesDelta entry : entries) {
708 ArrayList<ValuesDelta> entries
785 adjustType( ValuesDelta entry, ArrayList<ValuesDelta> entries, DataKind kind) argument
817 isTypeAllowed(int type, ArrayList<ValuesDelta> entries, DataKind kind) argument
847 getEntryCountByType(ArrayList<ValuesDelta> entries, String typeColumn, int type) argument
[all...]
/packages/apps/Contacts/tests/src/com/android/contacts/
H A DRawContactDeltaListTests.java123 ContentValues... entries) {
129 for (ContentValues entry : entries) {
135 static RawContactDelta buildAfterEntity(ContentValues... entries) { argument
140 for (ContentValues entry : entries) {
122 buildBeforeEntity(Context context, long rawContactId, long version, ContentValues... entries) argument
H A DRawContactModifierTests.java175 protected RawContactDelta getRawContact(Long existingId, ContentValues... entries) { argument
184 for (ContentValues values : entries) {
525 // Try creating a contact without any child entries
1037 // Exchange can have up to 3 email entries. This 4th entry should be dropped.
1095 // Exchange can have up to 3 IM entries. This 4th entry should be dropped.

Completed in 574 milliseconds