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 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...]
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...]
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 768 ObjCMethodDecl *ObjCMethodDecl::getCanonicalDecl() {
    [all...]
Decl.cpp 614 if (Function->getCanonicalDecl()->getStorageClass() == SC_Static)
    [all...]

Completed in 86 milliseconds