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

1 2 3 4 5 6

  /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);
BodyPart.java 32 public class BodyPart extends Entity {
36 * @see org.apache.james.mime4j.message.Entity#writeTo(java.io.OutputStream)
Message.java 49 public class Message extends Entity implements Body {
83 * @see org.apache.james.mime4j.message.Entity#writeTo(java.io.OutputStream)
120 expect(Entity.class);
122 ((Entity) stack.peek()).setBody(m);
156 expect(Entity.class);
157 ((Entity) stack.peek()).setHeader(h);
164 expect(Entity.class);
166 Entity e = (Entity) stack.peek();
176 expect(Entity.class)
    [all...]
Entity.java 30 * MIME entity. An entity has a header and a body (see RFC 2045).
33 * @version $Id: Entity.java,v 1.3 2004/10/02 12:41:11 ntherning Exp $
35 public abstract class Entity {
38 private Entity parent = null;
41 * Gets the parent entity of this entity.
42 * Returns <code>null</code> if this is the root entity.
46 public Entity getParent() {
51 * Sets the parent entity of this entity
    [all...]
MemoryBinaryBody.java 46 private Entity parent = null;
68 public Entity getParent() {
73 * @see org.apache.james.mime4j.message.AbstractBody#setParent(org.apache.james.mime4j.message.Entity)
75 public void setParent(Entity parent) {
TempFileBinaryBody.java 45 private Entity parent = null;
67 public Entity getParent() {
72 * @see org.apache.james.mime4j.message.AbstractBody#setParent(org.apache.james.mime4j.message.Entity)
74 public void setParent(Entity parent) {
Multipart.java 49 private Entity parent = null;
83 public Entity getParent() {
88 * @see org.apache.james.mime4j.message.Body#setParent(org.apache.james.mime4j.message.Entity)
90 public void setParent(Entity parent) {
187 * Return the boundory of the parent Entity
192 Entity e = getParent();
199 Entity e = getParent();
  /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()) {
CursorEntityIterator.java 24 * that can contain several consecutive rows for an entity.
33 * first Entity, if there are any.
43 * Returns the entity that the cursor is currently pointing to. This must take care to advance
44 * the cursor past this entity. This will never be called if the cursor is at the end.
45 * @param cursor the cursor that contains the entity rows
46 * @return the entity that the cursor is currently pointing to
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() {
  /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...]
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
documentimportnode19.java 39 * Using the method importNode with deep=true/false, import a entity nodes ent2 and ent6
82 Entity entity2;
83 Entity entity6;
84 Entity entityImp2;
85 Entity entityImp6;
98 entity2 = (Entity) nodeMap.getNamedItem("ent2");
99 entity6 = (Entity) nodeMap.getNamedItem("ent6");
100 entityImp2 = (Entity) docImp.importNode(entity2, false);
101 entityImp6 = (Entity) docImp.importNode(entity6, true);
importNode12.java 36 * The importedNode is of type Entity.
38 * Retrieve entity "ent4" from staffNS.xml document.
40 * Method should return a node of type Entity whose descendant is copied.
73 Entity entity2;
74 Entity entity1;
86 entity2 = (Entity) entityList.getNamedItem("ent4");
87 entity1 = (Entity) doc.importNode(entity2, true);
getNamedItemNS03.java 34 * Entity nodes are not namespaced and should not be retrievable using
66 Entity entity; local
73 entity = (Entity) entities.getNamedItemNS(nullNS, "ent1");
74 assertNull("entityNull", entity);
importNode09.java 36 * The importedNode is of type Entity.
38 * Retrieve entity "ent6" from staffNS.xml document.
40 * Method should return a node of type Entity whose publicId, systemId and
74 Entity entity2;
75 Entity entity1;
87 entity2 = (Entity) entityList.getNamedItem("ent6");
88 entity1 = (Entity) doc.importNode(entity2, false);
documentimportnode20.java 39 * Using the method importNode with deep=true, import a entity node ent4
40 * from this document to a new document object. The replacement text of this entity is an element
85 Entity entity4;
86 Entity entityImp4;
102 entity4 = (Entity) nodeMap.getNamedItem("ent4");
103 entityImp4 = (Entity) docImp.importNode(entity4, true);
  /external/clang/lib/Sema/
SemaAccess.cpp 150 AccessTarget(const AccessedEntity &Entity)
151 : AccessedEntity(Entity) {
    [all...]
SemaInit.cpp 210 /// handle the initialization of a certain kind of entity, e.g.,
242 void CheckImplicitInitList(const InitializedEntity &Entity,
246 void CheckExplicitInitList(const InitializedEntity &Entity,
250 void CheckListElementTypes(const InitializedEntity &Entity,
257 void CheckSubElementType(const InitializedEntity &Entity,
262 void CheckComplexType(const InitializedEntity &Entity,
267 void CheckScalarType(const InitializedEntity &Entity,
272 void CheckReferenceType(const InitializedEntity &Entity,
277 void CheckVectorType(const InitializedEntity &Entity,
281 void CheckStructUnionTypes(const InitializedEntity &Entity,
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
entitygetentityname.java 32 * contains the name of the entity.
34 * Retrieve the entity named "ent1" and access its name by
67 Entity entityNode;
74 entityNode = (Entity) entityList.getNamedItem("ent1");
entitygetpublicidnull.java 31 * The "getPublicId()" method of an Entity node contains
32 * the public identifier associated with the entity, if
35 * Retrieve the entity named "ent1" and access its
37 * specified for this entity, the "getPublicId()" method
68 Entity entityNode;
75 entityNode = (Entity) entityList.getNamedItem("ent1");
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
EntityImpl.java 19 import org.w3c.dom.Entity;
32 public class EntityImpl extends NodeImpl implements Entity {
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
ExportTestProvider.java 20 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()); local
49 entity.addSubValue(Data.CONTENT_URI, contentValues);
51 mEntityList.add(entity);
61 public Entity next()
    [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/interactions/
ContactDeletionInteractionTest.java 23 import android.provider.ContactsContract.Contacts.Entity;
61 CONTACT_URI, Entity.CONTENT_DIRECTORY);
142 Entity.RAW_CONTACT_ID, Entity.ACCOUNT_TYPE, Entity.DATA_SET, Entity.CONTACT_ID,
143 Entity.LOOKUP_KEY);
  /external/lldb/include/lldb/Expression/
Materializer.h 111 class Entity
114 Entity () :
121 virtual ~Entity ()
159 uint32_t AddStructMember (Entity &entity);
161 typedef std::unique_ptr<Entity> EntityUP;
166 Entity *m_result_entity;

Completed in 927 milliseconds

1 2 3 4 5 6