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/base/core/tests/coretests/src/android/pim/vcard/
H A DExportTestResolver.java20 import android.content.Entity;
50 List<Entity> mEntityList;
51 Iterator<Entity> mIterator;
54 mEntityList = new ArrayList<Entity>();
55 Entity entity = new Entity(new ContentValues());
67 public Entity next() {
/frameworks/base/core/java/android/provider/
H A DContactsContract.java27 import android.content.Entity;
1377 * by using the {@link Entity} directory. If the raw contact has data rows,
1378 * the Entity cursor will contain a row for each data row. If the raw contact has no
1382 * Uri entityUri = Uri.withAppendedPath(rawContactUri, Entity.CONTENT_DIRECTORY);
1384 * new String[]{RawContacts.SOURCE_ID, Entity.DATA_ID, Entity.MIMETYPE, Entity.DATA1},
1698 * TODO: deprecate in favor of {@link RawContacts.Entity}.
1722 * Entity has two ID fields: {@link #_ID} for the raw contact
1724 * Entity alway
1734 public static final class Entity implements BaseColumns, DataColumns { class in class:ContactsContract.RawContacts
1738 private Entity() { method in class:ContactsContract.RawContacts.Entity
[all...]
H A DCalendar.java28 import android.content.Entity;
664 public Entity getEntityAndIncrementCursor(Cursor cursor) throws RemoteException {
709 Entity entity = new Entity(cv);
/frameworks/base/core/java/android/pim/vcard/
H A DVCardComposer.java21 import android.content.Entity;
23 import android.content.Entity.NamedContentValues;
509 Entity entity = entityIterator.next();

Completed in 320 milliseconds