Home
last modified time | relevance | path

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

/external/llvm/include/llvm/IR/
DValue.h151 template <typename UserTy> // UserTy == 'User' or 'const User'
153 : public std::iterator<std::forward_iterator_tag, UserTy *> {
178 UserTy *operator*() const {
182 UserTy *operator->() const { return operator*(); }
184 operator user_iterator_impl<const UserTy>() const {
185 return user_iterator_impl<const UserTy>(*UI);
DCallSite.h43 typename UserTy = const User,
/external/llvm/lib/Transforms/Scalar/
DSROA.cpp1089 Type *UserTy = nullptr; in findCommonType() local
1091 UserTy = LI->getType(); in findCommonType()
1093 UserTy = SI->getValueOperand()->getType(); in findCommonType()
1096 if (IntegerType *UserITy = dyn_cast_or_null<IntegerType>(UserTy)) { in findCommonType()
1113 if (!UserTy || (Ty && Ty != UserTy)) in findCommonType()
1116 Ty = UserTy; in findCommonType()
/external/clang/lib/Sema/
DSemaChecking.cpp4176 while (const TypedefType *UserTy = TyTy->getAs<TypedefType>()) { in shouldNotPrintDirectly() local
4177 StringRef Name = UserTy->getDecl()->getName(); in shouldNotPrintDirectly()
4188 TyTy = UserTy->desugar(); in shouldNotPrintDirectly()