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

1 2

  /external/webkit/Source/WebCore/dom/
Entity.h 31 class Entity : public ContainerNode {
38 Entity() : ContainerNode(0) {}
  /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...]
  /frameworks/base/core/java/android/content/
Entity.java 33 public final class Entity {
37 public Entity(ContentValues values) {
51 mSubValues.add(new Entity.NamedContentValues(uri, values));
66 sb.append("Entity: ").append(getEntityValues());
67 for (Entity.NamedContentValues namedValue : getSubValues()) {
  /packages/apps/Email/src/org/apache/james/mime4j/message/
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...]
  /external/clang/include/clang/Sema/
Scope.h 146 /// Entity - The entity with which this scope is associated. For
147 /// example, the entity of a class scope is the class itself, the
148 /// entity of a function scope is a function, etc. This field is
150 void *Entity;
239 void* getEntity() const { return Entity; }
240 void setEntity(void *E) { Entity = E; }
Initialization.h 39 /// \brief Describes an entity that is being initialized.
42 /// \brief Specifies the kind of entity being initialized.
44 /// \brief The entity being initialized is a variable.
46 /// \brief The entity being initialized is a function parameter.
48 /// \brief The entity being initialized is the result of a function call.
50 /// \brief The entity being initialized is an exception object that
53 /// \brief The entity being initialized is a non-static data member
56 /// \brief The entity being initialized is an element of an array.
58 /// \brief The entity being initialized is an object (or array of
61 /// \brief The entity being initialized is a temporary object
    [all...]
Sema.h 315 /// - If we are declaring another global or extern "C" entity with
    [all...]
  /packages/apps/Browser/src/com/android/browser/homepages/
Template.java 51 interface Entity {
65 static class StringEntity implements Entity {
80 static class SimpleEntity implements Entity {
95 static class ListEntity implements Entity {
165 private List<Entity> mTemplate;
172 mTemplate = new ArrayList<Entity>();
231 for (Entity ent : mTemplate) {
  /external/clang/lib/Sema/
SemaCast.cpp 328 InitializedEntity entity = InitializedEntity::InitializeTemporary(destType);
335 InitializationSequence sequence(S, entity, initKind, &src, 1);
    [all...]
SemaTemplateInstantiate.cpp 124 // If this is a friend declaration and it declares an entity at
173 Decl *Entity,
185 Inst.Entity = Entity;
196 FunctionDecl *Entity, ExceptionSpecification,
208 Inst.Entity = Entity;
233 Inst.Entity = Template;
258 Inst.Entity = FunctionTemplate;
286 Inst.Entity = PartialSpec
    [all...]
SemaExprObjC.cpp 292 InitializedEntity Entity = InitializedEntity::InitializeParameter(Context,
294 ExprResult ConvertedNumber = PerformCopyInitialization(Entity,
340 InitializedEntity Entity
346 InitializationSequence Seq(S, Entity, Kind, &Element, 1);
348 return Seq.Perform(S, Entity, Kind, Element);
563 InitializedEntity Entity = InitializedEntity::InitializeParameter(Context,
565 ExprResult ConvertedValueExpr = PerformCopyInitialization(Entity,
    [all...]
SemaExprCXX.cpp 607 InitializedEntity Entity =
610 Res = PerformMoveOrCopyInitialization(Entity, NRVOVariable,
836 InitializedEntity Entity = InitializedEntity::InitializeTemporary(TInfo);
    [all...]
SemaLookup.cpp     [all...]
SemaStmt.cpp 139 // If the LHS is a plausible entity to assign to, provide a fixit hint to
    [all...]
SemaTemplate.cpp 382 // entity as the one found in the class of the object expression,
    [all...]
SemaChecking.cpp 866 InitializedEntity Entity =
869 Arg = PerformCopyInitialization(Entity, SourceLocation(), Arg);
    [all...]
SemaDecl.cpp     [all...]
SemaDeclCXX.cpp 121 // implicitly or explicitly capture any entity.
245 InitializedEntity Entity = InitializedEntity::InitializeParameter(Context,
249 InitializationSequence InitSeq(*this, Entity, Kind, &Arg, 1);
250 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Arg);
10302 InitializedEntity entity = local
    [all...]
SemaExpr.cpp 12035 InitializedEntity entity = local
    [all...]
SemaOverload.cpp     [all...]
  /external/clang/tools/libclang/
Indexing.cpp 938 const EntityInfo *Entity = static_cast<const EntityInfo *>(info);
939 return Entity->IndexCtx->getClientEntity(Entity->Dcl);
946 const EntityInfo *Entity = static_cast<const EntityInfo *>(info);
947 Entity->IndexCtx->setClientEntity(Entity->Dcl, client);
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp 685 // into an entity. We're using 0 (or a NULL label) for this.
    [all...]
  /external/tinyxml/
tinyxml.h 275 // If an entity has been found, transform it into a character.
359 struct Entity
371 static Entity entity[ NUM_ENTITY ]; member in class:TiXmlBase
    [all...]
  /external/tinyxml2/
tinyxml2.cpp 64 struct Entity {
71 static const Entity entities[NUM_ENTITIES] =
194 // - special entities in the entity table [in/out]
213 // Found an entity convert;
304 // Presume an entity, and pull it out.
    [all...]
  /frameworks/base/core/java/android/provider/
ContactsContract.java 29 import android.content.Entity;
    [all...]

Completed in 848 milliseconds

1 2