HomeSort by relevance Sort by last modified time
    Searched refs:Entity (Results 1 - 25 of 473) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/
AbstractBody.java 31 private Entity parent = null;
36 public Entity getParent() {
41 * @see org.apache.james.mime4j.message.Body#setParent(org.apache.james.mime4j.message.Entity)
43 public void setParent(Entity parent) {
Body.java 26 * Encapsulates the body of an entity (see RFC 2045).
38 Entity getParent();
45 void setParent(Entity parent);
  /test/vti/dashboard/src/main/java/com/android/vts/entity/
DashboardEntity.java 17 package com.android.vts.entity;
19 import com.google.appengine.api.datastore.Entity;
24 * Serialize the DashboardEntity to an Entity object.
26 * @return Entity object representing the properties defined in the DashboardEntity.
28 public Entity toEntity();
TestPlanEntity.java 17 package com.android.vts.entity;
19 import com.google.appengine.api.datastore.Entity;
23 /** Entity describing test plan metadata. */
44 public Entity toEntity() {
45 Entity planEntity = new Entity(KIND, this.testPlanName);
50 * Convert an Entity object to a TestEntity.
52 * @param e The entity to process.
56 public static TestPlanEntity fromEntity(Entity e) {
59 logger.log(Level.WARNING, "Missing test plan attributes in entity: " + e.toString())
    [all...]
  /frameworks/support/room/compiler/src/main/kotlin/androidx/room/writer/
EntityDeleteComparator.kt 19 import androidx.room.vo.Entity
22 * Sorts the entities by their foreign key dependencies. For example, when Entity A depends on
23 * Entity B, A is ordered before B.
25 class EntityDeleteComparator : Comparator<Entity> {
27 override fun compare(lhs: Entity, rhs: Entity): Int {
  /frameworks/support/room/integration-tests/kotlintestapp/src/androidTest/java/androidx/room/integration/kotlintestapp/vo/
JavaEntity.java 18 import androidx.room.Entity;
22 @Entity
NoArgClass.kt 19 import androidx.room.Entity
25 @Entity
Publisher.kt 19 import androidx.room.Entity
22 @Entity
Author.kt 19 import androidx.room.Entity
24 @Entity
  /frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/vo/
IntAutoIncPKeyEntity.java 19 import androidx.room.Entity;
22 @Entity
IntegerAutoIncPKeyEntity.java 19 import androidx.room.Entity;
22 @Entity
IntegerPKeyEntity.java 19 import androidx.room.Entity;
22 @Entity
BlobEntity.java 19 import androidx.room.Entity;
22 @Entity
ObjectPKeyEntity.java 20 import androidx.room.Entity;
23 @Entity
Product.java 20 import androidx.room.Entity;
23 @Entity(tableName = "products")
  /external/autotest/client/cros/cellular/mbim_compliance/
entity.py 5 class Entity(object):
  /frameworks/base/core/java/android/content/
EntityIterator.java 23 * {@link Entity} objects. In addition to the iteration functionality it also allows
28 public interface EntityIterator extends Iterator<Entity> {
Entity.java 30 public final class Entity {
34 public Entity(ContentValues values) {
48 mSubValues.add(new Entity.NamedContentValues(uri, values));
63 sb.append("Entity: ").append(getEntityValues());
64 for (Entity.NamedContentValues namedValue : getSubValues()) {
  /frameworks/support/room/compiler/src/test/data/common/input/
Book.java 19 @Entity
MultiPKeyEntity.java 20 @Entity(primaryKeys = {"name", "lastName"})
  /frameworks/support/room/integration-tests/kotlintestapp/src/main/java/androidx/room/integration/kotlintestapp/vo/
DataClassFromDependency.kt 18 import androidx.room.Entity
25 @Entity
  /frameworks/rs/rsov/compiler/spirit/
entity.cpp 17 #include "entity.h"
26 void Entity::Serialize(OutputWordStream &OS) const {
29 v->visit(const_cast<Entity *>(this));
  /frameworks/support/work/integration-tests/testapp/src/main/java/androidx/work/integration/testapp/db/
WordCount.java 18 import android.arch.persistence.room.Entity;
25 @Entity
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue94/
EntityLoadingProxy.java 18 public class EntityLoadingProxy extends Entity {
  /libcore/luni/src/main/java/org/w3c/dom/
Entity.java 16 * This interface represents a known entity, either parsed or unparsed, in an
17 * XML document. Note that this models the entity itself <em>not</em> the entity declaration.
19 * <code>Node</code> contains the name of the entity.
24 * process entity declarations made in the external subset or declared in
27 * that the replacement text of the entity may not be available. When the <a href='http://www.w3.org/TR/2004/REC-xml-20040204#intern-replacement'>
28 * replacement text</a> is available, the corresponding <code>Entity</code> node's child list
31 * <p>DOM Level 3 does not support editing <code>Entity</code> nodes; if a
32 * user wants to make changes to the contents of an <code>Entity</code>,
34 * structure model by a clone of the <code>Entity</code>'s contents, an
    [all...]

Completed in 597 milliseconds

1 2 3 4 5 6 7 8 91011>>