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

1 2 3

  /external/clang/lib/AST/
CXXInheritance.cpp 88 if (getCanonicalDecl() == Base->getCanonicalDecl())
93 const_cast<CXXRecordDecl*>(Base->getCanonicalDecl()),
104 if (getCanonicalDecl() == Base->getCanonicalDecl())
109 const void *BasePtr = static_cast<const void*>(Base->getCanonicalDecl());
117 return Base->getCanonicalDecl() != (const CXXRecordDecl*) OpaqueTarget;
122 const_cast<CXXRecordDecl *>(Base->getCanonicalDecl()));
377 assert(((Decl *)BaseRecord)->getCanonicalDecl() == BaseRecord &&
380 ->getCanonicalDecl() == BaseRecord
    [all...]
ASTDiagnostic.cpp     [all...]
DeclCXX.cpp     [all...]
DeclTemplate.cpp 428 Decl *DCanon = D->getCanonicalDecl();
433 if (P->getInstantiatedFromMember()->getCanonicalDecl() == DCanon)
    [all...]
  /external/clang/include/clang/AST/
GlobalDecl.h 52 GlobalDecl getCanonicalDecl() const {
54 CanonGD.Value.setPointer(Value.getPointer()->getCanonicalDecl());
DeclTemplate.h 634 RedeclarableTemplateDecl *getCanonicalDecl() { return getFirstDeclaration(); }
635 const RedeclarableTemplateDecl *getCanonicalDecl() const {
815 FunctionTemplateDecl *getCanonicalDecl() {
817 RedeclarableTemplateDecl::getCanonicalDecl());
819 const FunctionTemplateDecl *getCanonicalDecl() const {
821 RedeclarableTemplateDecl::getCanonicalDecl());
    [all...]
DeclCXX.h 633 virtual CXXRecordDecl *getCanonicalDecl() {
634 return cast<CXXRecordDecl>(RecordDecl::getCanonicalDecl());
636 virtual const CXXRecordDecl *getCanonicalDecl() const {
637 return cast<CXXRecordDecl>(RecordDecl::getCanonicalDecl());
    [all...]
Decl.h 429 NamespaceDecl *getCanonicalDecl() {
432 const NamespaceDecl *getCanonicalDecl() const {
899 virtual VarDecl *getCanonicalDecl();
900 const VarDecl *getCanonicalDecl() const {
901 return const_cast<VarDecl*>(this)->getCanonicalDecl();
    [all...]
DeclBase.h 692 virtual Decl *getCanonicalDecl() { return this; }
693 const Decl *getCanonicalDecl() const {
694 return const_cast<Decl*>(this)->getCanonicalDecl();
698 bool isCanonicalDecl() const { return getCanonicalDecl() == this; }
918 return D1->getCanonicalDecl() == D2->getCanonicalDecl();
    [all...]
DeclObjC.h 274 virtual ObjCMethodDecl *getCanonicalDecl();
275 const ObjCMethodDecl *getCanonicalDecl() const {
276 return const_cast<ObjCMethodDecl*>(this)->getCanonicalDecl();
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
IvarInvalidationChecker.cpp 256 cast<ObjCMethodDecl>(MDI->getCanonicalDecl()));
307 const ObjCIvarDecl *I = cast<ObjCIvarDecl>(Iv->getCanonicalDecl());
412 PD = cast<ObjCPropertyDecl>(PD->getCanonicalDecl());
419 SetterD = cast<ObjCMethodDecl>(SetterD->getCanonicalDecl());
425 GetterD = cast<ObjCMethodDecl>(GetterD->getCanonicalDecl());
615 markInvalidated(cast<ObjCIvarDecl>(D->getCanonicalDecl()));
622 MD = cast<ObjCMethodDecl>(MD->getCanonicalDecl());
635 PD = cast<ObjCPropertyDecl>(PD->getCanonicalDecl());
646 MD = cast<ObjCMethodDecl>(MD->getCanonicalDecl());
718 MD = cast<ObjCMethodDecl>(MD->getCanonicalDecl());
    [all...]
NoReturnFunctionChecker.cpp 104 MD = MD->getCanonicalDecl();
DirectIvarAssignment.cpp 161 MethodCrawler MC(IvarToPropMap, M->getCanonicalDecl(), InterD, BR, DCtx);
207 if (SetterMethod && SetterMethod->getCanonicalDecl() == MD)
210 if (GetterMethod && GetterMethod->getCanonicalDecl() == MD)
  /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() : 0);
226 return namingClass->getCanonicalDecl();
241 DeclaringClass = DeclaringClass->getCanonicalDecl();
275 assert(Derived->getCanonicalDecl() == Derived);
276 assert(Target->getCanonicalDecl() == Target);
308 RD = RD->getCanonicalDecl();
468 if (Friend == CTD->getCanonicalDecl())
    [all...]
IdentifierResolver.cpp 267 if (Existing->getCanonicalDecl() == New->getCanonicalDecl()) {
SemaExprMember.cpp 30 return !Bases.count(Base->getCanonicalDecl());
116 Classes.insert(R->getCanonicalDecl());
166 contextClass = MD->getParent()->getCanonicalDecl();
177 contextClass->getCanonicalDecl() !=
178 R.getNamingClass()->getCanonicalDecl()) {
183 Classes.insert(R.getNamingClass()->getCanonicalDecl());
545 CXXRecordDecl *MemberRecord = cast<CXXRecordDecl>(DC)->getCanonicalDecl();
546 if (BaseRecord->getCanonicalDecl() == MemberRecord ||
    [all...]
SemaTemplateInstantiateDecl.cpp     [all...]
  /external/clang/lib/CodeGen/
CGCXX.cpp 278 GD = GD.getCanonicalDecl();
292 GD = GD.getCanonicalDecl();
CGDebugInfo.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
Store.cpp 243 return Expected->getCanonicalDecl() == RD->getCanonicalDecl();
  /external/clang/tools/libclang/
CIndexHigh.cpp 35 Methods.push_back(D->getCanonicalDecl());
83 D = D->getCanonicalDecl();
  /frameworks/compile/slang/
slang_rs_context.cpp 166 ND)->getCanonicalDecl()->getUnderlyingType().getTypePtr();
  /external/clang/include/clang/Sema/
Lookup.h 704 Decls.erase(cast<NamedDecl>(D->getCanonicalDecl()));
  /external/clang/lib/Analysis/
BodyFarm.cpp 345 D = D->getCanonicalDecl();
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 607 // use getCanonicalDecl on Template since it may still be initializing.
725 ID->getCanonicalDecl()->Data = ID->Data;
766 ID->Data = ID->getCanonicalDecl()->Data;
790 PD->getCanonicalDecl()->Data = PD->Data;
807 PD->Data = PD->getCanonicalDecl()->Data;
    [all...]

Completed in 350 milliseconds

1 2 3