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

1 2 3 4 5

  /external/autotest/client/cros/cellular/mbim_compliance/
entity.py 5 class Entity(object):
  /frameworks/rs/rsov/compiler/spirit/
entity.h 31 class Entity {
33 Entity() {}
34 Entity(Builder *b) : mBuilder(b) {}
36 virtual ~Entity() {}
50 std::unique_ptr<T> entity(new T());
51 if (!entity->DeserializeInternal(IS)) {
54 return entity.release();
64 while (auto entity = Deserialize<T>(IS)) {
65 all.push_back(entity);
  /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()) {
  /cts/hostsidetests/inputmethodservice/deviceside/lib/src/android/inputmethodservice/cts/db/
Entity.java 31 public final class Entity<E> {
36 private Entity(final Builder<E> builder) {
42 * Returns SQL statement to create this entity/row, such that
62 * {@link Entity} builder.
78 public Entity<E> build() {
79 return new Entity<>(this);
  /external/llvm/lib/IR/
DebugInfo.cpp 70 auto *Entity = Import->getEntity().resolve();
71 if (auto *T = dyn_cast<DIType>(Entity))
73 else if (auto *SP = dyn_cast<DISubprogram>(Entity))
75 else if (auto *NS = dyn_cast<DINamespace>(Entity))
77 else if (auto *M = dyn_cast<DIModule>(Entity))
LLVMContextImpl.h 874 Metadata *Entity;
878 MDNodeKeyImpl(unsigned Tag, Metadata *Scope, Metadata *Entity, unsigned Line,
880 : Tag(Tag), Scope(Scope), Entity(Entity), Line(Line), Name(Name) {}
882 : Tag(N->getTag()), Scope(N->getRawScope()), Entity(N->getRawEntity()),
    [all...]
  /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...]
  /device/linaro/bootloader/edk2/MdePkg/Include/IndustryStandard/
AlertStandardFormatTable.h 61 UINT8 Entity;
  /external/clang/lib/Sema/
SemaCoroutine.cpp 429 InitializedEntity Entity =
431 ReturnObject = PerformMoveOrCopyInitialization(Entity, nullptr, RetType,
SemaCast.cpp 329 InitializedEntity entity = InitializedEntity::InitializeTemporary(destType);
336 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.
734 InitializedEntity Entity =
748 InitializationSequence InitSeq(*this, Entity, Kind, Args);
749 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Args, &DclT);
    [all...]
SemaTemplateInstantiate.cpp 156 // If this is a friend declaration and it declares an entity at
207 Decl *Entity, NamedDecl *Template, ArrayRef<TemplateArgument> TemplateArgs,
222 Inst.Entity = Entity;
236 Sema &SemaRef, SourceLocation PointOfInstantiation, Decl *Entity,
240 PointOfInstantiation, InstantiationRange, Entity) {}
243 Sema &SemaRef, SourceLocation PointOfInstantiation, FunctionDecl *Entity,
247 PointOfInstantiation, InstantiationRange, Entity) {}
403 Decl *D = Active->Entity;
446 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/include/clang/Sema/
Scope.h 186 /// example, the entity of a class scope is the class itself, the
187 /// entity of a function scope is a function, etc.
188 DeclContext *Entity;
313 DeclContext *getEntity() const { return Entity; }
314 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 670 auto *Entity = resolve(Module->getEntity());
671 if (auto *NS = dyn_cast<DINamespace>(Entity))
673 else if (auto *M = dyn_cast<DIModule>(Entity))
675 else if (auto *SP = dyn_cast<DISubprogram>(Entity))
677 else if (auto *T = dyn_cast<DIType>(Entity))
679 else if (auto *GV = dyn_cast<DIGlobalVariable>(Entity))
682 EntityDie = getDIE(Entity);
    [all...]
DwarfDebug.cpp     [all...]
  /external/pdfium/xfa/fde/xml/
fde_xml_imp.h 300 Entity,
  /external/clang/tools/libclang/
Indexing.cpp 812 const EntityInfo *Entity = static_cast<const EntityInfo *>(info);
813 return Entity->IndexCtx->getClientEntity(Entity->Dcl);
820 const EntityInfo *Entity = static_cast<const EntityInfo *>(info);
821 Entity->IndexCtx->setClientEntity(Entity->Dcl, client);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/dom/
minidom.py     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/dom/
minidom.py     [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...]

Completed in 654 milliseconds

1 2 3 4 5