Searched refs:cast_retty (Results 1 - 1 of 1) sorted by relevance

/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Support/
H A DCasting.h120 template<class To, class From> struct cast_retty;
150 typedef typename cast_retty<To, SimpleFrom>::ret_type ret_type;
160 struct cast_retty { struct in namespace:llvm
170 static typename cast_retty<To, From>::ret_type doit(const From &Val) {
179 static typename cast_retty<To, FromTy>::ret_type doit(const FromTy &Val) {
180 typename cast_retty<To, FromTy>::ret_type Res2
181 = (typename cast_retty<To, FromTy>::ret_type)const_cast<FromTy&>(Val);
196 inline typename cast_retty<X, Y>::ret_type cast(const Y &Val) {
206 inline typename cast_retty<X, Y*>::ret_type cast_or_null(Y *Val) {
222 inline typename cast_retty<
[all...]

Completed in 125 milliseconds