Home
last modified time | relevance | path

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

/external/llvm/include/llvm/IR/
DValue.h143 template <typename UserTy> // UserTy == 'User' or 'const User'
145 : public std::iterator<std::forward_iterator_tag, UserTy *> {
170 UserTy *operator*() const {
174 UserTy *operator->() const { return operator*(); }
176 operator user_iterator_impl<const UserTy>() const {
177 return user_iterator_impl<const UserTy>(*UI);
DCallSite.h41 typename UserTy = const User,
/external/llvm/lib/Transforms/Scalar/
DSROA.cpp1303 Type *UserTy = nullptr; in INITIALIZE_PASS_DEPENDENCY() local
1305 UserTy = LI->getType(); in INITIALIZE_PASS_DEPENDENCY()
1307 UserTy = SI->getValueOperand()->getType(); in INITIALIZE_PASS_DEPENDENCY()
1310 if (IntegerType *UserITy = dyn_cast_or_null<IntegerType>(UserTy)) { in INITIALIZE_PASS_DEPENDENCY()
1327 if (!UserTy || (Ty && Ty != UserTy)) in INITIALIZE_PASS_DEPENDENCY()
1330 Ty = UserTy; in INITIALIZE_PASS_DEPENDENCY()
/external/clang/lib/Sema/
DSemaChecking.cpp3701 while (const TypedefType *UserTy = TyTy->getAs<TypedefType>()) { in shouldNotPrintDirectly() local
3702 StringRef Name = UserTy->getDecl()->getName(); in shouldNotPrintDirectly()
3713 TyTy = UserTy->desugar(); in shouldNotPrintDirectly()