Home
last modified time | relevance | path

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

/minix3/external/bsd/llvm/dist/llvm/include/llvm/IR/
H A DValue.h148 template <typename UserTy> // UserTy == 'User' or 'const User'
150 : public std::iterator<std::forward_iterator_tag, UserTy *, ptrdiff_t> {
151 typedef std::iterator<std::forward_iterator_tag, UserTy *, ptrdiff_t> super;
180 UserTy *operator*() const {
184 UserTy *operator->() const { return operator*(); }
186 operator user_iterator_impl<const UserTy>() const {
187 return user_iterator_impl<const UserTy>(*UI);
H A DCallSite.h41 typename UserTy = const User,
/minix3/external/bsd/llvm/dist/llvm/lib/Transforms/Scalar/
H A DSROA.cpp1301 Type *UserTy = nullptr; in INITIALIZE_PASS_DEPENDENCY() local
1303 UserTy = LI->getType(); in INITIALIZE_PASS_DEPENDENCY()
1305 UserTy = SI->getValueOperand()->getType(); in INITIALIZE_PASS_DEPENDENCY()
1308 if (IntegerType *UserITy = dyn_cast_or_null<IntegerType>(UserTy)) { in INITIALIZE_PASS_DEPENDENCY()
1325 if (!UserTy || (Ty && Ty != UserTy)) in INITIALIZE_PASS_DEPENDENCY()
1328 Ty = UserTy; in INITIALIZE_PASS_DEPENDENCY()
/minix3/external/bsd/llvm/dist/clang/lib/Sema/
H A DSemaChecking.cpp3497 while (const TypedefType *UserTy = TyTy->getAs<TypedefType>()) { in shouldNotPrintDirectly() local
3498 StringRef Name = UserTy->getDecl()->getName(); in shouldNotPrintDirectly()
3509 TyTy = UserTy->desugar(); in shouldNotPrintDirectly()