Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/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);
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DSROA.cpp1478 Type *UserTy = nullptr; in findCommonType() local
1480 UserTy = LI->getType(); in findCommonType()
1482 UserTy = SI->getValueOperand()->getType(); in findCommonType()
1485 if (IntegerType *UserITy = dyn_cast_or_null<IntegerType>(UserTy)) { in findCommonType()
1502 if (!UserTy || (Ty && Ty != UserTy)) in findCommonType()
1505 Ty = UserTy; in findCommonType()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp7149 while (const TypedefType *UserTy = TyTy->getAs<TypedefType>()) { in shouldNotPrintDirectly() local
7150 StringRef Name = UserTy->getDecl()->getName(); in shouldNotPrintDirectly()
7162 TyTy = UserTy->desugar(); in shouldNotPrintDirectly()