HomeSort by relevance Sort by last modified time
    Searched full:redecl (Results 26 - 48 of 48) sorted by null

12

  /external/clang/include/clang/AST/
Redeclarable.h 194 // Sanity check to avoid infinite loop on invalid redecl chain.
197 assert(0 && "Passed first decl twice, invalid redecl chain!");
ASTContext.h     [all...]
  /external/clang/lib/AST/
DeclObjC.cpp 809 ObjCMethodDecl *Redecl = nullptr;
811 Redecl = const_cast<ObjCMethodDecl*>(Ctx.getObjCMethodRedeclaration(this));
812 if (Redecl)
813 return Redecl;
821 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod());
826 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod());
832 Redecl = IFD->getMethod(getSelector(), isInstanceMethod());
838 Redecl = CatD->getMethod(getSelector(), isInstanceMethod());
842 if (!Redecl && isRedeclaration()) {
848 return Redecl ? Redecl : this
    [all...]
Decl.cpp     [all...]
ASTDumper.cpp 780 // If requested, dump the redecl chain for this lookup.
    [all...]
  /external/clang/test/SemaCXX/
anonymous-union.cpp 63 struct Redecl {
extern-c.cpp 81 namespace redecl { namespace in namespace:linkage
function-redecl.cpp 101 // Ensure we correct the redecl of Foo::isGood to Bar::Foo::isGood and not
friend.cpp 301 // PR21851 was a problem where we assumed that when the friend function redecl
cxx1y-deduced-return-type.cpp 328 namespace Redecl {
  /external/clang/lib/Serialization/
ASTWriterDecl.cpp     [all...]
ASTWriter.cpp     [all...]
ASTReader.cpp     [all...]
  /external/bison/tests/
input.at 809 AT_DATA_GRAMMAR([redecl.y],
818 AT_BISON_CHECK([redecl.y], [1], [],
819 [[redecl.y:10.10-22: error: user token number 11259375 redeclaration for HEXADECIMAL_1
820 redecl.y:9.8-16: previous declaration for DECIMAL_1
821 redecl.y:12.10-18: error: user token number 16702650 redeclaration for DECIMAL_2
822 redecl.y:11.10-22: previous declaration for HEXADECIMAL_2
    [all...]
testsuite     [all...]
  /external/clang/lib/Sema/
SemaExceptionSpec.cpp 181 for (auto *Redecl : FD->redecls())
182 Context.adjustExceptionSpec(cast<FunctionDecl>(Redecl), ESI);
    [all...]
SemaExprMember.cpp 657 Sema::RedeclarationKind Redecl;
680 LookupResult R(Q.SemaRef, Q.NameInfo, Q.LookupKind, Q.Redecl);
    [all...]
SemaLookup.cpp 273 assert(Redeclaration && "should only be used for redecl lookup");
    [all...]
SemaDecl.cpp     [all...]
SemaType.cpp     [all...]
SemaExpr.cpp 174 // redecl chain in that case.
176 for (Decl *Redecl = D->getMostRecentDecl(); Redecl && Warn;
177 Redecl = Redecl->getPreviousDecl())
178 if (!Redecl->hasAttr<AvailabilityAttr>() ||
179 Redecl->getAttr<AvailabilityAttr>()->isInherited())
    [all...]
  /external/clang/include/clang/Serialization/
ASTReader.h     [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 964 milliseconds

12