Home
last modified time | relevance | path

Searched refs:UserTy (Results 1 – 3 of 3) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/IR/
DValue.h169 template <typename UserTy> // UserTy == 'User' or 'const User'
177 using value_type = UserTy *;
202 UserTy *operator*() const {
206 UserTy *operator->() const { return operator*(); }
208 operator user_iterator_impl<const UserTy>() const {
209 return user_iterator_impl<const UserTy>(*UI);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
DSROA.cpp1148 Type *UserTy = nullptr; in findCommonType() local
1150 UserTy = LI->getType(); in findCommonType()
1152 UserTy = SI->getValueOperand()->getType(); in findCommonType()
1155 if (IntegerType *UserITy = dyn_cast_or_null<IntegerType>(UserTy)) { in findCommonType()
1172 if (!UserTy || (Ty && Ty != UserTy)) in findCommonType()
1175 Ty = UserTy; in findCommonType()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
DSemaChecking.cpp8962 while (const TypedefType *UserTy = TyTy->getAs<TypedefType>()) { in shouldNotPrintDirectly() local
8963 StringRef Name = UserTy->getDecl()->getName(); in shouldNotPrintDirectly()
8975 TyTy = UserTy->desugar(); in shouldNotPrintDirectly()