HomeSort by: relevance | last modified time | path
    Searched refs:OtherT (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
MSVCErrorWorkarounds.h 59 template <typename OtherT>
61 OtherT &&Val,
62 std::enable_if_t<std::is_convertible<OtherT, T>::value> * = nullptr)
65 template <class OtherT>
67 Expected<OtherT> &&Other,
68 std::enable_if_t<std::is_convertible<OtherT, T>::value> * = nullptr)
71 template <class OtherT>
73 Expected<OtherT> &&Other,
74 std::enable_if_t<!std::is_convertible<OtherT, T>::value> * = nullptr)
ErrorOr.h 57 template <class OtherT> friend class ErrorOr;
86 template <class OtherT>
87 ErrorOr(OtherT &&Val,
88 std::enable_if_t<std::is_convertible<OtherT, T>::value> * = nullptr)
90 new (getStorage()) storage_type(std::forward<OtherT>(Val));
97 template <class OtherT>
98 ErrorOr(const ErrorOr<OtherT> &Other,
99 std::enable_if_t<std::is_convertible<OtherT, T>::value> * = nullptr) {
103 template <class OtherT>
105 const ErrorOr<OtherT> &Other
    [all...]
Error.h 441 template <class OtherT> friend class Expected;
477 /// Create an Expected<T> success value from the given OtherT value, which
479 template <typename OtherT>
480 Expected(OtherT &&Val,
481 std::enable_if_t<std::is_convertible<OtherT, T>::value> * = nullptr)
489 new (getStorage()) storage_type(std::forward<OtherT>(Val));
495 /// Move construct an Expected<T> value from an Expected<OtherT>, where OtherT
497 template <class OtherT>
499 Expected<OtherT> &&Other
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
vec.h 2363 template<typename OtherT> friend class array_slice;
2372 template<typename OtherT>
2373 array_slice (array_slice<OtherT> other)
2382 template<typename OtherT>
2383 array_slice (const vec<OtherT> &v)
2386 template<typename OtherT>
2387 array_slice (vec<OtherT> &v)
2390 template<typename OtherT, typename A>
2391 array_slice (const vec<OtherT, A, vl_embed> *v)
2394 template<typename OtherT, typename A
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
vec.h 2244 template<typename OtherT> friend class array_slice;
2253 template<typename OtherT>
2254 array_slice (array_slice<OtherT> other)
2263 template<typename OtherT>
2264 array_slice (const vec<OtherT> &v)
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
STLExtras.h 1122 template <typename OtherT> bool operator==(const OtherT &other) const {
1127 template <typename OtherT> bool operator!=(const OtherT &other) const {
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
StdLibraryFunctionsChecker.cpp 794 QualType OtherT = Summary.getArgType(OtherArg);
796 OtherV = SVB.evalCast(OtherV, T, OtherT);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaChecking.cpp 11371 QualType OtherT = Other->getType();
11372 if (const auto *AT = OtherT->getAs<AtomicType>())
11373 OtherT = AT->getValueType();
11374 IntRange OtherTypeRange = IntRange::forValueOfType(S.Context, OtherT);
11379 S.NSAPIObj->isObjCBOOLType(OtherT) &&
11380 OtherT->isSpecificBuiltinType(BuiltinType::SChar);
11385 !OtherT->isBooleanType() && Other->isKnownToHaveBooleanValue();
11476 << OS.str() << classifyConstantValue(Constant) << OtherT
11480 bool IsCharTy = OtherT.withoutLocalFastQualifiers() == S.Context.CharTy;
11490 << RhsConstant << OtherT << E->getOpcodeStr() << OS.str() << *Resul
    [all...]

Completed in 47 milliseconds