HomeSort by relevance Sort by last modified time
    Searched defs:Entity (Results 1 - 25 of 37) 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()) {
  /external/clang/include/clang/Index/
Entity.h 1 //===--- Entity.h - Cross-translation-unit "token" for decls ----*- C++ -*-===//
10 // Entity is a ASTContext-independent way to refer to declarations that are
34 /// Entity is basically the link for declarations that are semantically the same
35 /// in multiple ASTContexts. A client will convert a Decl into an Entity and
36 /// later use that Entity to find the "same" Decl into another ASTContext.
38 /// units will be associated with the same Entity.
40 /// An Entity may also refer to declarations that cannot be visible across
47 class Entity {
52 explicit Entity(Decl *D);
53 explicit Entity(EntityImpl *impl) : Val(impl) {
    [all...]
  /packages/apps/Email/emailcommon/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/lib/Index/
Entity.cpp 1 //===--- Entity.cpp - Cross-translation-unit "token" for decls ------------===//
10 // Entity is a ASTContext-independent way to refer to declarations that are
25 // FIXME: Entity is really really basic currently, mostly written to work
36 /// \brief Gets the Entity associated with a Decl.
37 class EntityGetter : public DeclVisitor<EntityGetter, Entity> {
45 // Get an Entity.
46 Entity getEntity(Entity Parent, DeclarationName Name,
49 // Get an Entity associated with the name in the global namespace.
50 Entity getGlobalEntity(StringRef Name)
    [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;
248 void* getEntity() const { return Entity; }
249 void setEntity(void *E) { Entity = E; }
Initialization.h 37 /// \brief Describes an entity that is being initialized.
40 /// \brief Specifies the kind of entity being initialized.
42 /// \brief The entity being initialized is a variable.
44 /// \brief The entity being initialized is a function parameter.
46 /// \brief The entity being initialized is the result of a function call.
48 /// \brief The entity being initialized is an exception object that
51 /// \brief The entity being initialized is a non-static data member
54 /// \brief The entity being initialized is an element of an array.
56 /// \brief The entity being initialized is an object (or array of
59 /// \brief The entity being initialized is a temporary object
    [all...]
Sema.h 780 SourceLocation Loc, DeclarationName Entity);
782 SourceLocation Loc, DeclarationName Entity);
785 SourceRange Brackets, DeclarationName Entity);
792 SourceLocation Loc, DeclarationName Entity,
796 DeclarationName Entity);
798 SourceLocation Loc, DeclarationName Entity);
    [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 325 InitializedEntity entity = InitializedEntity::InitializeTemporary(destType);
331 InitializationSequence sequence(S, entity, initKind, &src, 1);
    [all...]
SemaTemplateInstantiate.cpp 124 // If this is a friend declaration and it declares an entity at
172 Decl *Entity,
184 Inst.Entity = reinterpret_cast<uintptr_t>(Entity);
210 Inst.Entity = reinterpret_cast<uintptr_t>(Template);
237 Inst.Entity = reinterpret_cast<uintptr_t>(FunctionTemplate);
266 Inst.Entity = reinterpret_cast<uintptr_t>(PartialSpec);
295 Inst.Entity = reinterpret_cast<uintptr_t>(Param);
321 Inst.Entity = reinterpret_cast<uintptr_t>(Param);
348 Inst.Entity = reinterpret_cast<uintptr_t>(Param)
    [all...]
SemaStmt.cpp 131 // If the LHS is a plausible entity to assign to, provide a fixit hint to
    [all...]
SemaChecking.cpp 585 InitializedEntity Entity =
587 Arg = PerformCopyInitialization(Entity, SourceLocation(), Arg);
626 InitializedEntity Entity =
630 Arg = S.PerformCopyInitialization(Entity, SourceLocation(), Arg);
817 InitializedEntity Entity = InitializedEntity::InitializeParameter(Context,
819 Arg = PerformCopyInitialization(Entity, SourceLocation(), Arg);
    [all...]
SemaExprCXX.cpp 600 InitializedEntity Entity =
603 Res = PerformMoveOrCopyInitialization(Entity, NRVOVariable,
756 InitializedEntity Entity = InitializedEntity::InitializeTemporary(TInfo);
762 InitializationSequence InitSeq(*this, Entity, Kind, Exprs, NumExprs);
763 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, move(exprs));
    [all...]
SemaLookup.cpp     [all...]
SemaTemplate.cpp 355 // entity as the one found in the class of the object expression,
    [all...]
SemaDecl.cpp 808 assert(!S->getEntity() && "scope already has entity");
    [all...]
SemaDeclCXX.cpp 225 InitializedEntity Entity = InitializedEntity::InitializeParameter(Context,
229 InitializationSequence InitSeq(*this, Entity, Kind, &Arg, 1);
230 ExprResult Result = InitSeq.Perform(*this, Entity, Kind,
9531 InitializedEntity entity = local
    [all...]
SemaExpr.cpp     [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp     [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...]
  /frameworks/base/core/java/android/provider/
ContactsContract.java 28 import android.content.Entity;
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactsProvider2Test.java 31 import android.content.Entity;
350 Contacts.Entity.CONTENT_DIRECTORY),
352 Contacts.Entity._ID,
353 Contacts.Entity.DATA_ID,
354 Contacts.Entity.RAW_CONTACT_ID,
435 RawContacts.Entity.DATA_ID,
706 Uri entityUri = Uri.withAppendedPath(contactUri, Contacts.Entity.CONTENT_DIRECTORY);
730 Uri entityUri = Uri.withAppendedPath(contactLookupUri, Contacts.Entity.CONTENT_DIRECTORY);
735 entityUri = Uri.withAppendedPath(contactLookupUri, Contacts.Entity.CONTENT_DIRECTORY);
740 entityUri = Uri.withAppendedPath(contactLookupUri, Contacts.Entity.CONTENT_DIRECTORY)
4203 Entity entity; local
    [all...]
  /prebuilt/sdk/12/
android.jar 

Completed in 434 milliseconds

1 2