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

1 2 3

  /external/clang/lib/AST/
CXXInheritance.cpp 89 if (getCanonicalDecl() == Base->getCanonicalDecl())
94 const_cast<CXXRecordDecl*>(Base->getCanonicalDecl()),
105 if (getCanonicalDecl() == Base->getCanonicalDecl())
110 const void *BasePtr = static_cast<const void*>(Base->getCanonicalDecl());
118 return Base->getCanonicalDecl() != (const CXXRecordDecl*) OpaqueTarget;
122 return forallBases(BaseIsNot, (void*) Base->getCanonicalDecl());
364 assert(((Decl *)BaseRecord)->getCanonicalDecl() == BaseRecord &&
367 ->getCanonicalDecl() == BaseRecord
    [all...]
DeclCXX.cpp     [all...]
ExprConstant.cpp 814 if (Expected->getCanonicalDecl() != Class->getCanonicalDecl()) {
858 if (LHS.getDecl()->getCanonicalDecl() != RHS.getDecl()->getCanonicalDecl())
    [all...]
Decl.cpp     [all...]
DeclTemplate.cpp 414 Decl *DCanon = D->getCanonicalDecl();
419 if (P->getInstantiatedFromMember()->getCanonicalDecl() == DCanon)
    [all...]
  /external/clang/include/clang/AST/
GlobalDecl.h 51 GlobalDecl getCanonicalDecl() const {
53 CanonGD.Value.setPointer(Value.getPointer()->getCanonicalDecl());
DeclTemplate.h 604 RedeclarableTemplateDecl *getCanonicalDecl() { return getFirstDeclaration(); }
605 const RedeclarableTemplateDecl *getCanonicalDecl() const {
781 FunctionTemplateDecl *getCanonicalDecl() {
783 RedeclarableTemplateDecl::getCanonicalDecl());
785 const FunctionTemplateDecl *getCanonicalDecl() const {
787 RedeclarableTemplateDecl::getCanonicalDecl());
    [all...]
DeclCXX.h 675 virtual CXXRecordDecl *getCanonicalDecl() {
676 return cast<CXXRecordDecl>(RecordDecl::getCanonicalDecl());
678 virtual const CXXRecordDecl *getCanonicalDecl() const {
679 return cast<CXXRecordDecl>(RecordDecl::getCanonicalDecl());
    [all...]
Decl.h 494 NamespaceDecl *getCanonicalDecl() {
497 const NamespaceDecl *getCanonicalDecl() const {
    [all...]
DeclBase.h 665 virtual Decl *getCanonicalDecl() { return this; }
666 const Decl *getCanonicalDecl() const {
667 return const_cast<Decl*>(this)->getCanonicalDecl();
671 bool isCanonicalDecl() const { return getCanonicalDecl() == this; }
884 return D1->getCanonicalDecl() == D2->getCanonicalDecl();
    [all...]
DeclObjC.h 272 virtual ObjCMethodDecl *getCanonicalDecl();
273 const ObjCMethodDecl *getCanonicalDecl() const {
274 return const_cast<ObjCMethodDecl*>(this)->getCanonicalDecl();
    [all...]
  /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);
232 DeclaringClass = DeclaringClass->getCanonicalDecl();
266 assert(Derived->getCanonicalDecl() == Derived);
267 assert(Target->getCanonicalDecl() == Target);
299 RD = RD->getCanonicalDecl();
459 if (Friend == CTD->getCanonicalDecl())
521 FTD = FTD->getCanonicalDecl();
    [all...]
IdentifierResolver.cpp 301 if (Existing->getCanonicalDecl() == New->getCanonicalDecl()) {
SemaTemplateInstantiateDecl.cpp     [all...]
SemaExprMember.cpp 31 if (Bases.count(Record->getCanonicalDecl()))
122 Classes.insert(R->getCanonicalDecl());
159 contextClass = MD->getParent()->getCanonicalDecl();
170 contextClass->getCanonicalDecl() !=
171 R.getNamingClass()->getCanonicalDecl() &&
536 MemberRecord.insert(cast<CXXRecordDecl>(DC)->getCanonicalDecl());
    [all...]
SemaTemplateDeduction.cpp 169 return X->getCanonicalDecl() == Y->getCanonicalDecl();
365 DeducedTemplateArgument NewDeduced(D? D->getCanonicalDecl() : 0);
    [all...]
SemaCXXScopeSpec.cpp 563 OuterDecl->getCanonicalDecl() != SD->getCanonicalDecl() &&
    [all...]
  /external/clang/lib/CodeGen/
CGCXX.cpp 306 MD = MD->getCanonicalDecl();
336 MD = MD->getCanonicalDecl();
369 DD = cast<CXXDestructorDecl>(DD->getCanonicalDecl());
386 DD = cast<CXXDestructorDecl>(DD->getCanonicalDecl());
  /external/clang/tools/libclang/
CIndexHigh.cpp 33 Methods.push_back(D->getCanonicalDecl());
81 D = D->getCanonicalDecl();
CIndexUSRs.cpp 396 D = D->getCanonicalDecl();
490 D = D->getCanonicalDecl();
  /frameworks/compile/slang/
slang_rs_context.cpp 164 ND)->getCanonicalDecl()->getUnderlyingType().getTypePtr();
  /external/clang/include/clang/Sema/
Lookup.h 688 Decls.erase(cast<NamedDecl>(D->getCanonicalDecl()));
Overload.h 763 return Functions.insert(F->getCanonicalDecl());
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 580 // use getCanonicalDecl on Template since it may still be initializing.
693 ID->getCanonicalDecl()->Data = ID->Data;
734 ID->Data = ID->getCanonicalDecl()->Data;
758 PD->getCanonicalDecl()->Data = PD->Data;
775 PD->Data = PD->getCanonicalDecl()->Data;
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
CallEvent.cpp 477 if (MD->getCanonicalDecl() != getDecl()->getCanonicalDecl()) {

Completed in 266 milliseconds

1 2 3