Home
last modified time | relevance | path

Searched refs:_Op (Results 1 – 6 of 6) sorted by relevance

/external/libcxx/include/experimental/
Dtype_traits115 template <class _Default, class _AlwaysVoid, template <class...> class _Op, class... _Args>
121 template <class _Default, template <class...> class _Op, class... _Args>
122 struct _DETECTOR<_Default, void_t<_Op<_Args...>>, _Op, _Args...> {
124 using type = _Op<_Args...>;
128 template <template<class...> class _Op, class... _Args>
129 using is_detected = typename _DETECTOR<nonesuch, void, _Op, _Args...>::value_t;
130 template <template<class...> class _Op, class... _Args>
131 using detected_t = typename _DETECTOR<nonesuch, void, _Op, _Args...>::type;
132 template <template<class...> class _Op, class... _Args>
133 _LIBCPP_CONSTEXPR bool is_detected_v = is_detected<_Op, _Args...>::value;
[all …]
/external/libcxx/include/
Dvalarray413 template <class _Op, class _A0>
416 typedef typename _Op::result_type result_type;
419 _Op __op_;
423 _UnaryOp(const _Op& __op, const _A0& __a0) : __op_(__op), __a0_(__a0) {}
432 template <class _Op, class _A0, class _A1>
435 typedef typename _Op::result_type result_type;
438 _Op __op_;
443 _BinaryOp(const _Op& __op, const _A0& __a0, const _A1& __a1)
1066 template <class _Op, class _Tp>
1067 struct _UnaryOp<_Op, valarray<_Tp> >
[all …]
Diomanip372 typedef ostreambuf_iterator<_CharT, _Traits> _Op;
373 typedef money_put<_CharT, _Op> _Fp;
375 if (__mf.put(_Op(__os), __x.__intl_, __os, __os.fill(), __x.__mon_).failed())
492 typedef ostreambuf_iterator<_CharT, _Traits> _Op;
493 typedef time_put<_CharT, _Op> _Fp;
495 if (__tf.put(_Op(__os), __os, __os.fill(), __x.__tm_,
Diterator1285 template <class _Ip, class _Op> _Op _LIBCPP_INLINE_VISIBILITY copy(_Ip, _Ip, _Op);
1287 template <class _Ip, class _Op> _Op _LIBCPP_INLINE_VISIBILITY move(_Ip, _Ip, _Op);
1496 template <class _Ip, class _Op> friend _Op copy(_Ip, _Ip, _Op);
1498 template <class _Ip, class _Op> friend _Op move(_Ip, _Ip, _Op);
Dostream333 typedef ostreambuf_iterator<_CharT, _Traits> _Op;
336 _Op __o(*this);
895 typedef ostreambuf_iterator<_CharT, _Traits> _Op;
896 _Op __o(*this);
/external/swiftshader/third_party/LLVM/include/llvm/MC/
DMCExpr.h241 MCUnaryExpr(Opcode _Op, const MCExpr *_Expr) in MCUnaryExpr() argument
242 : MCExpr(MCExpr::Unary), Op(_Op), Expr(_Expr) {} in MCUnaryExpr()
313 MCBinaryExpr(Opcode _Op, const MCExpr *_LHS, const MCExpr *_RHS) in MCBinaryExpr() argument
314 : MCExpr(MCExpr::Binary), Op(_Op), LHS(_LHS), RHS(_RHS) {} in MCBinaryExpr()