Home
last modified time | relevance | path

Searched refs:newT (Results 1 – 17 of 17) sorted by relevance

/external/skqp/tests/
DPathOpsCubicLineIntersectionIdeas.cpp221 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()
DPathOpsTestCommon.cpp59 double newT = start + (index / parts) * (end - start); in addTs() local
60 if (newT > 0 && newT < 1) { in addTs()
61 ts->push_back(newT); in addTs()
/external/skia/tests/
DPathOpsCubicLineIntersectionIdeas.cpp221 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()
DPathOpsTestCommon.cpp60 double newT = start + (index / parts) * (end - start); in addTs() local
61 if (newT > 0 && newT < 1) { in addTs()
62 ts->push_back(newT); in addTs()
/external/flatbuffers/lua/flatbuffers/
Dbinaryarray.lua66 local newT = {}
76 newT[i + offset] = data
80 self.data = newT
/external/skqp/include/private/
DSkTArray.h180 void* newT = this->push_back_raw(1); in push_back() local
181 return *new (newT) T; in push_back()
188 void* newT = this->push_back_raw(1); in push_back() local
189 return *new (newT) T(t); in push_back()
196 void* newT = this->push_back_raw(1); in push_back() local
197 return *new (newT) T(std::move(t)); in push_back()
204 void* newT = this->push_back_raw(1); in emplace_back() local
205 return *new (newT) T(std::forward<Args>(args)...); in emplace_back()
/external/skia/include/private/
DSkTArray.h212 void* newT = this->push_back_raw(1); in push_back() local
213 return *new (newT) T; in push_back()
220 void* newT = this->push_back_raw(1); in push_back() local
221 return *new (newT) T(t); in push_back()
228 void* newT = this->push_back_raw(1); in push_back() local
229 return *new (newT) T(std::move(t)); in push_back()
236 void* newT = this->push_back_raw(1); in emplace_back() local
237 return *new (newT) T(std::forward<Args>(args)...); in emplace_back()
/external/clang/test/SemaObjC/
Dunused-backing-ivar-warning.m48 - (void) setT:(id)newT { // expected-warning {{ivar 'tIvar' which backs the property is not referen…
49 okIvar = newT;
/external/llvm-project/clang/test/SemaObjC/
Dunused-backing-ivar-warning.m48 - (void) setT:(id)newT { // expected-warning {{ivar 'tIvar' which backs the property is not referen…
49 okIvar = newT;
/external/skqp/src/pathops/
DSkOpSegment.cpp229 bool SkOpSegment::addExpanded(double newT, const SkOpSpanBase* test, bool* startOver) { in addExpanded() argument
230 if (this->contains(newT)) { in addExpanded()
234 FAIL_IF(!between(0, newT, 1)); in addExpanded()
235 SkOpPtT* newPtT = this->addT(newT); in addExpanded()
240 newPtT->fPt = this->ptAtT(newT); in addExpanded()
484 bool SkOpSegment::contains(double newT) const { in contains()
487 if (spanBase->ptT()->contains(this, newT)) { in contains()
DSkPathOpsCubic.cpp354 double newT = binarySearch(min, max, axisIntercept, xAxis); in searchRoots() local
355 if (newT >= 0) { in searchRoots()
359 validRoots[validCount++] = newT; in searchRoots()
DSkOpSegment.h69 bool addExpanded(double newT, const SkOpSpanBase* test, bool* startOver);
/external/skia/src/pathops/
DSkOpSegment.cpp229 bool SkOpSegment::addExpanded(double newT, const SkOpSpanBase* test, bool* startOver) { in addExpanded() argument
230 if (this->contains(newT)) { in addExpanded()
234 FAIL_IF(!between(0, newT, 1)); in addExpanded()
235 SkOpPtT* newPtT = this->addT(newT); in addExpanded()
240 newPtT->fPt = this->ptAtT(newT); in addExpanded()
484 bool SkOpSegment::contains(double newT) const { in contains()
487 if (spanBase->ptT()->contains(this, newT)) { in contains()
DSkPathOpsCubic.cpp356 double newT = binarySearch(min, max, axisIntercept, xAxis); in searchRoots() local
357 if (newT >= 0) { in searchRoots()
361 validRoots[validCount++] = newT; in searchRoots()
DSkOpSegment.h69 bool addExpanded(double newT, const SkOpSpanBase* test, bool* startOver);
/external/clang/lib/Sema/
DSemaDeclObjC.cpp622 ObjCObjectPointerTypeLoc newT in actOnObjCTypeParam() local
624 newT.setStarLoc(starLoc); in actOnObjCTypeParam()
/external/llvm-project/clang/lib/Sema/
DSemaDeclObjC.cpp698 ObjCObjectPointerTypeLoc newT in actOnObjCTypeParam() local
700 newT.setStarLoc(starLoc); in actOnObjCTypeParam()