Home
last modified time | relevance | path

Searched refs:wrapped (Results 1 – 8 of 8) sorted by relevance

/cts/tests/tests/text/src/android/text/cts/
DBidiFormatterTest.java261 Spanned wrapped; in testCharSequenceApis() local
264 wrapped = (Spanned) LTR_FMT.unicodeWrap(CS_EN_HE); in testCharSequenceApis()
265 assertEquals(EN + HE + LRM, wrapped.toString()); in testCharSequenceApis()
266 spans = wrapped.getSpans(0, wrapped.length(), Object.class); in testCharSequenceApis()
269 assertEquals(0, wrapped.getSpanStart(RELATIVE_SIZE_SPAN)); in testCharSequenceApis()
270 assertEquals(EN.length(), wrapped.getSpanEnd(RELATIVE_SIZE_SPAN)); in testCharSequenceApis()
272 wrapped = (Spanned) LTR_FMT.unicodeWrap(CS_EN_HE, TextDirectionHeuristics.LTR); in testCharSequenceApis()
273 assertEquals(EN + HE + LRM, wrapped.toString()); in testCharSequenceApis()
274 spans = wrapped.getSpans(0, wrapped.length(), Object.class); in testCharSequenceApis()
277 assertEquals(0, wrapped.getSpanStart(RELATIVE_SIZE_SPAN)); in testCharSequenceApis()
[all …]
/cts/tools/vm-tests-tf/src/dot/junit/
DDxTestCase.java65 public static void loadAndRun(String className, boolean isStatic, boolean wrapped, in loadAndRun() argument
95 checkError(expectedErrorClass, t, wrapped); in loadAndRun()
DDxAbstractMain.java68 public static void loadAndRun(String className, boolean isStatic, boolean wrapped, in loadAndRun() argument
97 checkError(expectedErrorClass, t, wrapped); in loadAndRun()
/cts/tests/tests/slice/src/android/slice/cts/
DLocalSliceProvider.java55 Context wrapped = new ContextWrapper(context) { in attachInfo() local
64 super.attachInfo(wrapped, info); in attachInfo()
/cts/tests/tests/appop/appopsTestUtilLib/src/android/app/appops/cts/
DAppOpsUtils.kt183 fun withEnabledCompatChange(changeId: Long, packageName: String, wrapped: () -> Unit) { in withEnabledCompatChange()
187 wrapped() in withEnabledCompatChange()
/cts/hostsidetests/security/
DAndroid.bp54 // These two host cc_library_* modules cannot be wrapped as java_resources directly into
/cts/tests/inputmethod/util/src/android/view/inputmethod/cts/util/
DTestUtils.java94 FutureTask<Void> wrapped = new FutureTask<>(task, null); in runOnMainSyncWithRethrowing() local
95 InstrumentationRegistry.getInstrumentation().runOnMainSync(wrapped); in runOnMainSyncWithRethrowing()
97 wrapped.get(); in runOnMainSyncWithRethrowing()
/cts/tests/tests/secure_element/omapi/src/android/omapi/cts/
DOmapiTest.java667 ByteBuffer wrapped = ByteBuffer.wrap(b); in testSegmentedResponseTransmit() local
668 int expectedLength = wrapped.getInt(); in testSegmentedResponseTransmit()