HomeSort by relevance Sort by last modified time
    Searched refs:IdDeclInfo (Results 1 - 2 of 2) sorted by null

  /external/clang/lib/Sema/
IdentifierResolver.cpp 30 /// individual IdDeclInfo to heap.
41 IdDeclInfo Pool[POOL_SIZE];
58 /// Returns the IdDeclInfo associated to the DeclarationName.
59 /// It creates a new IdDeclInfo if one was not created before for this id.
60 IdDeclInfo &operator[](DeclarationName Name);
65 // IdDeclInfo Implementation
70 void IdentifierResolver::IdDeclInfo::RemoveDecl(NamedDecl *D) {
151 IdDeclInfo *IDI;
195 IdDeclInfo *IDI = toIdDeclInfo(Ptr);
235 IdDeclInfo *IDI = toIdDeclInfo(Ptr)
    [all...]
  /external/clang/include/clang/Sema/
IdentifierResolver.h 37 /// IdDeclInfo - Keeps track of information about decls associated
41 class IdDeclInfo {
78 /// 2) A IdDeclInfo::DeclsTy::iterator that traverses only the decls of the
80 /// 3) A IdDeclInfo::DeclsTy::iterator that traverses the decls of parent
83 typedef IdDeclInfo::DeclsTy::iterator BaseIter;
90 /// A IdDeclInfo::DeclsTy::iterator that walks or not the parent declaration
201 /// FETokenInfo contains a IdDeclInfo pointer if lower bit == 1.
202 static inline IdDeclInfo *toIdDeclInfo(void *Ptr) {
204 && "Ptr not a IdDeclInfo* !");
205 return reinterpret_cast<IdDeclInfo*>(
    [all...]

Completed in 66 milliseconds