Home
last modified time | relevance | path

Searched refs:TypedefTy (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/ExtractAPI/
H A DTypedefUnderlyingTypeResolver.cpp25 const TypedefType *TypedefTy = Type->getAs<TypedefType>(); in getUnderlyingTypeDecl() local
26 if (TypedefTy) in getUnderlyingTypeDecl()
27 TypeDecl = TypedefTy->getDecl(); in getUnderlyingTypeDecl()
35 if (TypeDecl && TypedefTy) { in getUnderlyingTypeDecl()
39 const TypedefNameDecl *TypedefDecl = TypedefTy->getDecl(); in getUnderlyingTypeDecl()
53 const TypedefType *TypedefTy = Type->getAs<TypedefType>(); in getSymbolReferenceForType() local
57 if (!TypedefTy) in getSymbolReferenceForType()
H A DDeclarationFragments.cpp304 if (const TypedefType *TypedefTy = dyn_cast<TypedefType>(T)) { in getFragmentsForType() local
305 const TypedefNameDecl *Decl = TypedefTy->getDecl(); in getFragmentsForType()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp8379 if (const TypedefType* TypedefTy = CurType->getAs<TypedefType>()) { in HandleOpenCLAccessAttr() local
8380 QualType BaseTy = TypedefTy->desugar(); in HandleOpenCLAccessAttr()
8384 if (TypedefTy->getDecl()->hasAttr<OpenCLAccessAttr>()) { in HandleOpenCLAccessAttr()
8386 TypedefTy->getDecl()->getAttr<OpenCLAccessAttr>(); in HandleOpenCLAccessAttr()
8415 S.Diag(TypedefTy->getDecl()->getBeginLoc(), in HandleOpenCLAccessAttr()
H A DSemaChecking.cpp7516 if (const auto *TypedefTy = ExprTy->getAs<TypedefType>()) in checkFormatExpr() local
7517 Name = TypedefTy->getDecl()->getName(); in checkFormatExpr()