Home
last modified time | relevance | path

Searched refs:testBase (Results 1 – 9 of 9) sorted by relevance

/external/zxing/core/src/test/java/com/google/zxing/common/
DAbstractBlackBoxTestCase.java61 private final Path testBase; field in AbstractBlackBoxTestCase
69 Path testBase = Paths.get(testBasePathSuffix); in buildTestBase() local
70 if (!Files.exists(testBase)) { in buildTestBase()
72 testBase = Paths.get("core").resolve(testBasePathSuffix); in buildTestBase()
74 return testBase; in buildTestBase()
80 this.testBase = buildTestBase(testBasePathSuffix); in AbstractBlackBoxTestCase()
89 return testBase; in getTestBase()
119 …ease download and install test images, and run from the 'core' directory", Files.exists(testBase)); in getImageFiles()
121 …try (DirectoryStream<Path> pathIt = Files.newDirectoryStream(testBase, "*.{jpg,jpeg,gif,png,JPG,JP… in getImageFiles()
152 Path expectedTextFile = testBase.resolve(fileBaseName + ".txt"); in testBlackBox()
[all …]
/external/zxing/core/src/test/java/com/google/zxing/multi/
DMultiTestCase.java42 Path testBase = AbstractBlackBoxTestCase.buildTestBase("src/test/resources/blackbox/multi-1"); in testMulti() local
44 Path testImage = testBase.resolve("1.png"); in testMulti()
/external/zxing/core/src/test/java/com/google/zxing/pdf417/
DPDF417BlackBox4TestCase.java80 Path testBase = getTestBase(); in testBlackBox() local
87 Path expectedTextFile = testBase.resolve(fileBaseName + ".txt"); in testBlackBox()
91 expectedTextFile = testBase.resolve(fileBaseName + ".bin"); in testBlackBox()
/external/zxing/core/src/test/java/com/google/zxing/multi/qrcode/
DMultiQRCodeTestCase.java48 …Path testBase = AbstractBlackBoxTestCase.buildTestBase("src/test/resources/blackbox/multi-qrcode-1… in testMultiQRCodes() local
50 Path testImage = testBase.resolve("1.png"); in testMultiQRCodes()
/external/skia/src/pathops/
DSkOpSpan.cpp326 SkOpSpanBase* testBase = test->span(); in mergeMatches() local
327 SkASSERT(testBase->ptT() == test); in mergeMatches()
350 testBase->upCast()->release(inner); in mergeMatches()
353 SkDEBUGCODE(testBase->debugSetDeleted()); in mergeMatches()
DSkPathOpsDebug.cpp2466 const SkOpSpanBase* testBase = test->span(); in debugMergeMatches() local
2467 SkASSERT(testBase->ptT() == test); in debugMergeMatches()
2491 log->record(SkPathOpsDebug::kMergeMatches_Glitch, testBase, inner); in debugMergeMatches()
/external/OpenCL-CTS/test_conformance/gl/
DCMakeLists.txt58 # test_common/gl/setup_x11.cpp can find testBase.h which is located in this
/external/kotlinx.serialization/formats/json-tests/commonTest/src/kotlinx/serialization/features/
DJsonNamingStrategyTest.kt227 data class Holder(val testBase: SealedBase, val testMid: SealedBase.SealedMid) in <lambda>() constant in kotlinx.serialization.features.JsonNamingStrategyTest.Holder
/external/tensorflow/tensorflow/lite/python/
Dinterpreter_test.py401 def testBase(self): member in InterpreterTensorAccessorTest