HomeSort by: relevance | last modified time | path
    Searched refs:getCanonicalDecl (Results 1 - 25 of 106) sorted by relevancy

1 2 3 4 5

  /src/external/apache2/llvm/dist/clang/lib/AST/
CXXInheritance.cpp 76 if (getCanonicalDecl() == Base->getCanonicalDecl())
81 const CXXRecordDecl *BaseDecl = Base->getCanonicalDecl();
96 if (getCanonicalDecl() == Base->getCanonicalDecl())
101 const CXXRecordDecl *BaseDecl = Base->getCanonicalDecl();
110 const CXXRecordDecl *TargetDecl = Base->getCanonicalDecl();
112 return Base->getCanonicalDecl() != TargetDecl;
366 assert(BaseRecord->getCanonicalDecl() == BaseRecord &&
369 ->getCanonicalDecl() == BaseRecord
    [all...]
MicrosoftCXXABI.cpp 134 TD = TD->getCanonicalDecl();
135 DD = DD->getCanonicalDecl();
143 const_cast<TagDecl *>(TD->getCanonicalDecl()));
148 TD = TD->getCanonicalDecl();
149 DD = cast<DeclaratorDecl>(DD->getCanonicalDecl());
157 const_cast<TagDecl *>(TD->getCanonicalDecl()));
ComparisonCategories.cpp 81 DeclContextLookupResult Lookup = Record->getCanonicalDecl()->lookup(
133 const auto *CanonRD = RD->getCanonicalDecl();
136 if (CanonRD == Info.Record->getCanonicalDecl())
APValue.cpp 43 : Ptr(P ? cast<ValueDecl>(P->getCanonicalDecl()) : nullptr), Local{I, V} {}
149 BaseOrMember.setPointer(D->getCanonicalDecl());
491 ID.AddPointer(getAddrLabelDiffLHS()->getLabel()->getCanonicalDecl());
492 ID.AddPointer(getAddrLabelDiffRHS()->getLabel()->getCanonicalDecl());
972 Field ? Field->getCanonicalDecl() : nullptr;
1021 Member ? cast<ValueDecl>(Member->getCanonicalDecl()) : nullptr);
1032 InternalPath[I] = Path[I]->getCanonicalDecl();
Decl.cpp 608 cast<NamedDecl>(D->getCanonicalDecl())))
638 if (getStorageClass(D->getCanonicalDecl()) == SC_Static) {
1255 if (Function->getCanonicalDecl()->getStorageClass() == SC_Static)
1778 if (getCanonicalDecl() != OldD->getCanonicalDecl())
2125 VarDecl *VarDecl::getCanonicalDecl() { return getFirstDecl(); }
2147 !(getCanonicalDecl()->isInline() &&
2148 getCanonicalDecl()->isConstexpr()) &&
3206 if (getCanonicalDecl()->getStorageClass() == SC_Static)
3271 FunctionDecl *FunctionDecl::getCanonicalDecl() { return getFirstDecl();
    [all...]
ASTDiagnostic.cpp 1169 FromDecl->getCanonicalDecl() == ToDecl->getCanonicalDecl());
1302 FromValueDecl->getCanonicalDecl() == ToValueDecl->getCanonicalDecl();
1374 return FromTST->getTemplateName().getAsTemplateDecl()->getCanonicalDecl() ==
1375 ToTST->getTemplateName().getAsTemplateDecl()->getCanonicalDecl();
  /src/external/apache2/llvm/dist/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 251 cast<ObjCMethodDecl>(MDI->getCanonicalDecl()));
290 const ObjCIvarDecl *I = cast<ObjCIvarDecl>(Iv->getCanonicalDecl());
397 PD = cast<ObjCPropertyDecl>(PD->getCanonicalDecl());
404 SetterD = SetterD->getCanonicalDecl();
410 GetterD = GetterD->getCanonicalDecl();
601 markInvalidated(cast<ObjCIvarDecl>(D->getCanonicalDecl()));
608 MD = MD->getCanonicalDecl();
621 PD = cast<ObjCPropertyDecl>(PD->getCanonicalDecl());
632 MD = MD->getCanonicalDecl();
704 MD = MD->getCanonicalDecl();
    [all...]
NoReturnFunctionChecker.cpp 91 MD = MD->getCanonicalDecl();
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGRecordLayout.h 198 FD = FD->getCanonicalDecl();
217 FD = FD->getCanonicalDecl();
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclCXX.h 493 CXXRecordDecl *getCanonicalDecl() override {
494 return cast<CXXRecordDecl>(RecordDecl::getCanonicalDecl());
497 const CXXRecordDecl *getCanonicalDecl() const {
498 return const_cast<CXXRecordDecl*>(this)->getCanonicalDecl();
1992 CXXMethodDecl *CD = const_cast<CXXMethodDecl*>(this)->getCanonicalDecl();
2032 CXXMethodDecl *getCanonicalDecl() override {
2033 return cast<CXXMethodDecl>(FunctionDecl::getCanonicalDecl());
2035 const CXXMethodDecl *getCanonicalDecl() const {
2036 return const_cast<CXXMethodDecl*>(this)->getCanonicalDecl();
2468 *getCanonicalDecl()->getTrailingObjects<ExplicitSpecifier>() = ES
    [all...]
DeclTemplate.h 860 RedeclarableTemplateDecl *getCanonicalDecl() override {
863 const RedeclarableTemplateDecl *getCanonicalDecl() const {
1044 FunctionTemplateDecl *getCanonicalDecl() override {
1046 RedeclarableTemplateDecl::getCanonicalDecl());
1048 const FunctionTemplateDecl *getCanonicalDecl() const {
1050 RedeclarableTemplateDecl::getCanonicalDecl());
2320 ClassTemplateDecl *getCanonicalDecl() override {
2322 RedeclarableTemplateDecl::getCanonicalDecl());
2324 const ClassTemplateDecl *getCanonicalDecl() const {
2326 RedeclarableTemplateDecl::getCanonicalDecl());
    [all...]
GlobalDecl.h 93 GlobalDecl getCanonicalDecl() const {
95 CanonGD.Value.setPointer(Value.getPointer()->getCanonicalDecl());
Decl.h 618 NamespaceDecl *getCanonicalDecl() override {
621 const NamespaceDecl *getCanonicalDecl() const {
1177 VarDecl *getCanonicalDecl() override;
1178 const VarDecl *getCanonicalDecl() const {
1179 return const_cast<VarDecl*>(this)->getCanonicalDecl();
2204 DeclAsWritten->getCanonicalDecl()->isDefaulted());
2308 return getCanonicalDecl()->FunctionDeclBits.IsDeleted;
2405 return getCanonicalDecl()->FunctionDeclBits.IsMultiVersion;
2411 getCanonicalDecl()->FunctionDeclBits.IsMultiVersion = V;
2444 FunctionDecl *getCanonicalDecl() override
    [all...]
DeclBase.h 578 void setIsUsed() { getCanonicalDecl()->Used = true; }
901 virtual Decl *getCanonicalDecl() { return this; }
902 const Decl *getCanonicalDecl() const {
903 return const_cast<Decl*>(this)->getCanonicalDecl();
907 bool isCanonicalDecl() const { return getCanonicalDecl() == this; }
1205 return D1->getCanonicalDecl() == D2->getCanonicalDecl();
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaAccess.cpp 122 Records.push_back(Record->getCanonicalDecl());
126 Functions.push_back(Function->getCanonicalDecl());
142 R = R->getCanonicalDecl();
230 InstanceContext = (IC ? cast<CXXRecordDecl>(IC)->getCanonicalDecl()
245 return namingClass->getCanonicalDecl();
260 DeclaringClass = DeclaringClass->getCanonicalDecl();
294 assert(Derived->getCanonicalDecl() == Derived);
295 assert(Target->getCanonicalDecl() == Target);
326 RD = RD->getCanonicalDecl();
477 if (Friend == CTD->getCanonicalDecl())
    [all...]
IdentifierResolver.cpp 272 if (Existing->getCanonicalDecl() == New->getCanonicalDecl()) {
SemaExprMember.cpp 35 return !Bases.count(Base->getCanonicalDecl());
113 Classes.insert(R->getCanonicalDecl());
164 contextClass = MD->getParent()->getCanonicalDecl();
175 contextClass->getCanonicalDecl() !=
176 R.getNamingClass()->getCanonicalDecl()) {
181 Classes.insert(R.getNamingClass()->getCanonicalDecl());
573 CXXRecordDecl *MemberRecord = cast<CXXRecordDecl>(DC)->getCanonicalDecl();
574 if (BaseRecord->getCanonicalDecl() == MemberRecord ||
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderDecl.cpp 530 D->getCanonicalDecl()->Used |= IsDeclMarkedUsed;
761 EnumDecl *&OldDef = Reader.EnumDefinitions[ED->getCanonicalDecl()];
765 for (auto *D : merged_redecls(ED->getCanonicalDecl())) {
975 // use getCanonicalDecl on Template since it may still be initializing.
1165 ObjCInterfaceDecl *Canon = ID->getCanonicalDecl();
1174 ID->getCanonicalDecl()->Data = ID->Data;
1186 ID->Data = ID->getCanonicalDecl()->Data;
1230 ObjCProtocolDecl *Canon = PD->getCanonicalDecl();
1239 PD->getCanonicalDecl()->Data = PD->Data;
1244 PD->Data = PD->getCanonicalDecl()->Data
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Index/
IndexingContext.cpp 301 static const Decl *getCanonicalDecl(const Decl *D) {
302 D = D->getCanonicalDecl();
414 D = getCanonicalDecl(D);
417 Parent = getCanonicalDecl(Parent);
450 Rel.RelatedSymbol->getCanonicalDecl()));
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
ThreadSafetyCommon.cpp 274 const auto *VD = cast<ValueDecl>(DRE->getDecl()->getCanonicalDecl());
281 const Decl *Canonical = Ctx->AttrDecl->getCanonicalDecl();
283 ? (cast<FunctionDecl>(D)->getCanonicalDecl() == Canonical)
284 : (cast<ObjCMethodDecl>(D)->getCanonicalDecl() == Canonical)) {
293 ? cast<FunctionDecl>(D)->getCanonicalDecl()->getParamDecl(I)
294 : cast<ObjCMethodDecl>(D)->getCanonicalDecl()->getParamDecl(I);
335 D = D->getCanonicalDecl();
350 const auto *D = cast<ValueDecl>(ME->getMemberDecl()->getCanonicalDecl());
365 const auto *D = cast<ObjCIvarDecl>(IVRE->getDecl()->getCanonicalDecl());
CallGraph.cpp 205 F = F->getCanonicalDecl();
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
LoopUnrolling.cpp 184 if (D->getCanonicalDecl() == VD)
238 return !isPossiblyEscaped(CounterVar->getCanonicalDecl(), Pred);
Store.cpp 246 return Expected->getCanonicalDecl() == RD->getCanonicalDecl();
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CIndexHigh.cpp 34 Methods.push_back(D->getCanonicalDecl());
82 D = D->getCanonicalDecl();

Completed in 56 milliseconds

1 2 3 4 5