HomeSort by relevance Sort by last modified time
    Searched defs:getCanonicalDecl (Results 1 - 8 of 8) sorted by null

  /external/clang/include/clang/AST/
GlobalDecl.h 52 GlobalDecl getCanonicalDecl() const {
54 CanonGD.Value.setPointer(Value.getPointer()->getCanonicalDecl());
Decl.h 497 NamespaceDecl *getCanonicalDecl() override {
500 const NamespaceDecl *getCanonicalDecl() const {
    [all...]
DeclBase.h 748 virtual Decl *getCanonicalDecl() { return this; }
749 const Decl *getCanonicalDecl() const {
750 return const_cast<Decl*>(this)->getCanonicalDecl();
754 bool isCanonicalDecl() const { return getCanonicalDecl() == this; }
    [all...]
DeclTemplate.h 718 RedeclarableTemplateDecl *getCanonicalDecl() override {
721 const RedeclarableTemplateDecl *getCanonicalDecl() const {
    [all...]
DeclCXX.h 651 CXXRecordDecl *getCanonicalDecl() override {
652 return cast<CXXRecordDecl>(RecordDecl::getCanonicalDecl());
654 const CXXRecordDecl *getCanonicalDecl() const {
655 return const_cast<CXXRecordDecl*>(this)->getCanonicalDecl();
    [all...]
DeclObjC.h 264 ObjCMethodDecl *getCanonicalDecl() override;
265 const ObjCMethodDecl *getCanonicalDecl() const {
266 return const_cast<ObjCMethodDecl*>(this)->getCanonicalDecl();
    [all...]
  /external/clang/lib/AST/
DeclObjC.cpp 851 ObjCMethodDecl *ObjCMethodDecl::getCanonicalDecl() {
    [all...]
Decl.cpp 625 if (Function->getCanonicalDecl()->getStorageClass() == SC_Static)
    [all...]

Completed in 395 milliseconds