Home
last modified time | relevance | path

Searched refs:expectedEnd (Results 1 – 4 of 4) sorted by relevance

/external/icu/icu4c/source/test/intltest/
Dssearch.cpp1320 int32_t expectedStart = -1, expectedEnd = -1; in monkeyTestCase() local
1329 simpleSearch(coll, testCase, 0, pattern, expectedStart, expectedEnd); in monkeyTestCase()
1333 if (expectedStart >= 0 && (actualStart != expectedStart || actualEnd != expectedEnd)) { in monkeyTestCase()
1336 name, expectedStart, expectedEnd, actualStart, actualEnd, strength, seed); in monkeyTestCase()
1344 simpleSearch(coll, testCase, 0, altPattern, expectedStart, expectedEnd); in monkeyTestCase()
1350 if (expectedStart >= 0 && (actualStart != expectedStart || actualEnd != expectedEnd)) { in monkeyTestCase()
1353 name, expectedStart, expectedEnd, actualStart, actualEnd, strength, seed); in monkeyTestCase()
Dregextst.cpp3714 int32_t expectedEnd = (i >= groupEnds.size()? -1 : groupEnds.elementAti(i)); in regex_find() local
3716 if (matcher->end(i, status) != expectedEnd) { in regex_find()
3718 line, i, expectedEnd, matcher->end(i, status)); in regex_find()
/external/deqp/external/vulkancts/modules/vulkan/tessellation/
DvktTessellationWindingTests.cpp135 const tcu::IVec2 expectedEnd (image.getWidth()-1, image.getWidth()); in verifyResultImage() local
136 const tcu::IVec2 expectedTop = yFlip ? expectedStart : expectedEnd; in verifyResultImage()
137 const tcu::IVec2 expectedBottom = yFlip ? expectedEnd : expectedStart; in verifyResultImage()
/external/exoplayer/tree/library/core/src/test/java/com/google/android/exoplayer2/text/tx3g/
DTx3gDecoderTest.java233 SpannedString testObject, int expectedStart, int expectedEnd, Class<T> expectedType) { in findSpan() argument
237 && testObject.getSpanEnd(span) == expectedEnd) { in findSpan()