Home
last modified time | relevance | path

Searched refs:trans (Results 1 – 5 of 5) sorted by relevance

/cts/tests/autofillservice/src/android/autofillservice/cts/
DImageTransformationTest.java77 ImageTransformation trans = new ImageTransformation in fieldCannotBeFound() local
86 trans.apply(finder, template, 0); in fieldCannotBeFound()
96 ImageTransformation trans = new ImageTransformation in theOneOptionsMatches() local
105 trans.apply(finder, template, 0); in theOneOptionsMatches()
113 ImageTransformation trans = new ImageTransformation in theOneOptionsMatchesWithContentDescription() local
122 trans.apply(finder, template, 0); in theOneOptionsMatchesWithContentDescription()
132 ImageTransformation trans = new ImageTransformation in noOptionsMatches() local
141 trans.apply(finder, template, 0); in noOptionsMatches()
150 ImageTransformation trans = new ImageTransformation in multipleOptionsOneMatches() local
160 trans.apply(finder, template, 0); in multipleOptionsOneMatches()
[all …]
DCharSequenceTransformationTest.java88 CharSequenceTransformation trans = b.build(); in testBadSubst() local
98 assertThrows(IndexOutOfBoundsException.class, () -> trans.apply(finder, template, 0)); in testBadSubst()
118 CharSequenceTransformation trans = b.build(); in testUnknownField() local
127 trans.apply(finder, template, 0); in testUnknownField()
136 CharSequenceTransformation trans = new CharSequenceTransformation in testCreditCardObfuscator() local
147 trans.apply(finder, template, 0); in testCreditCardObfuscator()
155 CharSequenceTransformation trans = new CharSequenceTransformation in testReplaceAllByOne() local
164 trans.apply(finder, template, 0); in testReplaceAllByOne()
172 CharSequenceTransformation trans = new CharSequenceTransformation in testPartialMatchIsIgnored() local
181 trans.apply(finder, template, 0); in testPartialMatchIsIgnored()
[all …]
DDateTransformationTest.java63 final DateTransformation trans = new DateTransformation(mFieldId, new SimpleDateFormat()); in testFieldNotFound() local
65 trans.apply(mValueFinder, mTemplate, 0); in testFieldNotFound()
72 final DateTransformation trans = new DateTransformation(mFieldId, new SimpleDateFormat()); in testInvalidAutofillValueType() local
76 trans.apply(mValueFinder, mTemplate, 0); in testInvalidAutofillValueType()
83 final DateTransformation trans = new DateTransformation(mFieldId, in testValidAutofillValue() local
94 trans.apply(mValueFinder, mTemplate, 0); in testValidAutofillValue()
DCustomDescriptionTest.java158 final CharSequenceTransformation trans = new CharSequenceTransformation in testSanitizationBeforeTransformations()
164 .addChild(R.id.first, trans) in testSanitizationBeforeTransformations()
437 ImageTransformation trans = new ImageTransformation.Builder(usernameId, in badImageTransformation() local
441 .addChild(R.id.img, trans) in badImageTransformation()
452 ImageTransformation trans = new ImageTransformation in unusedImageTransformation() local
457 .addChild(R.id.img, trans) in unusedImageTransformation()
468 ImageTransformation trans = new ImageTransformation in applyImageTransformationToTextView() local
473 .addChild(R.id.first, trans) in applyImageTransformationToTextView()
483 CharSequenceTransformation trans = new CharSequenceTransformation in failFirstFailAll() local
489 .addChild(R.id.first, trans) in failFirstFailAll()
[all …]
/cts/tests/tests/rsblas/src/android/renderscript/cts/
DIntrinsicBLAS.java238 private void xGEMV_API_test(int trans, int incX, int incY, ArrayList<Allocation> mMatrix) { in xGEMV_API_test() argument
249 if (validateGEMV(elemA, trans, matA, vecX, incX, vecY, incY)) { in xGEMV_API_test()
252 mBLAS.SGEMV(trans, alphaS, matA, vecX, incX, betaS, vecY, incY); in xGEMV_API_test()
254 mBLAS.DGEMV(trans, alphaD, matA, vecX, incX, betaD, vecY, incY); in xGEMV_API_test()
256 mBLAS.CGEMV(trans, alphaC, matA, vecX, incX, betaC, vecY, incY); in xGEMV_API_test()
258 mBLAS.ZGEMV(trans, alphaZ, matA, vecX, incX, betaZ, vecY, incY); in xGEMV_API_test()
265 mBLAS.SGEMV(trans, alphaS, matA, vecX, incX, betaS, vecY, incY); in xGEMV_API_test()
270 mBLAS.DGEMV(trans, alphaD, matA, vecX, incX, betaD, vecY, incY); in xGEMV_API_test()
275 mBLAS.CGEMV(trans, alphaC, matA, vecX, incX, betaC, vecY, incY); in xGEMV_API_test()
280 mBLAS.ZGEMV(trans, alphaZ, matA, vecX, incX, betaZ, vecY, incY); in xGEMV_API_test()
[all …]