Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/include/llvm/
DUse.h165 template<typename UserTy> // UserTy == 'User' or 'const User'
167 UserTy*, ptrdiff_t> {
168 typedef std::iterator<std::forward_iterator_tag, UserTy*, ptrdiff_t> super;
169 typedef value_use_iterator<UserTy> _Self;
202 UserTy *operator*() const {
207 UserTy *operator->() const { return operator*(); }
DUser.h168 template<typename UserTy>
169 unsigned value_use_iterator<UserTy>::getOperandNo() const {
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
DValue.h157 template <typename UserTy> // UserTy == 'User' or 'const User'
159 : public std::iterator<std::forward_iterator_tag, UserTy *> {
185 UserTy *operator*() const {
189 UserTy *operator->() const { return operator*(); }
191 operator user_iterator_impl<const UserTy>() const {
192 return user_iterator_impl<const UserTy>(*UI);
/external/llvm/include/llvm/IR/
DValue.h155 template <typename UserTy> // UserTy == 'User' or 'const User'
157 : public std::iterator<std::forward_iterator_tag, UserTy *> {
182 UserTy *operator*() const {
186 UserTy *operator->() const { return operator*(); }
188 operator user_iterator_impl<const UserTy>() const {
189 return user_iterator_impl<const UserTy>(*UI);
DCallSite.h43 typename UserTy = const User,
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DValue.h163 template <typename UserTy> // UserTy == 'User' or 'const User'
165 : public std::iterator<std::forward_iterator_tag, UserTy *> {
191 UserTy *operator*() const {
195 UserTy *operator->() const { return operator*(); }
197 operator user_iterator_impl<const UserTy>() const {
198 return user_iterator_impl<const UserTy>(*UI);
DCallSite.h55 typename UserTy = const User,
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DCallSite.h42 typename UserTy = const User,
108 bool isCallee(value_use_iterator<UserTy> UI) const { in isCallee()
125 unsigned getArgumentNo(value_use_iterator<UserTy> I) const { in getArgumentNo()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DSROA.cpp1125 Type *UserTy = nullptr; in findCommonType() local
1127 UserTy = LI->getType(); in findCommonType()
1129 UserTy = SI->getValueOperand()->getType(); in findCommonType()
1132 if (IntegerType *UserITy = dyn_cast_or_null<IntegerType>(UserTy)) { in findCommonType()
1149 if (!UserTy || (Ty && Ty != UserTy)) in findCommonType()
1152 Ty = UserTy; in findCommonType()
/external/llvm/lib/Transforms/Scalar/
DSROA.cpp1076 Type *UserTy = nullptr; in findCommonType() local
1078 UserTy = LI->getType(); in findCommonType()
1080 UserTy = SI->getValueOperand()->getType(); in findCommonType()
1083 if (IntegerType *UserITy = dyn_cast_or_null<IntegerType>(UserTy)) { in findCommonType()
1100 if (!UserTy || (Ty && Ty != UserTy)) in findCommonType()
1103 Ty = UserTy; in findCommonType()
/external/clang/lib/Sema/
DSemaChecking.cpp5060 while (const TypedefType *UserTy = TyTy->getAs<TypedefType>()) { in shouldNotPrintDirectly() local
5061 StringRef Name = UserTy->getDecl()->getName(); in shouldNotPrintDirectly()
5072 TyTy = UserTy->desugar(); in shouldNotPrintDirectly()