Home
last modified time | relevance | path

Searched refs:opt (Results 1 – 19 of 19) sorted by relevance

/cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
DTestSuiteContentReport.java350 for (Option opt : optList) { in printTestSuiteContent()
351 if (RUNTIME_HIT_TAG.equalsIgnoreCase(opt.getName())) { in printTestSuiteContent()
352 rtHit = rtHit + opt.getValue() + " "; in printTestSuiteContent()
353 } else if (PACKAGE_TAG.equalsIgnoreCase(opt.getName())) { in printTestSuiteContent()
354 pkg = pkg + opt.getValue() + " "; in printTestSuiteContent()
355 } else if (JAR_NAME_TAG.equalsIgnoreCase(opt.getName())) { in printTestSuiteContent()
356 jar = jar + opt.getValue() + " "; in printTestSuiteContent()
357 } else if (NATIVE_TEST_DEVICE_PATH_TAG.equalsIgnoreCase(opt.getName())) { in printTestSuiteContent()
358 ntdPath = ntdPath + opt.getValue() + " "; in printTestSuiteContent()
359 } else if (MODULE_TAG.equalsIgnoreCase(opt.getName())) { in printTestSuiteContent()
[all …]
DTestCaseReport.java437 for (Option opt : optList) { in listTestCases()
438 if (isAndroidJunitTest && PACKAGE_TAG.equalsIgnoreCase(opt.getName())) { in listTestCases()
439 testClassList.add(opt.getValue()); in listTestCases()
440 } else if (isHostTest && JAR_TAG.equalsIgnoreCase(opt.getName())) { in listTestCases()
441 hostTestJarList.add(opt.getValue()); in listTestCases()
451 for (Option opt : optList) { in listTestCases()
452 if (TEST_FILE_NAME_TAG.equalsIgnoreCase(opt.getName())) { in listTestCases()
453 testApkList.add(opt.getValue()); in listTestCases()
/cts/tools/vm-tests-tf/etc/
Dvmtests-buildutil.sh62 opt=`expr "x$1" : 'x-J\(.*\)'`
63 javaOpts="${javaOpts} -${opt}"
64 if expr "x${opt}" : "xXmx[0-9]" >/dev/null; then
Dstarthosttests40 opt=`expr "$1" : '-J\(.*\)'`
41 javaOpts="${javaOpts} -${opt}"
Dstarttests42 opt=`expr "$1" : '-J\(.*\)'`
43 javaOpts="${javaOpts} -${opt}"
/cts/tools/cts-api-coverage/etc/
Dcts-api-coverage41 opt=`expr "$1" : '-J\(.*\)'`
42 javaOpts="${javaOpts} -${opt}"
Dndk-api-report41 opt=`expr "$1" : '-J\(.*\)'`
42 javaOpts="${javaOpts} -${opt}"
/cts/suite/audio_quality/executable/src/
Dmain.cpp66 int opt; in main() local
67 while ((opt = getopt(argc, argv, "l:s:")) != -1) { in main()
68 switch (opt) { in main()
/cts/tests/tests/renderscript/src/android/renderscript/cts/
DImageProcessingTest.java122 Script.LaunchOptions opt = new Script.LaunchOptions(); in testBlend() local
174 mBlend.forEachSrc(src, dst, opt); in testBlend()
177 mBlend.forEachDst(src, dst, opt); in testBlend()
180 mBlend.forEachSrcOver(src, dst, opt); in testBlend()
183 mBlend.forEachDstOver(src, dst, opt); in testBlend()
186 mBlend.forEachSrcIn(src, dst, opt); in testBlend()
189 mBlend.forEachDstIn(src, dst, opt); in testBlend()
192 mBlend.forEachSrcOut(src, dst, opt); in testBlend()
195 mBlend.forEachDstOut(src, dst, opt); in testBlend()
198 mBlend.forEachSrcAtop(src, dst, opt); in testBlend()
[all …]
/cts/tools/cfassembler/etc/
Dcfassembler55 opt=`expr "$1" : '-J\(.*\)'`
56 javaOpts="${javaOpts} -${opt}"
/cts/hostsidetests/appsecurity/res/apexsigverify/
DREADME.md17 frameworks/opt/net/ike/apex/com.android.ipsec.avbpubkey
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/
DDrawableTest.java346 BitmapFactory.Options opt = new BitmapFactory.Options(); in testCreateFromResourceStream2() local
347 opt.inScaled = false; in testCreateFromResourceStream2()
349 assertNull(Drawable.createFromResourceStream(null, null, null, "test.bmp", opt)); in testCreateFromResourceStream2()
360 "Sample", opt)); in testCreateFromResourceStream2()
369 "Sample", opt)); in testCreateFromResourceStream2()
/cts/tools/release-parser/src/com/android/cts/releaseparser/
DTestSuiteParser.java180 for (Option opt : tPrep.getOptionsList()) { in parseAndroidJUnitTest()
181 if (TEST_FILE_NAME_TAG.equalsIgnoreCase(opt.getName())) { in parseAndroidJUnitTest()
183 String testFileName = opt.getValue(); in parseAndroidJUnitTest()
/cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/
DCanvasTests.java64 BitmapFactory.Options opt = new BitmapFactory.Options(); in getImmutableBitmap() local
65 opt.inScaled = false; // bitmap will only be immutable if not scaled during load in getImmutableBitmap()
66 Bitmap immutableBitmap = BitmapFactory.decodeResource(res, R.drawable.sunset1, opt); in getImmutableBitmap()
/cts/tests/camera/src/android/hardware/camera2/cts/
DImageReaderTest.java684 BitmapFactory.Options opt = new BitmapFactory.Options(); in testAllOutputYUVResolutions() local
685 opt.inPreferredConfig = Bitmap.Config.ARGB_8888; in testAllOutputYUVResolutions()
686 Bitmap fullSizeJpegBmap = decoder.decodeRegion(jpegPatch, opt); in testAllOutputYUVResolutions()
DDngCreatorTest.java904 BitmapFactory.Options opt = new BitmapFactory.Options(); in validateRawJpegImagePair() local
905 opt.inPreferredConfig = Bitmap.Config.ARGB_8888; in validateRawJpegImagePair()
908 decodeRegion(jpegFinal, opt); in validateRawJpegImagePair()
/cts/tests/tests/graphics/src/android/graphics/cts/
DBitmapFactoryTest.java997 Options opt = new BitmapFactory.Options(); in obtainArray() local
998 opt.inScaled = false; in obtainArray()
999 Bitmap bitmap = BitmapFactory.decodeResource(mRes, R.drawable.start, opt); in obtainArray()
/cts/hostsidetests/hdmicec/
Dcec_adapter.md27 sudo /opt/local/bin/port install libcec
/cts/apps/CtsVerifier/
DNOTICE.txt1044 3. You may opt to apply the terms of the ordinary GNU General Public
1548 3. You may opt to apply the terms of the ordinary GNU General Public
10791 3. You may opt to apply the terms of the ordinary GNU General Public