Home
last modified time | relevance | path

Searched refs:OtherT (Results 1 – 10 of 10) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
DErrorOr.h58 template <class OtherT> friend class ErrorOr;
87 template <class OtherT>
88 ErrorOr(OtherT &&Val,
89 typename std::enable_if<std::is_convertible<OtherT, T>::value>::type
92 new (getStorage()) storage_type(std::forward<OtherT>(Val)); in HasError()
99 template <class OtherT>
101 const ErrorOr<OtherT> &Other,
102 typename std::enable_if<std::is_convertible<OtherT, T>::value>::type * =
107 template <class OtherT>
109 const ErrorOr<OtherT> &Other,
[all …]
DError.h429 template <class OtherT> friend class Expected;
467 template <typename OtherT>
468 Expected(OtherT &&Val,
469 typename std::enable_if<std::is_convertible<OtherT, T>::value>::type
477 new (getStorage()) storage_type(std::forward<OtherT>(Val)); in HasError()
485 template <class OtherT>
486 Expected(Expected<OtherT> &&Other,
487 typename std::enable_if<std::is_convertible<OtherT, T>::value>::type
494 template <class OtherT>
496 Expected<OtherT> &&Other,
[all …]
/external/llvm/include/llvm/Support/
DErrorOr.h69 template <class OtherT> friend class ErrorOr;
96 template <class OtherT>
97 ErrorOr(OtherT &&Val,
98 typename std::enable_if<std::is_convertible<OtherT, T>::value>::type
101 new (getStorage()) storage_type(std::forward<OtherT>(Val)); in HasError()
108 template <class OtherT>
110 const ErrorOr<OtherT> &Other,
111 typename std::enable_if<std::is_convertible<OtherT, T>::value>::type * =
116 template <class OtherT>
118 const ErrorOr<OtherT> &Other,
[all …]
DError.h601 template <class OtherT> friend class Expected;
632 template <typename OtherT>
633 Expected(OtherT &&Val,
634 typename std::enable_if<std::is_convertible<OtherT, T>::value>::type
642 new (getStorage()) storage_type(std::forward<OtherT>(Val)); in HasError()
650 template <class OtherT>
651 Expected(Expected<OtherT> &&Other,
652 typename std::enable_if<std::is_convertible<OtherT, T>::value>::type
659 template <class OtherT>
661 Expected<OtherT> &&Other,
[all …]
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DErrorOr.h69 template <class OtherT> friend class ErrorOr;
96 template <class OtherT>
97 ErrorOr(OtherT &&Val,
98 typename std::enable_if<std::is_convertible<OtherT, T>::value>::type
101 new (getStorage()) storage_type(std::forward<OtherT>(Val)); in HasError()
108 template <class OtherT>
110 const ErrorOr<OtherT> &Other,
111 typename std::enable_if<std::is_convertible<OtherT, T>::value>::type * =
116 template <class OtherT>
118 const ErrorOr<OtherT> &Other,
[all …]
DError.h632 template <class OtherT> friend class Expected;
668 template <typename OtherT>
669 Expected(OtherT &&Val,
670 typename std::enable_if<std::is_convertible<OtherT, T>::value>::type
678 new (getStorage()) storage_type(std::forward<OtherT>(Val)); in HasError()
686 template <class OtherT>
687 Expected(Expected<OtherT> &&Other,
688 typename std::enable_if<std::is_convertible<OtherT, T>::value>::type
695 template <class OtherT>
697 Expected<OtherT> &&Other,
[all …]
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/
Drx-subscriber.hpp519 template<class T, class OtherT, class OtherObserver, class I>
520 auto make_subscriber(const subscriber<OtherT, OtherObserver>& scbr, in make_subscriber() argument
527 template<class T, class OtherT, class OtherObserver, class I>
528 auto make_subscriber(const subscriber<OtherT, OtherObserver>& scbr, trace_id id, in make_subscriber() argument
535 template<class T, class OtherT, class OtherObserver, class Observer>
536 auto make_subscriber(const subscriber<OtherT, OtherObserver>& scbr, trace_id id, const Observer& o) in make_subscriber() argument
544 template<class T, class OtherT, class OtherObserver, class Observer>
545 auto make_subscriber(const subscriber<OtherT, OtherObserver>& scbr, const Observer& o) in make_subscriber() argument
554 template<class T, class OtherT, class OtherObserver, class Observer>
555 auto make_subscriber(const subscriber<OtherT, OtherObserver>& scbr, const Observer& o) in make_subscriber() argument
[all …]
/external/eigen/Eigen/src/StlSupport/
Ddetails.h68 template<typename OtherT>
69 inline T& operator=(const OtherT& other)
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ExecutionEngine/Orc/
DRPCUtils.h251 template <typename OtherT>
253 OtherT &&Val,
254 typename std::enable_if<std::is_convertible<OtherT, T>::value>::type * =
258 template <class OtherT>
260 Expected<OtherT> &&Other,
261 typename std::enable_if<std::is_convertible<OtherT, T>::value>::type * =
265 template <class OtherT>
267 Expected<OtherT> &&Other,
268 typename std::enable_if<!std::is_convertible<OtherT, T>::value>::type * =
/external/clang/lib/Sema/
DSemaChecking.cpp7439 QualType OtherT = Other->getType(); in DiagnoseOutOfRangeComparison() local
7440 if (const auto *AT = OtherT->getAs<AtomicType>()) in DiagnoseOutOfRangeComparison()
7441 OtherT = AT->getValueType(); in DiagnoseOutOfRangeComparison()
7442 IntRange OtherRange = IntRange::forValueOfType(S.Context, OtherT); in DiagnoseOutOfRangeComparison()
7465 if (S.Context.hasSameUnqualifiedType(OtherT, ConstantT)) in DiagnoseOutOfRangeComparison()
7467 assert((OtherT->isIntegerType() && ConstantT->isIntegerType()) && in DiagnoseOutOfRangeComparison()
7634 << OtherT << (OtherIsBooleanType && !OtherT->isBooleanType()) << IsTrue in DiagnoseOutOfRangeComparison()