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

1 2 3

  /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 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()) {
  /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;
  /packages/apps/UnifiedEmail/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...]
  /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/include/clang/Sema/
Scope.h 177 /// example, the entity of a class scope is the class itself, the
178 /// entity of a function scope is a function, etc.
179 DeclContext *Entity;
294 DeclContext *getEntity() const { return Entity; }
295 void setEntity(DeclContext *E) { Entity = E; }
Initialization.h 40 /// \brief Describes an entity that is being initialized.
43 /// \brief Specifies the kind of entity being initialized.
45 /// \brief The entity being initialized is a variable.
47 /// \brief The entity being initialized is a function parameter.
49 /// \brief The entity being initialized is the result of a function call.
51 /// \brief The entity being initialized is an exception object that
54 /// \brief The entity being initialized is a non-static data member
57 /// \brief The entity being initialized is an element of an array.
59 /// \brief The entity being initialized is an object (or array of
62 /// \brief The entity being initialized is a temporary object
    [all...]
Sema.h 416 /// - If we are declaring another global or extern "C" entity with
    [all...]
  /external/clang/tools/libclang/
Indexing.cpp 940 const EntityInfo *Entity = static_cast<const EntityInfo *>(info);
941 return Entity->IndexCtx->getClientEntity(Entity->Dcl);
948 const EntityInfo *Entity = static_cast<const EntityInfo *>(info);
949 Entity->IndexCtx->setClientEntity(Entity->Dcl, client);
    [all...]
  /external/clang/lib/Sema/
SemaCast.cpp 333 InitializedEntity entity = InitializedEntity::InitializeTemporary(destType);
340 InitializationSequence sequence(S, entity, initKind, src);
    [all...]
SemaTemplateInstantiate.cpp 155 // If this is a friend declaration and it declares an entity at
206 Decl *Entity, NamedDecl *Template, ArrayRef<TemplateArgument> TemplateArgs,
215 Inst.Entity = Entity;
230 Decl *Entity,
235 PointOfInstantiation, InstantiationRange, Entity);
240 FunctionDecl *Entity, ExceptionSpecification,
245 PointOfInstantiation, InstantiationRange, Entity);
422 Decl *D = Active->Entity;
461 TemplateDecl *Template = cast<TemplateDecl>(Active->Entity);
    [all...]
SemaExprObjC.cpp 295 InitializedEntity Entity = InitializedEntity::InitializeParameter(Context,
297 ExprResult ConvertedNumber = PerformCopyInitialization(Entity,
344 InitializedEntity Entity
350 InitializationSequence Seq(S, Entity, Kind, Element);
352 return Seq.Perform(S, Entity, Kind, Element);
585 InitializedEntity Entity = InitializedEntity::InitializeParameter(Context,
587 ExprResult ConvertedValueExpr = PerformCopyInitialization(Entity,
    [all...]
SemaLookup.cpp     [all...]
SemaStmt.cpp 166 // If the LHS is a plausible entity to assign to, provide a fixit hint to
    [all...]
SemaExprCXX.cpp 692 InitializedEntity Entity =
695 Res = PerformMoveOrCopyInitialization(Entity, NRVOVariable,
    [all...]
SemaTemplate.cpp 382 // entity as the one found in the class of the object expression,
    [all...]
  /external/llvm/lib/IR/
DebugInfo.cpp     [all...]
  /external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
tinyxml.h 322 // If an entity has been found, transform it into a character.
400 struct Entity
412 static Entity entity[ NUM_ENTITY ]; member in class:TiXmlBase
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp 706 DIDescriptor Entity = resolve(Module.getEntity());
707 if (Entity.isNameSpace())
708 EntityDie = TheCU.getOrCreateNameSpace(DINameSpace(Entity));
709 else if (Entity.isSubprogram())
710 EntityDie = TheCU.getOrCreateSubprogramDIE(DISubprogram(Entity));
711 else if (Entity.isType())
712 EntityDie = TheCU.getOrCreateTypeDIE(DIType(Entity));
714 EntityDie = TheCU.getDIE(Entity);
    [all...]
  /external/sfntly/cpp/src/test/tinyxml/
tinyxml.h 322 // If an entity has been found, transform it into a character.
400 struct Entity
412 static Entity entity[ NUM_ENTITY ]; member in class:TiXmlBase
    [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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
minidom.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/
minidom.py     [all...]
  /frameworks/base/core/java/android/provider/
ContactsContract.java 30 import android.content.Entity;
    [all...]

Completed in 1056 milliseconds

1 2 3