Home
last modified time | relevance | path

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

/external/kotlinpoet/interop/javapoet/src/main/kotlin/com/squareup/kotlinpoet/javapoet/
DK2jInterop.kt23 import com.squareup.kotlinpoet.BOOLEAN_ARRAY
76 BOOLEAN_ARRAY -> ArrayTypeName.of(JTypeName.BOOLEAN) in toJClassName()
/external/connectedappssdk/tests/robotests/src/test/java/com/google/android/enterprise/connectedapps/robotests/
DTypesTest.java107 private static final boolean[] BOOLEAN_ARRAY = new boolean[]{BOOLEAN}; field in TypesTest
109 new boolean[][][] {{BOOLEAN_ARRAY}};
841 …at(senderProvider.provide(context, testProfileConnector).identityBooleanArrayMethod(BOOLEAN_ARRAY)) in booleanArrayReturnTypeAndArgument_bothWork()
842 .isEqualTo(BOOLEAN_ARRAY); in booleanArrayReturnTypeAndArgument_bothWork()
/external/kotlinpoet/kotlinpoet/src/main/java/com/squareup/kotlinpoet/
DTypeName.kt287 @JvmField public val BOOLEAN_ARRAY: ClassName = ClassName("kotlin", "BooleanArray") constant
/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/
DDexMakerTest.java71 private static TypeId<boolean[]> BOOLEAN_ARRAY = TypeId.get(boolean[].class); field in DexMakerTest
1808 Method booleanArrayLength = arrayLengthMethod(BOOLEAN_ARRAY); in testArrayLength()
1848 Method newBooleanArray = newArrayMethod(BOOLEAN_ARRAY); in testNewArray()
1891 Method swapBooleanArray = arraySwapMethod(BOOLEAN_ARRAY, TypeId.BOOLEAN); in testReadAndWriteArray()
/external/kotlinpoet/kotlinpoet/api/
Dkotlinpoet.api843 public static final field BOOLEAN_ARRAY Lcom/squareup/kotlinpoet/ClassName;