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

1 2 3 4

  /external/autotest/client/cros/cellular/mbim_compliance/
entity.py 5 class Entity(object):
  /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...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue94/
Entity.java 18 public class Entity {
  /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()) {
  /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...]
  /external/llvm/lib/IR/
DebugInfo.cpp 126 auto *Entity = Import->getEntity().resolve(TypeIdentifierMap);
127 if (auto *T = dyn_cast<DIType>(Entity))
129 else if (auto *SP = dyn_cast<DISubprogram>(Entity))
131 else if (auto *NS = dyn_cast<DINamespace>(Entity))
133 else if (auto *M = dyn_cast<DIModule>(Entity))
LLVMContextImpl.h 774 Metadata *Entity;
778 MDNodeKeyImpl(unsigned Tag, Metadata *Scope, Metadata *Entity, unsigned Line,
780 : Tag(Tag), Scope(Scope), Entity(Entity), Line(Line), Name(Name) {}
782 : Tag(N->getTag()), Scope(N->getRawScope()), Entity(N->getRawEntity()),
787 Entity == RHS->getRawEntity() && Line == RHS->getLine() &&
791 return hash_combine(Tag, Scope, Entity, Line, Name);
    [all...]
  /external/clang/lib/Sema/
SemaCoroutine.cpp 429 InitializedEntity Entity =
431 ReturnObject = PerformMoveOrCopyInitialization(Entity, nullptr, RetType,
SemaCast.cpp 328 InitializedEntity entity = InitializedEntity::InitializeTemporary(destType);
335 InitializationSequence sequence(S, entity, initKind, src);
    [all...]
SemaLambda.cpp 97 // For an enclosing lambda to be capture ready for an entity, all
98 // intervening lambda's have to be able to capture that entity. If even
99 // one of the intervening lambda's is not capable of capturing the entity
100 // then no enclosing lambda can ever capture that entity.
109 // if the entity has already been explicitly captured.
731 InitializedEntity Entity =
745 InitializationSequence InitSeq(*this, Entity, Kind, Args);
746 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Args, &DclT);
    [all...]
SemaTemplateInstantiate.cpp 155 // If this is a friend declaration and it declares an entity at
206 Decl *Entity, NamedDecl *Template, ArrayRef<TemplateArgument> TemplateArgs,
221 Inst.Entity = Entity;
235 Sema &SemaRef, SourceLocation PointOfInstantiation, Decl *Entity,
239 PointOfInstantiation, InstantiationRange, Entity) {}
242 Sema &SemaRef, SourceLocation PointOfInstantiation, FunctionDecl *Entity,
246 PointOfInstantiation, InstantiationRange, Entity) {}
402 Decl *D = Active->Entity;
445 TemplateDecl *Template = cast<TemplateDecl>(Active->Entity);
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/
Example2_24Test.java 54 List<Entity> values = (List<Entity>) constructSequence(snode);
106 List<Entity> value = shape.getEntities();
164 private List<Entity> entities;
166 public List<Entity> getEntities() {
170 public Shape(List<Entity> entities) {
175 private class Entity {
178 private class Circle extends Entity {
196 private class Line extends Entity {
214 private class Label extends Entity {
    [all...]
  /external/clang/tools/libclang/
Indexing.cpp 889 const EntityInfo *Entity = static_cast<const EntityInfo *>(info);
890 return Entity->IndexCtx->getClientEntity(Entity->Dcl);
897 const EntityInfo *Entity = static_cast<const EntityInfo *>(info);
898 Entity->IndexCtx->setClientEntity(Entity->Dcl, client);
    [all...]
  /external/clang/include/clang/Sema/
Scope.h 185 /// example, the entity of a class scope is the class itself, the
186 /// entity of a function scope is a function, etc.
187 DeclContext *Entity;
310 DeclContext *getEntity() const { return Entity; }
311 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...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.cpp 645 auto *Entity = resolve(Module->getEntity());
646 if (auto *NS = dyn_cast<DINamespace>(Entity))
648 else if (auto *M = dyn_cast<DIModule>(Entity))
650 else if (auto *SP = dyn_cast<DISubprogram>(Entity))
652 else if (auto *T = dyn_cast<DIType>(Entity))
654 else if (auto *GV = dyn_cast<DIGlobalVariable>(Entity))
657 EntityDie = getDIE(Entity);
DwarfDebug.cpp     [all...]
  /external/llvm/unittests/IR/
MetadataTest.cpp     [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/gdb/darwin-x86/lib/python2.7/xml/dom/
minidom.py     [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/xml/dom/
minidom.py     [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...]

Completed in 1462 milliseconds

1 2 3 4