Home
last modified time | relevance | path

Searched refs:foundStart (Results 1 – 6 of 6) sorted by relevance

/external/icu/icu4c/source/test/intltest/
Dssearch.cpp284 int32_t foundStart = 0; in searchTest() local
291 foundMatch= usearch_search(uss.getAlias(), 0, &foundStart, &foundLimit, &status); in searchTest()
294 (foundStart != expectedMatchStart) || in searchTest()
299 foundStart, expectedMatchStart, foundLimit, expectedMatchLimit); in searchTest()
305 expectedMatchStart = foundStart; in searchTest()
308 … foundMatch = usearch_search(uss.getAlias(), foundLimit, &foundStart, &foundLimit, &status); in searchTest()
320 …foundMatch= usearch_searchBackwards(uss.getAlias(), target.length(), &foundStart, &foundLimit, &st… in searchTest()
323 (foundStart != expectedMatchStart) || in searchTest()
328 foundStart, expectedMatchStart, foundLimit, expectedMatchLimit); in searchTest()
/external/skqp/src/pathops/
DSkOpCoincidence.cpp535 const SkOpPtT* foundStart = nullptr; in TRange() local
549 foundStart = work->ptT(); in TRange()
562 double denom = foundEnd->fT - foundStart->fT; in TRange()
563 double sRatio = denom ? (t - foundStart->fT) / denom : 1; in TRange()
DSkPathOpsTSect.cpp365 bool foundStart = false; in removeBounded() local
371 foundStart |= between(test->fStartT, fCoinStart.perpT(), test->fEndT); in removeBounded()
376 if (!foundStart || !foundEnd) { in removeBounded()
/external/skia/src/pathops/
DSkOpCoincidence.cpp535 const SkOpPtT* foundStart = nullptr; in TRange() local
549 foundStart = work->ptT(); in TRange()
562 double denom = foundEnd->fT - foundStart->fT; in TRange()
563 double sRatio = denom ? (t - foundStart->fT) / denom : 1; in TRange()
DSkPathOpsTSect.cpp366 bool foundStart = false; in removeBounded() local
372 foundStart |= between(test->fStartT, fCoinStart.perpT(), test->fEndT); in removeBounded()
377 if (!foundStart || !foundEnd) { in removeBounded()
/external/bcc/tests/lua/
Dluaunit.lua205 local foundStart, foundEnd = string.find(s, pattern, start, false)
206 return foundStart == start and foundEnd == final