Searched refs:newT (Results 1 – 10 of 10) sorted by relevance
/external/skia/tests/ |
D | PathOpsCubicLineIntersectionIdeas.cpp | 221 double newT = binary_search(cubic, step, pt, t, &iters); in DEF_TEST() local 222 if (newT >= 0) { in DEF_TEST() 223 diff = fabs(t - newT); in DEF_TEST() 269 double newT = binary_search(cubic, 0.1, pt, t, &iters); in testOneFailure() local 270 return newT; in testOneFailure() 277 double newT = testOneFailure(failure); in DEF_TEST() local 278 SkASSERT_RELEASE(newT >= 0); in DEF_TEST() 285 double newT = testOneFailure(failure); in DEF_TEST() local 286 SkASSERT_RELEASE(newT >= 0); in DEF_TEST()
|
D | PathOpsTestCommon.cpp | 56 double newT = start + (index / parts) * (end - start); in addTs() local 57 if (newT > 0 && newT < 1) { in addTs() 58 ts->push_back(newT); in addTs()
|
/external/skia/src/utils/ |
D | SkCurveMeasure.cpp | 237 SkScalar newT; in getTime() local 274 newT = currentT - (lengthDiff / dt); in getTime() 277 if ((newT < 0.0f) || (newT > 1.0f)) { in getTime() 278 newT = (minT + maxT) * 0.5f; in getTime() 287 newT = (minT + maxT) * 0.5f; in getTime() 293 currentT = newT; in getTime()
|
/external/skia/include/private/ |
D | SkTArray.h | 168 void* newT = this->push_back_raw(1); in push_back() local 169 return *new (newT) T; in push_back() 176 void* newT = this->push_back_raw(1); in push_back() local 177 return *new (newT) T(t); in push_back() 184 void* newT = this->push_back_raw(1); in push_back() local 185 return *new (newT) T(std::move(t)); in push_back() 192 void* newT = this->push_back_raw(1); in emplace_back() local 193 return *new (newT) T(std::forward<Args>(args)...); in emplace_back()
|
/external/skia/tools/ |
D | sk_tool_utils.cpp | 523 SkScalar newL = r.fLeft, newT = r.fTop, newR = r.fRight, newB = r.fBottom; in compute_central_occluder() local 530 newT = SkTMax(newT, r.fTop + radii.fY - p.fY); in compute_central_occluder() 538 newT = SkTMax(newT, r.fTop + radii.fY - p.fY); in compute_central_occluder() 557 return SkRect::MakeLTRB(newL, newT, newR, newB); in compute_central_occluder()
|
/external/clang/test/SemaObjC/ |
D | unused-backing-ivar-warning.m | 48 - (void) setT:(id)newT { // expected-warning {{ivar 'tIvar' which backs the property is not referen… 49 okIvar = newT;
|
/external/skia/src/pathops/ |
D | SkOpSegment.cpp | 223 bool SkOpSegment::addExpanded(double newT, const SkOpSpanBase* test, bool* startOver) { in addExpanded() argument 224 if (this->contains(newT)) { in addExpanded() 228 FAIL_IF(!between(0, newT, 1)); in addExpanded() 229 SkOpPtT* newPtT = this->addT(newT); in addExpanded() 234 newPtT->fPt = this->ptAtT(newT); in addExpanded() 467 bool SkOpSegment::contains(double newT) const { in contains() 470 if (spanBase->ptT()->contains(this, newT)) { in contains()
|
D | SkPathOpsCubic.cpp | 364 double newT = binarySearch(min, max, axisIntercept, xAxis); in searchRoots() local 365 if (newT >= 0) { in searchRoots() 369 validRoots[validCount++] = newT; in searchRoots()
|
D | SkOpSegment.h | 69 bool addExpanded(double newT, const SkOpSpanBase* test, bool* startOver);
|
/external/clang/lib/Sema/ |
D | SemaDeclObjC.cpp | 622 ObjCObjectPointerTypeLoc newT in actOnObjCTypeParam() local 624 newT.setStarLoc(starLoc); in actOnObjCTypeParam()
|