/aosp12/build/soong/java/ |
H A D | sdk_test.go | 239 if testcase.moduleType != "" { 240 moduleType = testcase.moduleType 255 ` + testcase.properties + ` 259 if testcase.host == android.Host { 296 if testcase.system == "none" { 298 } else if testcase.system != "" { 326 if isJava8 || testcase.forces8 { 337 if isJava8 || testcase.forces8 { 360 if testcase.unbundled { 378 if testcase.host != android.Host { [all …]
|
/aosp12/hardware/google/apf/ |
H A D | apf_run_test.sh | 13 testcase=$(basename $prog .program) 14 prog=$(cat testdata/$testcase.program) 15 pkt=$(cat testdata/$testcase.packet) 16 outputpath=testdata/$testcase.output 19 if [[ -f testdata/$testcase.data ]]; then 20 args="$args --data $(cat testdata/$testcase.data)" 22 if [[ -f testdata/$testcase.age ]]; then 23 args="$args --age $(cat testdata/$testcase.age)" 27 echo $testname: $testcase: PASS 29 echo $testname: $testcase: FAIL
|
/aosp12/build/soong/cmd/extract_linker/ |
H A D | main_test.go | 54 for _, testcase := range bytesToAsmTestCases { 55 t.Run(testcase.name, func(t *testing.T) { 57 bytesToAsm(&buf, testcase.in) 58 if buf.String() != testcase.out { 59 t.Errorf("input: %#v\n want: %q\n got: %q\n", testcase.in, testcase.out, buf.String())
|
/aosp12/hardware/qcom/camera/msm8998/QCamera2/HAL3/test/ |
H A D | QCameraHAL3Test.cpp | 141 hal3_camera_lib_test *my_hal3test_obj, int camid, int testcase) in captureRequestRepeat() argument 144 LOGE("TestCase : %d Camera:%d Handle is NULL", testcase, camid); in captureRequestRepeat() 149 void *obj, int testcase) in processThreadCreate() argument 165 thread.testcase = testcase; in processThreadCreate() 180 int testcase; in processBuffers() local 186 testcase = thread->testcase; in processBuffers() 197 obj->captureRequestRepeat(hal3_test_handle, 0, testcase); in processBuffers()
|
H A D | QCameraHAL3Base.cpp | 300 void CameraHAL3Base::hal3appCheckStream(int testcase, int camid) in hal3appCheckStream() argument 302 if (testcase != MENU_START_PREVIEW) { in hal3appCheckStream() 309 if (testcase != MENU_START_VIDEO){ in hal3appCheckStream() 317 if (testcase != MENU_START_CAPTURE){ in hal3appCheckStream() 324 if (testcase != MENU_START_RAW_CAPTURE) { in hal3appCheckStream() 333 int CameraHAL3Base::hal3appCameraPreviewInit(int testcase, int camid, int w, int h) in hal3appCameraPreviewInit() argument 342 if(testcase == MENU_TOGGLE_IR_MODE) { in hal3appCameraPreviewInit() 346 if(testcase == MENU_TOGGLE_SVHDR_MODE) { in hal3appCameraPreviewInit() 379 int CameraHAL3Base::hal3appCameraVideoInit(int testcase, int camid, int w, int h) in hal3appCameraVideoInit() argument 389 if(testcase == MENU_TOGGLE_BINNING_CORRECTION) { in hal3appCameraVideoInit()
|
H A D | QCameraHAL3VideoTest.cpp | 60 int testcase, int camid, int w, int h) in initTest() argument 65 LOGD("\n buffer thread created for testcase %d %d and %d ",testcase, w, h); in initTest() 86 int testcase, int camid, int w, int h) in snapshotCaptureRequest() argument 88 LOGD("Requested Capture Sizes for testcase:%d are :%d X %d",testcase, w, h); in snapshotCaptureRequest() 124 hal3_camera_lib_test *my_hal3test_obj, int camid, int testcase) in captureRequestRepeat() argument 130 if (testcase == MENU_START_VIDEO) { in captureRequestRepeat()
|
H A D | QCameraHAL3PreviewTest.cpp | 59 int testcase, int camid, int w, int h) in initTest() argument 63 LOGD("\n buffer thread created for testcase %d %d and %d ",testcase, w, h); in initTest() 82 int testcase, int camid, int w, int h) in snapshotCaptureRequest() argument 84 LOGD("Requested Capture Sizes for testcase:%d are :%d X %d",testcase, w, h); in snapshotCaptureRequest() 117 hal3_camera_lib_test *my_hal3test_obj, int camid, int testcase) in captureRequestRepeat() argument 127 if (testcase == MENU_START_PREVIEW) { in captureRequestRepeat()
|
H A D | QCameraHAL3SnapshotTest.h | 57 int testcase, int camid, int w, int h); 61 void captureRequestRepeat(hal3_camera_lib_test *my_hal3test_obj, int camid, int testcase);
|
H A D | QCameraHAL3RawSnapshotTest.h | 59 void initTest(hal3_camera_lib_test *handle, int testcase, int, int, int); 64 void captureRequestRepeat(hal3_camera_lib_test *my_hal3test_obj, int camid, int testcase);
|
H A D | QCameraHAL3VideoTest.h | 67 void snapshotCaptureRequest(hal3_camera_lib_test *handle,int testcase, 74 void initTest(hal3_camera_lib_test *handle, int testcase, int camid,
|
H A D | QCameraHAL3PreviewTest.h | 65 int testcase, int camid, int w, int h); 68 int testcase, int camid, int w, int h);
|
H A D | QCameraHAL3RawSnapshotTest.cpp | 48 int testcase, int camid, int w, int h) in initTest() argument 51 LOGD("\n Raw buffer thread created for testcase : %d", testcase); in initTest() 205 hal3_camera_lib_test *my_hal3test_obj, int camid, int testcase) in captureRequestRepeat() argument 208 LOGD("camid :%d and testcase : %d handle is NULL", camid, testcase); in captureRequestRepeat()
|
H A D | QCameraHAL3SnapshotTest.cpp | 48 int testcase, int camid, int w, int h) in initTest() argument 52 LOGD("\ntestcase %d %d and %d ",testcase, w, h); in initTest() 252 hal3_camera_lib_test *my_hal3test_obj, int camid, int testcase) in captureRequestRepeat() argument 255 LOGD("camid :%d and testcase : %d handle is NULL", camid, testcase); in captureRequestRepeat()
|
H A D | QCameraHAL3Base.h | 132 int testcase; member 173 void hal3appCheckStream(int testcase, int camid);
|
H A D | QCameraHAL3Test.h | 57 bool processThreadCreate(void *obj, int testcase);
|
/aosp12/packages/modules/NetworkStack/tests/unit/src/android/net/ip/ |
H A D | IpClientTest.java | 456 if (IpClient.isProvisioned(testcase.lp, testcase.config) != testcase.isProvisioned) { in testIsProvisioned() 457 fail(testcase.errorMessage()); in testIsProvisioned() 494 testcase.lp.addRoute(route); in provisioningTest() 497 testcase.lp.addDnsServer(dns); in provisioningTest() 499 testcase.config = config; in provisioningTest() 500 return testcase; in provisioningTest() 549 if (testcase.config.isValid() != testcase.isValid) { in testInitialConfigurations() 581 testcase.descr = descr; in confTestCase() 582 testcase.isValid = isValid; in confTestCase() 583 testcase.config = config; in confTestCase() [all …]
|
/aosp12/build/soong/third_party/zip/ |
H A D | android_test.go | 70 for _, testcase := range stripZip64Testcases { 71 got := stripExtras(testcase.in) 72 if !bytes.Equal(got, testcase.out) { 73 …("Failed testcase %s\ninput: %v\n want: %v\n got: %v\n", testcase.name, testcase.in, testcase.out…
|
/aosp12/frameworks/base/core/tests/coretests/src/android/util/ |
H A D | LocalLogTest.java | 49 testcase(new LocalLog(10, localTimestamps), lines, want); in doTestA() 59 testcase(new LocalLog(0), lines, want); in testB() 79 testcase(new LocalLog(3), lines, want); in testC() 82 void testcase(LocalLog logger, String[] input, String[] want) { in testcase() method in LocalLogTest
|
/aosp12/frameworks/compile/slang/lit-tests/ |
H A D | README | 5 Each testcase is a separate .rs file, and comments inside the testcase are
|
/aosp12/frameworks/rs/tests/lldb/ |
H A D | run_tests.py | 676 testcase = ET.Element('testcase') 677 testcase.attrib['name'] = "%s:%s" % key 680 testcase.append(result_element) 681 results.append(testcase)
|
/aosp12/frameworks/compile/libbcc/tests/debuginfo/ |
H A D | build_test_apk.sh | 100 --testcase)
|
/aosp12/packages/modules/NeuralNetworks/ |
H A D | README.txt | 41 /test/vts-testcase/hal/neuralnetworks: Configuration for the VTS tests
|
/aosp12/hardware/interfaces/audio/common/all-versions/ |
H A D | copyHAL.sh | 27 readonly VTS_DIRECTORY=test/vts-testcase/hal/audio
|
/aosp12/system/sepolicy/ |
H A D | Android.bp | 647 "//test/vts-testcase/security/system_property",
|
/aosp12/packages/inputmethods/LatinIME/dictionaries/ |
H A D | nl_wordlist.combined.gz | 1dictionary=main:nl,locale=nl,description=Nederlands,date=1414726258, ... |