Home
last modified time | relevance | path

Searched refs:TRange (Results 1 – 13 of 13) sorted by relevance

/external/clang/test/CodeGenCXX/
D2010-07-23-DeclLoc.cpp42 template <typename SIZE> class TRange { class
46TRange(typename SIZE::ptr_t location, typename SIZE::size_t length) : _location(location), _length… in TRange() function in TRange
48 template <typename SIZE, typename T> class TRangeValue : public TRange<SIZE> {
51 …TRangeValue(typename SIZE::ptr_t location, typename SIZE::size_t length, T value) : TRange<SIZE>(l… in TRangeValue()
/external/deqp-deps/glslang/glslang/MachineIndependent/
Dlocalintermediate.h111 struct TRange { struct
112 TRange(int start, int last) : start(start), last(last) { } in TRange() function
113 bool overlap(const TRange& rhs) const in overlap() argument
125 TIoRange(TRange location, TRange component, TBasicType basicType, int index) in TIoRange() argument
131 TRange location;
132 TRange component;
140 TOffsetRange(TRange binding, TRange offset) in TOffsetRange()
146 TRange binding;
147 TRange offset;
153 std::vector<TRange> ranges; // byte offsets that have already been assigned
DlinkValidate.cpp1051 TRange locationRange(qualifier.layoutLocation, qualifier.layoutLocation); in addUsedLocation()
1052 TRange componentRange(0, 3); in addUsedLocation()
1061 TRange locationRange2(qualifier.layoutLocation + 1, qualifier.layoutLocation + 1); in addUsedLocation()
1062 TRange componentRange2(0, 1); in addUsedLocation()
1074 TRange locationRange(qualifier.layoutLocation, qualifier.layoutLocation + size - 1); in addUsedLocation()
1075 TRange componentRange(0, 3); in addUsedLocation()
1125 TRange bindingRange(binding, binding); in addUsedOffsets()
1126 TRange offsetRange(offset, offset + numOffsets - 1); in addUsedOffsets()
1265 TRange range(qualifier.layoutXfbOffset, qualifier.layoutXfbOffset + size - 1); in addXfbBufferOffset()
/external/skqp/tests/
DPathOpsAngleIdeas.cpp30 struct TRange { struct
229 double r, TRange* result) { in orderTRange()
286 TRange* lowerRange, TRange* upperRange) { in bruteMinT()
299 TRange tRange; in bruteMinT()
347 TRange tRange; in bruteMinT()
399 TRange lowerRange, upperRange; in bruteForce()
408 TRange lowerRange, upperRange; in bruteForceCheck()
636 TRange lowerRange, upperRange; in DEF_TEST()
662 TRange lowerRange, upperRange; in DEF_TEST()
/external/skia/tests/
DPathOpsAngleIdeas.cpp30 struct TRange { struct
229 double r, TRange* result) { in orderTRange()
286 TRange* lowerRange, TRange* upperRange) { in bruteMinT()
299 TRange tRange; in bruteMinT()
347 TRange tRange; in bruteMinT()
399 TRange lowerRange, upperRange; in bruteForce()
408 TRange lowerRange, upperRange; in bruteForceCheck()
636 TRange lowerRange, upperRange; in DEF_TEST()
662 TRange lowerRange, upperRange; in DEF_TEST()
/external/skia/src/pathops/
DSkOpCoincidence.cpp532 double SkOpCoincidence::TRange(const SkOpPtT* overS, double t, in TRange() function in SkOpCoincidence
636 coinTs = TRange(over1s, tStart, coinSeg SkDEBUGPARAMS(over1e)); in addIfMissing()
637 coinTe = TRange(over1s, tEnd, coinSeg SkDEBUGPARAMS(over1e)); in addIfMissing()
642 oppTs = TRange(over2s, tStart, oppSeg SkDEBUGPARAMS(over2e)); in addIfMissing()
643 oppTe = TRange(over2s, tEnd, oppSeg SkDEBUGPARAMS(over2e)); in addIfMissing()
DSkOpCoincidence.h290 static double TRange(const SkOpPtT* overS, double t, const SkOpSegment* coinPtT
DSkPathOpsDebug.cpp1741 coinTs = TRange(over1s, tStart, coinSeg SkDEBUGPARAMS(over1e)); in debugAddIfMissing()
1742 coinTe = TRange(over1s, tEnd, coinSeg SkDEBUGPARAMS(over1e)); in debugAddIfMissing()
1747 oppTs = TRange(over2s, tStart, oppSeg SkDEBUGPARAMS(over2e)); in debugAddIfMissing()
1748 oppTe = TRange(over2s, tEnd, oppSeg SkDEBUGPARAMS(over2e)); in debugAddIfMissing()
/external/skqp/src/pathops/
DSkOpCoincidence.cpp532 double SkOpCoincidence::TRange(const SkOpPtT* overS, double t, in TRange() function in SkOpCoincidence
636 coinTs = TRange(over1s, tStart, coinSeg SkDEBUGPARAMS(over1e)); in addIfMissing()
637 coinTe = TRange(over1s, tEnd, coinSeg SkDEBUGPARAMS(over1e)); in addIfMissing()
642 oppTs = TRange(over2s, tStart, oppSeg SkDEBUGPARAMS(over2e)); in addIfMissing()
643 oppTe = TRange(over2s, tEnd, oppSeg SkDEBUGPARAMS(over2e)); in addIfMissing()
DSkOpCoincidence.h290 static double TRange(const SkOpPtT* overS, double t, const SkOpSegment* coinPtT
DSkPathOpsDebug.cpp1741 coinTs = TRange(over1s, tStart, coinSeg SkDEBUGPARAMS(over1e)); in debugAddIfMissing()
1742 coinTe = TRange(over1s, tEnd, coinSeg SkDEBUGPARAMS(over1e)); in debugAddIfMissing()
1747 oppTs = TRange(over2s, tStart, oppSeg SkDEBUGPARAMS(over2e)); in debugAddIfMissing()
1748 oppTe = TRange(over2s, tEnd, oppSeg SkDEBUGPARAMS(over2e)); in debugAddIfMissing()
/external/clang/lib/Sema/
DSemaChecking.cpp9486 void Sema::CheckCastAlign(Expr *Op, QualType T, SourceRange TRange) { in CheckCastAlign() argument
9489 if (getDiagnostics().isIgnored(diag::warn_cast_align, TRange.getBegin())) in CheckCastAlign()
9520 Diag(TRange.getBegin(), diag::warn_cast_align) in CheckCastAlign()
9524 << TRange << Op->getSourceRange(); in CheckCastAlign()
/external/clang/include/clang/Sema/
DSema.h1701 void CheckCastAlign(Expr *Op, QualType T, SourceRange TRange);