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

1 2 3 4 5 6 7

  /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...]
IndexProvider.h 20 class Entity;
28 virtual void GetTranslationUnitsFor(Entity Ent,
Indexer.h 18 #include "clang/Index/Entity.h"
37 typedef std::map<Entity, TUSetTy> MapTy;
39 typedef std::map<Entity, std::pair<FunctionDecl*,TranslationUnit*> > DefMapTy;
49 virtual void GetTranslationUnitsFor(Entity Ent,
54 std::pair<FunctionDecl*, TranslationUnit*> getDefinitionFor(Entity Ent);
60 // Map a function Entity to the its definition.
Handlers.h 23 class Entity;
30 typedef Entity receiving_type;
33 virtual void Handle(Entity Ent) = 0;
58 /// IndexProvider.GetTranslationUnitsFor(Entity, TURes);
Program.h 30 friend class Entity;
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/message/
AbstractBody.java 31 private Entity parent = null;
36 public Entity getParent() {
41 * @see org.apache.james.mime4j.message.Body#setParent(org.apache.james.mime4j.message.Entity)
43 public void setParent(Entity parent) {
Body.java 26 * Encapsulates the body of an entity (see RFC 2045).
38 Entity getParent();
45 void setParent(Entity parent);
BodyPart.java 32 public class BodyPart extends Entity {
36 * @see org.apache.james.mime4j.message.Entity#writeTo(java.io.OutputStream)
Message.java 49 public class Message extends Entity implements Body {
83 * @see org.apache.james.mime4j.message.Entity#writeTo(java.io.OutputStream)
120 expect(Entity.class);
122 ((Entity) stack.peek()).setBody(m);
156 expect(Entity.class);
157 ((Entity) stack.peek()).setHeader(h);
164 expect(Entity.class);
166 Entity e = (Entity) stack.peek();
176 expect(Entity.class);
    [all...]
  /external/webkit/Source/WebCore/dom/
Entity.h 31 class Entity : public ContainerNode {
38 Entity() : ContainerNode(0) {}
Entity.idl 22 interface Entity : Node {
  /frameworks/base/core/java/android/content/
EntityIterator.java 23 * {@link Entity} objects. In addition to the iteration functionality it also allows
28 public interface EntityIterator extends Iterator<Entity> {
CursorEntityIterator.java 24 * that can contain several consecutive rows for an entity.
33 * first Entity, if there are any.
43 * Returns the entity that the cursor is currently pointing to. This must take care to advance
44 * the cursor past this entity. This will never be called if the cursor is at the end.
45 * @param cursor the cursor that contains the entity rows
46 * @return the entity that the cursor is currently pointing to
47 * @throws RemoteException if a RemoteException is caught while attempting to build the Entity
49 public abstract Entity getEntityAndIncrementCursor(Cursor cursor) throws RemoteException;
75 public Entity next() {
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/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...]
EntityImpl.h 1 //===--- EntityImpl.h - Internal Entity implementation---------*- C++ -*-=====//
10 // Internal implementation for the Entity class
17 #include "clang/Index/Entity.h"
28 Entity Parent;
39 EntityImpl(Entity parent, DeclarationName name, unsigned idNS,
44 /// \brief Find the Decl that can be referred to by this entity.
47 /// \brief Get an Entity associated with the given Decl.
48 /// \returns Null if an Entity cannot refer to this Decl.
49 static Entity get(Decl *D, Program &Prog, ProgramImpl &ProgImpl);
50 static Entity get(StringRef Name, Program &Prog, ProgramImpl &ProgImpl)
    [all...]
CallGraph.cpp 30 Entity CallerEnt;
35 CGBuilder(CallGraph &g, FunctionDecl *fd, Entity E, CallGraphNode *N)
52 Entity Ent = Entity::get(CalleeDecl, G.getProgram());
59 ExternalCallingNode = getOrInsertFunction(Entity());
79 Entity Ent = Entity::get(FD, Prog);
98 CallGraphNode *CallGraph::getOrInsertFunction(Entity F) {
Program.cpp 1 //===--- Program.cpp - Entity originator and misc -------------------------===//
39 Entity Ent = Entity::get(*I, Prog);
  /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/clang/lib/Sema/
SemaAccess.cpp 144 AccessTarget(const AccessedEntity &Entity)
145 : AccessedEntity(Entity) {
942 /// Given that an entity has protected natural access, check whether
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
documentimportnode19.java 39 * Using the method importNode with deep=true/false, import a entity nodes ent2 and ent6
82 Entity entity2;
83 Entity entity6;
84 Entity entityImp2;
85 Entity entityImp6;
98 entity2 = (Entity) nodeMap.getNamedItem("ent2");
99 entity6 = (Entity) nodeMap.getNamedItem("ent6");
100 entityImp2 = (Entity) docImp.importNode(entity2, false);
101 entityImp6 = (Entity) docImp.importNode(entity6, true);
importNode12.java 36 * The importedNode is of type Entity.
38 * Retrieve entity "ent4" from staffNS.xml document.
40 * Method should return a node of type Entity whose descendant is copied.
73 Entity entity2;
74 Entity entity1;
86 entity2 = (Entity) entityList.getNamedItem("ent4");
87 entity1 = (Entity) doc.importNode(entity2, true);
getNamedItemNS03.java 34 * Entity nodes are not namespaced and should not be retrievable using
66 Entity entity; local
73 entity = (Entity) entities.getNamedItemNS(nullNS, "ent1");
74 assertNull("entityNull", entity);
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
entitygetentityname.java 32 * contains the name of the entity.
34 * Retrieve the entity named "ent1" and access its name by
67 Entity entityNode;
74 entityNode = (Entity) entityList.getNamedItem("ent1");
entitygetpublicidnull.java 31 * The "getPublicId()" method of an Entity node contains
32 * the public identifier associated with the entity, if
35 * Retrieve the entity named "ent1" and access its
37 * specified for this entity, the "getPublicId()" method
68 Entity entityNode;
75 entityNode = (Entity) entityList.getNamedItem("ent1");

Completed in 304 milliseconds

1 2 3 4 5 6 7