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

1 2 3 4

  /external/clang/lib/AST/
CXXInheritance.cpp 84 if (getCanonicalDecl() == Base->getCanonicalDecl())
89 const_cast<CXXRecordDecl*>(Base->getCanonicalDecl()),
100 if (getCanonicalDecl() == Base->getCanonicalDecl())
105 const void *BasePtr = static_cast<const void*>(Base->getCanonicalDecl());
113 return Base->getCanonicalDecl() != (const CXXRecordDecl*) OpaqueTarget;
118 const_cast<CXXRecordDecl *>(Base->getCanonicalDecl()));
369 assert(((Decl *)BaseRecord)->getCanonicalDecl() == BaseRecord &&
372 ->getCanonicalDecl() == BaseRecord
    [all...]
DeclCXX.cpp     [all...]
ASTDiagnostic.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
DirectIvarAssignment.cpp 151 MethodCrawler MC(IvarToPropMap, M->getCanonicalDecl(), InterD, BR, this,
194 if (SetterMethod && SetterMethod->getCanonicalDecl() == MD)
197 if (GetterMethod && GetterMethod->getCanonicalDecl() == MD)
IvarInvalidationChecker.cpp 254 cast<ObjCMethodDecl>(MDI->getCanonicalDecl()));
295 const ObjCIvarDecl *I = cast<ObjCIvarDecl>(Iv->getCanonicalDecl());
400 PD = cast<ObjCPropertyDecl>(PD->getCanonicalDecl());
407 SetterD = cast<ObjCMethodDecl>(SetterD->getCanonicalDecl());
413 GetterD = cast<ObjCMethodDecl>(GetterD->getCanonicalDecl());
605 markInvalidated(cast<ObjCIvarDecl>(D->getCanonicalDecl()));
612 MD = cast<ObjCMethodDecl>(MD->getCanonicalDecl());
625 PD = cast<ObjCPropertyDecl>(PD->getCanonicalDecl());
636 MD = cast<ObjCMethodDecl>(MD->getCanonicalDecl());
708 MD = cast<ObjCMethodDecl>(MD->getCanonicalDecl());
    [all...]
NoReturnFunctionChecker.cpp 91 MD = MD->getCanonicalDecl();
  /external/clang/include/clang/AST/
GlobalDecl.h 52 GlobalDecl getCanonicalDecl() const {
54 CanonGD.Value.setPointer(Value.getPointer()->getCanonicalDecl());
DeclTemplate.h 635 RedeclarableTemplateDecl *getCanonicalDecl() override {
638 const RedeclarableTemplateDecl *getCanonicalDecl() const {
823 FunctionTemplateDecl *getCanonicalDecl() override {
825 RedeclarableTemplateDecl::getCanonicalDecl());
827 const FunctionTemplateDecl *getCanonicalDecl() const {
829 RedeclarableTemplateDecl::getCanonicalDecl());
    [all...]
DeclCXX.h 645 CXXRecordDecl *getCanonicalDecl() override {
646 return cast<CXXRecordDecl>(RecordDecl::getCanonicalDecl());
648 virtual const CXXRecordDecl *getCanonicalDecl() const {
649 return cast<CXXRecordDecl>(RecordDecl::getCanonicalDecl());
    [all...]
Decl.h 437 NamespaceDecl *getCanonicalDecl() override {
440 const NamespaceDecl *getCanonicalDecl() const {
    [all...]
DeclBase.h 705 virtual Decl *getCanonicalDecl() { return this; }
706 const Decl *getCanonicalDecl() const {
707 return const_cast<Decl*>(this)->getCanonicalDecl();
711 bool isCanonicalDecl() const { return getCanonicalDecl() == this; }
    [all...]
DeclObjC.h 264 ObjCMethodDecl *getCanonicalDecl() override;
265 const ObjCMethodDecl *getCanonicalDecl() const {
266 return const_cast<ObjCMethodDecl*>(this)->getCanonicalDecl();
    [all...]
  /external/clang/lib/CodeGen/
CGRecordLayout.h 186 FD = FD->getCanonicalDecl();
205 FD = FD->getCanonicalDecl();
ModuleBuilder.cpp 56 const Decl *D = Result.getCanonicalDecl().getDecl();
CGDebugInfo.cpp     [all...]
  /external/clang/include/clang/Sema/
SemaInternal.h 65 SourceLocation &old = SemaRef.UndefinedButUsed[Var->getCanonicalDecl()];
  /external/clang/lib/Sema/
SemaAccess.cpp 108 Records.push_back(Record->getCanonicalDecl());
112 Functions.push_back(Function->getCanonicalDecl());
128 R = R->getCanonicalDecl();
212 InstanceContext = (IC ? cast<CXXRecordDecl>(IC)->getCanonicalDecl()
227 return namingClass->getCanonicalDecl();
242 DeclaringClass = DeclaringClass->getCanonicalDecl();
276 assert(Derived->getCanonicalDecl() == Derived);
277 assert(Target->getCanonicalDecl() == Target);
307 RD = RD->getCanonicalDecl();
464 if (Friend == CTD->getCanonicalDecl())
    [all...]
IdentifierResolver.cpp 265 if (Existing->getCanonicalDecl() == New->getCanonicalDecl()) {
SemaExprMember.cpp 31 return !Bases.count(Base->getCanonicalDecl());
117 Classes.insert(R->getCanonicalDecl());
167 contextClass = MD->getParent()->getCanonicalDecl();
178 contextClass->getCanonicalDecl() !=
179 R.getNamingClass()->getCanonicalDecl()) {
184 Classes.insert(R.getNamingClass()->getCanonicalDecl());
538 CXXRecordDecl *MemberRecord = cast<CXXRecordDecl>(DC)->getCanonicalDecl();
539 if (BaseRecord->getCanonicalDecl() == MemberRecord ||
    [all...]
SemaTemplateInstantiateDecl.cpp     [all...]
  /external/clang/lib/Analysis/
BodyFarm.cpp 357 D = D->getCanonicalDecl();
453 D = D->getCanonicalDecl();
  /external/clang/lib/StaticAnalyzer/Core/
Store.cpp 243 return Expected->getCanonicalDecl() == RD->getCanonicalDecl();
  /frameworks/compile/slang/
slang_rs_context.cpp 147 ND)->getCanonicalDecl()->getUnderlyingType().getTypePtr();
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 520 if (EnumDecl *&OldDef = Reader.EnumDefinitions[ED->getCanonicalDecl()]) {
658 // use getCanonicalDecl on Template since it may still be initializing.
777 ID->getCanonicalDecl()->Data = ID->Data;
819 ID->Data = ID->getCanonicalDecl()->Data;
    [all...]
  /external/clang/lib/Index/
USRGeneration.cpp 407 D = D->getCanonicalDecl();
501 D = D->getCanonicalDecl();

Completed in 806 milliseconds

1 2 3 4