Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/include/llvm/IR/
H A DValue.h168 template <typename UserTy> // UserTy == 'User' or 'const User'
176 using value_type = UserTy *;
201 UserTy *operator*() const {
205 UserTy *operator->() const { return operator*(); }
207 operator user_iterator_impl<const UserTy>() const {
208 return user_iterator_impl<const UserTy>(*UI);
/llvm-project-15.0.7/llvm/lib/Transforms/Scalar/
H A DSROA.cpp1152 Type *UserTy = nullptr; in findCommonType() local
1154 UserTy = LI->getType(); in findCommonType()
1156 UserTy = SI->getValueOperand()->getType(); in findCommonType()
1159 if (IntegerType *UserITy = dyn_cast_or_null<IntegerType>(UserTy)) { in findCommonType()
1176 if (!UserTy || (Ty && Ty != UserTy)) in findCommonType()
1179 Ty = UserTy; in findCommonType()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaChecking.cpp9948 while (const TypedefType *UserTy = TyTy->getAs<TypedefType>()) { in shouldNotPrintDirectly() local
9949 StringRef Name = UserTy->getDecl()->getName(); in shouldNotPrintDirectly()
9961 TyTy = UserTy->desugar(); in shouldNotPrintDirectly()