HomeSort by: relevance | last modified time | path
    Searched defs:getMostRecentDecl (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Redeclarable.h 225 decl_type *getMostRecentDecl() {
230 const decl_type *getMostRecentDecl() const {
Decl.h 447 NamedDecl *getMostRecentDecl() {
448 return cast<NamedDecl>(static_cast<Decl *>(this)->getMostRecentDecl());
450 const NamedDecl *getMostRecentDecl() const {
451 return const_cast<NamedDecl*>(this)->getMostRecentDecl();
560 using redeclarable_base::getMostRecentDecl;
1032 return getMostRecentDecl();
1043 using redeclarable_base::getMostRecentDecl;
1979 return getMostRecentDecl();
1993 using redeclarable_base::getMostRecentDecl;
3173 return getMostRecentDecl();
    [all...]
DeclTemplate.h 762 return getMostRecentDecl();
794 return SETraits::getDecl(&*this->I)->getMostRecentDecl();
948 using redeclarable_base::getMostRecentDecl;
1064 FunctionTemplateDecl *getMostRecentDecl() {
1067 ->getMostRecentDecl());
1069 const FunctionTemplateDecl *getMostRecentDecl() const {
1070 return const_cast<FunctionTemplateDecl*>(this)->getMostRecentDecl();
1872 // FIXME: This is broken. CXXRecordDecl::getMostRecentDecl() returns a
1877 ClassTemplateSpecializationDecl *getMostRecentDecl() {
2121 ClassTemplatePartialSpecializationDecl *getMostRecentDecl() {
    [all...]
DeclBase.h 920 /// Implementation of getMostRecentDecl(), to be overridden by any
999 Decl *getMostRecentDecl() { return getMostRecentDeclImpl(); }
1003 const Decl *getMostRecentDecl() const {
DeclCXX.h 428 getMostRecentDecl();
510 CXXRecordDecl *getMostRecentDecl() {
512 static_cast<RecordDecl *>(this)->getMostRecentDecl());
515 const CXXRecordDecl *getMostRecentDecl() const {
516 return const_cast<CXXRecordDecl*>(this)->getMostRecentDecl();
521 static_cast<CXXRecordDecl *>(this)->getMostRecentDecl();
2039 CXXMethodDecl *getMostRecentDecl() {
2041 static_cast<FunctionDecl *>(this)->getMostRecentDecl());
2043 const CXXMethodDecl *getMostRecentDecl() const {
2044 return const_cast<CXXMethodDecl*>(this)->getMostRecentDecl();
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderDecl.cpp 282 static Decl *getMostRecentDecl(Decl *D);
477 Current = Current->getMostRecentDecl();
3518 llvm_unreachable("getMostRecentDecl on non-redeclarable declaration");
3521 Decl *ASTDeclReader::getMostRecentDecl(Decl *D) {
3535 return ASTDeclReader::getMostRecentDecl(D->getCanonicalDecl());
4234 Decl *PrevMostRecent = ASTDeclReader::getMostRecentDecl(CanonDecl);
4408 auto *MostRecent = D->getMostRecentDecl();

Completed in 77 milliseconds