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

/external/llvm/include/llvm/Support/
H A DErrorOr.h165 template <class OtherT> friend class ErrorOr;
216 template <class OtherT>
217 ErrorOr(const ErrorOr<OtherT> &Other) : IsValid(false) {
226 template <class OtherT>
227 ErrorOr &operator =(const ErrorOr<OtherT> &Other) {
237 template <class OtherT>
238 ErrorOr(ErrorOr<OtherT> &&Other) : IsValid(false) {
247 template <class OtherT>
248 ErrorOr &operator =(ErrorOr<OtherT> &&Other) {
297 template <class OtherT>
[all...]
/external/eigen/Eigen/src/StlSupport/
H A Ddetails.h68 template<typename OtherT>
69 inline T& operator=(const OtherT& other)
/external/chromium_org/courgette/
H A Dmemory_allocator.h172 template<class OtherT>
174 // convert a MemoryAllocator<T> to a MemoryAllocator<OtherT>
175 typedef MemoryAllocator<OtherT> other;
186 template<class OtherT>
187 MemoryAllocator(const MemoryAllocator<OtherT>& other) _THROW0() { // NOLINT
268 template<class OtherT>
270 // convert a MemoryAllocator<T> to a MemoryAllocator<OtherT>
271 typedef MemoryAllocator<OtherT> other;
280 template<class OtherT>
281 explicit MemoryAllocator(const MemoryAllocator<OtherT>
[all...]
/external/clang/lib/Sema/
H A DSemaChecking.cpp4746 QualType OtherT = Other->getType(); local
4749 if (S.Context.hasSameUnqualifiedType(OtherT, ConstantT))
4751 assert((OtherT->isIntegerType() && ConstantT->isIntegerType())
4761 IntRange OtherRange = IntRange::forValueOfType(S.Context, OtherT);
4767 // Check that the constant is representable in type OtherT.
4776 // Check that the constant is representable in type OtherT.
4791 // Check to see if the constant is representable in OtherT.
4799 // The constant value rests between values that OtherT can represent after
4841 << OS.str() << OtherT << IsTrue

Completed in 172 milliseconds