Searched refs:Entity (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/core/java/android/content/
H A DEntityIterator.java23 * {@link Entity} objects. In addition to the iteration functionality it also allows
28 public interface EntityIterator extends Iterator<Entity> {
H A DCursorEntityIterator.java33 * first Entity, if there are any.
47 * @throws RemoteException if a RemoteException is caught while attempting to build the Entity
49 public abstract Entity getEntityAndIncrementCursor(Cursor cursor) throws RemoteException;
75 public Entity next() {
H A DEntity.java33 public final class Entity { class
37 public Entity(ContentValues values) { method in class:Entity
51 mSubValues.add(new Entity.NamedContentValues(uri, values));
66 sb.append("Entity: ").append(getEntityValues());
67 for (Entity.NamedContentValues namedValue : getSubValues()) {
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
H A DExportTestProvider.java20 import android.content.Entity;
42 private final List<Entity> mEntityList;
43 private Iterator<Entity> mIterator;
46 mEntityList = new ArrayList<Entity>();
47 Entity entity = new Entity(new ContentValues());
61 public Entity next() {
/frameworks/base/core/java/android/provider/
H A DCalendarContract.java31 import android.content.Entity;
484 * Class that represents a Calendar Entity. There is one entry per calendar.
519 public Entity getEntityAndIncrementCursor(Cursor cursor) throws RemoteException {
573 // Create the Entity from the ContentValue
574 Entity entity = new Entity(cv);
579 // Return the created Entity
1266 * Class that represents an Event Entity. There is one entry per event.
1361 public Entity getEntityAndIncrementCursor(Cursor cursor) throws RemoteException {
1431 Entity entit
[all...]
H A DContactsContract.java30 import android.content.Entity;
1650 * Entity has three ID fields: {@link #CONTACT_ID} for the contact,
1652 * the data rows. Entity always contains at least one row per
1657 * Entity reads all data for the entire contact in one transaction, to
1659 * in the Entity (each row repeats all Contact columns and all RawContact
1671 public static final class Entity implements BaseColumns, ContactsColumns, class in class:ContactsContract.Contacts
1677 private Entity() { method in class:ContactsContract.Contacts.Entity
2408 * by using the {@link Entity} directory. If the raw contact has data rows,
2409 * the Entity cursor will contain a row for each data row. If the raw contact has no
2413 * Uri entityUri = Uri.withAppendedPath(rawContactUri, Entity
2786 public static final class Entity implements BaseColumns, DataColumns { class in class:ContactsContract.RawContacts
2790 private Entity() { method in class:ContactsContract.RawContacts.Entity
[all...]
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardComposer.java21 import android.content.Entity;
22 import android.content.Entity.NamedContentValues;
536 Entity entity = entityIterator.next();

Completed in 194 milliseconds