Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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);
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DSROA.cpp1242 Type *UserTy = nullptr; in findCommonType() local
1244 UserTy = LI->getType(); in findCommonType()
1246 UserTy = SI->getValueOperand()->getType(); in findCommonType()
1249 if (IntegerType *UserITy = dyn_cast_or_null<IntegerType>(UserTy)) { in findCommonType()
1266 if (!UserTy || (Ty && Ty != UserTy)) in findCommonType()
1269 Ty = UserTy; in findCommonType()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaChecking.cpp10245 while (const TypedefType *UserTy = TyTy->getAs<TypedefType>()) { in shouldNotPrintDirectly() local
10246 StringRef Name = UserTy->getDecl()->getName(); in shouldNotPrintDirectly()
10258 TyTy = UserTy->desugar(); in shouldNotPrintDirectly()