/external/llvm/include/llvm/Support/ |
ErrorOr.h | 165 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/chromium_org/courgette/ |
memory_allocator.h | 172 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>& other) [all...] |
/external/eigen/Eigen/src/StlSupport/ |
details.h | 68 template<typename OtherT> 69 inline T& operator=(const OtherT& other)
|
/external/chromium_org/third_party/skia/src/pathops/ |
SkIntersectionHelper.h | 30 void addOtherT(int index, double otherT, int otherIndex) { 31 fContour->addOtherT(fIndex, index, otherT, otherIndex);
|
SkOpContour.h | 62 void addOtherT(int segIndex, int tIndex, double otherT, int otherIndex) { 63 fSegments[segIndex].addOtherT(tIndex, otherT, otherIndex);
|
SkOpSegment.h | 241 void addOtherT(int index, double otherT, int otherIndex); 248 void addTPair(double t, SkOpSegment* other, double otherT, bool borrowWind, const SkPoint& pt); 273 bool joinCoincidence(SkOpSegment* other, double otherT, int step, bool cancel); 344 void addTPair(double t, SkOpSegment* other, double otherT, bool borrowWind, const SkPoint& pt, 416 void debugAddTPair(double t, const SkOpSegment& other, double otherT) const;
|
SkPathOpsDebug.cpp | 108 SkDebugf(" [%d] otherT=", fOtherIndex);
|
SkOpSegment.cpp | 387 void SkOpSegment::addOtherT(int index, double otherT, int otherIndex) { 389 if (precisely_zero(otherT)) { 390 otherT = 0; 391 } else if (precisely_equal(otherT, 1)) { 392 otherT = 1; 394 span.fOtherT = otherT; 806 void SkOpSegment::addTPair(double t, SkOpSegment* other, double otherT, bool borrowWind, 815 && approximately_equal(span.fOtherT, otherT)) { 818 __FUNCTION__, fID, t, other->fID, otherT); 825 __FUNCTION__, fID, t, other->fID, otherT); [all...] |
/external/skia/src/pathops/ |
SkIntersectionHelper.h | 30 void addOtherT(int index, double otherT, int otherIndex) { 31 fContour->addOtherT(fIndex, index, otherT, otherIndex);
|
SkOpContour.h | 62 void addOtherT(int segIndex, int tIndex, double otherT, int otherIndex) { 63 fSegments[segIndex].addOtherT(tIndex, otherT, otherIndex);
|
SkOpSegment.h | 241 void addOtherT(int index, double otherT, int otherIndex); 248 void addTPair(double t, SkOpSegment* other, double otherT, bool borrowWind, const SkPoint& pt); 273 bool joinCoincidence(SkOpSegment* other, double otherT, int step, bool cancel); 344 void addTPair(double t, SkOpSegment* other, double otherT, bool borrowWind, const SkPoint& pt, 416 void debugAddTPair(double t, const SkOpSegment& other, double otherT) const;
|
SkPathOpsDebug.cpp | 108 SkDebugf(" [%d] otherT=", fOtherIndex);
|
SkOpSegment.cpp | 387 void SkOpSegment::addOtherT(int index, double otherT, int otherIndex) { 389 if (precisely_zero(otherT)) { 390 otherT = 0; 391 } else if (precisely_equal(otherT, 1)) { 392 otherT = 1; 394 span.fOtherT = otherT; 806 void SkOpSegment::addTPair(double t, SkOpSegment* other, double otherT, bool borrowWind, 815 && approximately_equal(span.fOtherT, otherT)) { 818 __FUNCTION__, fID, t, other->fID, otherT); 825 __FUNCTION__, fID, t, other->fID, otherT); [all...] |
/external/clang/lib/Sema/ |
SemaChecking.cpp | [all...] |
/external/clang/test/SemaCXX/ |
warn-thread-safety-analysis.cpp | [all...] |