Home
last modified time | relevance | path

Searched refs:BooleanArray (Results 1 – 25 of 53) sorted by relevance

123

/aosp_15_r20/platform_testing/libraries/screenshot/src/androidTest/java/platform/test/screenshot/
H A DMSSIMMatcherTest.kt35 val filter = BooleanArray(first.width * first.height) { true } in performDiff_sameBitmaps()
55 val filter = BooleanArray(first.width * first.height) { false } in performDiff_noPixelsCompared()
74 val filter = BooleanArray(first.width * first.height) { false } in performDiff_sameRegion()
103 val filter = BooleanArray(first.width * first.height) { true } in performDiff_checkedAgainstUnchecked()
122 val filter = BooleanArray(first.width * first.height) { true } in performDiff_differentBorders()
141 val filter = BooleanArray(first.width * first.height) { true } in performDiff_fullscreen_differentBorders_dark()
160 val filter = BooleanArray(first.width * first.height) { true } in performDiff_differentBorders_dark()
179 val filter = BooleanArray(first.width * first.height) { true } in performDiff_fullscreen_movedToRight()
198 val filter = BooleanArray(first.width * first.height) { true } in performDiff_fullscreen_checkboxes_differentRadius()
/aosp_15_r20/external/dagger2/javatests/dagger/functional/kotlinsrc/basic/
H A DInjectedThing.kt65 booleanArray: BooleanArray,
73 booleanArrayProvider: Provider<BooleanArray>,
81 lazyBooleanArray: Lazy<BooleanArray>,
124 @Inject internal lateinit var booleanArray: BooleanArray
132 @Inject internal lateinit var booleanArrayProvider: Provider<BooleanArray>
140 @Inject internal lateinit var lazyBooleanArray: Lazy<BooleanArray>
178 @Inject internal fun booleanArray(booleanArray: BooleanArray) {} in booleanArray()
186 @Inject internal fun booleanArrayProvider(booleanArrayProvider: Provider<BooleanArray>) {} in booleanArrayProvider()
194 @Inject internal fun lazyBooleanArray(lazyBooleanArray: Lazy<BooleanArray>) {} in lazyBooleanArray()
H A DBasicComponent.kt55 fun booleanArrayFun(): BooleanArray
64 fun booleanArrayProviderFun(): Provider<BooleanArray>
107 val booleanArrayVal: BooleanArray
116 val booleanArrayProviderVal: Provider<BooleanArray>
H A DPrimitivesModule.kt59 @Provides fun provideBooleanArray(): BooleanArray = BOUND_BOOLEAN_ARRAY
/aosp_15_r20/external/kotlinx.serialization/core/commonMain/src/kotlinx/serialization/internal/
H A DPrimitiveArraysSerializers.kt369 internal object BooleanArraySerializer : KSerializer<BooleanArray>, in build()
370 PrimitiveArraySerializer<Boolean, BooleanArray, BooleanArrayBuilder>(Boolean.serializer()) { in build()
372 override fun BooleanArray.collectionSize(): Int = size in build()
373 override fun BooleanArray.toBuilder(): BooleanArrayBuilder = BooleanArrayBuilder(this) in build()
374 override fun empty(): BooleanArray = BooleanArray(0) in build()
380 override fun writeContent(encoder: CompositeEncoder, content: BooleanArray, size: Int) { in build()
388 bufferWithData: BooleanArray
389 ) : PrimitiveArrayBuilder<BooleanArray>() {
391 private var buffer: BooleanArray = bufferWithData
/aosp_15_r20/platform_testing/libraries/screenshot/src/main/java/platform/test/screenshot/matchers/
H A DMSSIMMatcher.kt80 filter: BooleanArray in calculateSSIM()
92 filter: BooleanArray in calculateSSIM()
171 filter: BooleanArray in shouldIgnorePixel()
186 filter: BooleanArray in shouldIgnoreWindow()
206 filter: BooleanArray in numPixelsToCompareInWindow()
241 filter: BooleanArray, in getMeans()
274 filter: BooleanArray, in getVariances()
H A DBitmapMatcher.kt105 protected fun getFilter(width: Int, height: Int, regions: List<Rect>): BooleanArray { in <lambda>()
107 BooleanArray(width * height) { true } in <lambda>()
110 BooleanArray(width * height).also { filterArr -> in <lambda>()
/aosp_15_r20/packages/apps/Calendar/src/com/android/calendar/month/
DSimpleWeekView.kt65 @JvmField protected var mFocusDay: BooleanArray = BooleanArray(mNumCells)
68 @JvmField protected var mOddMonth: BooleanArray = BooleanArray(mNumCells)
167 mFocusDay = BooleanArray(mNumCells) in setWeekParams()
168 mOddMonth = BooleanArray(mNumCells) in setWeekParams()
/aosp_15_r20/packages/modules/Permission/PermissionController/src/com/android/permissioncontroller/permission/ui/handheld/
DGrantPermissionsViewHandlerImpl.kt103 private val buttonVisibilities = BooleanArray(NEXT_BUTTON) { false } in <lambda>()
104 private val locationVisibilities = BooleanArray(NEXT_LOCATION_DIALOG) { false } in <lambda>()
166 buttonVisibilities: BooleanArray?, in updateUi()
167 locationVisibilities: BooleanArray? in updateUi()
291 private fun setButtonVisibilities(visibilities: BooleanArray?) { in setButtonVisibilities()
302 private fun setLocationVisibilities(visibilities: BooleanArray?) { in setLocationVisibilities()
/aosp_15_r20/packages/apps/Launcher3/tests/multivalentTests/src/com/android/launcher3/
DFakeInvariantDeviceProfileTest.kt167 startAlignTaskbar = BooleanArray(4) { false } in newDP()
169 inlineQsb = BooleanArray(4) { false } in newDP()
330 startAlignTaskbar = BooleanArray(4) { true } in initializeVarsForTwoPanel()
/aosp_15_r20/external/kotlinpoet/interop/ksp/test-processor/src/main/kotlin/com/squareup/kotlinpoet/ksp/test/processor/
H A DexampleAnnotations.kt23 val booleanArray: BooleanArray = [true],
50 val booleanArray: BooleanArray,
/aosp_15_r20/cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/
H A DAImageDecoderTest.kt833 arrayOf<Any>("animated.gif", BooleanArray(4) { true }), in <lambda>()
834 arrayOf<Any>("animated_webp.webp", BooleanArray(4) { true }), in <lambda>()
845 arrayOf<Any>("required_webp.webp", BooleanArray(7) { false }), in <lambda>()
857 arrayOf<Any>("stoplight.webp", BooleanArray(3) { false }) in <lambda>()
862 fun testAlphas(image: String, alphas: BooleanArray) = testFrameInfo(image) { in <lambda>()
1050 fun test565NoAnimation(image: String, alphas: BooleanArray) { in <lambda>()
/aosp_15_r20/external/oboe/samples/SoundBoard/src/main/kotlin/com/google/oboe/samples/soundboard/
H A DMusicTileView.kt32 private val mIsPressedPerRectangle: BooleanArray = BooleanArray(mRectangles.size)
/aosp_15_r20/packages/apps/Calendar/src/com/android/calendar/
DEventLoader.kt58 var eventDays: BooleanArray,
262 eventDays: BooleanArray, in loadEventDaysInBackground()
/aosp_15_r20/external/flatbuffers/kotlin/flatbuffers-kotlin/src/commonTest/kotlin/com/google/flatbuffers/kotlin/
H A DByteArrayTest.kt192 fun arrayFailMessage(expected: BooleanArray, actual: BooleanArray): String { in arrayFailMessage()
/aosp_15_r20/frameworks/libs/systemui/msdllib/tests/src/com/google/android/msdl/domain/
DFakeVibrator.kt55 override fun arePrimitivesSupported(vararg primitiveIds: Int): BooleanArray = in <lambda>()
/aosp_15_r20/external/jazzer-api/src/test/java/com/code_intelligence/jazzer/instrumentor/
H A DDescriptorUtilsTest.kt26 assertEquals("[[[Z", Array<Array<BooleanArray>>::class.java.descriptor) in testClassDescriptor()
/aosp_15_r20/external/leakcanary2/shark-hprof/src/main/java/shark/
H A DHprofRecordReader.kt461 fun readBooleanArray(arrayLength: Int): BooleanArray { in <lambda>()
462 return BooleanArray(arrayLength) { readByte().toInt() != 0 } in <lambda>()
H A DHprofRecord.kt101 val array: BooleanArray
/aosp_15_r20/external/kotlinx.serialization/formats/json-tests/commonTest/src/kotlinx/serialization/features/
H A DPrimitiveArraySerializersTest.kt18 val arr3: BooleanArray = booleanArrayOf(true, false),
/aosp_15_r20/external/kotlinx.serialization/core/wasmMain/src/kotlinx/serialization/internal/
H A DPlatform.kt16 internal actual inline fun BooleanArray.getChecked(index: Int): Boolean { in getChecked()
/aosp_15_r20/external/kotlinx.serialization/core/nativeMain/src/kotlinx/serialization/internal/
H A DPlatform.kt16 internal actual inline fun BooleanArray.getChecked(index: Int): Boolean { in getChecked()
/aosp_15_r20/external/kotlinx.serialization/core/jsMain/src/kotlinx/serialization/internal/
H A DPlatform.kt15 internal actual fun BooleanArray.getChecked(index: Int): Boolean { in getChecked()
/aosp_15_r20/external/ksp/test-utils/testData/api/
H A DannotatedUtil.kt65 val booleanArrayValue: BooleanArray = booleanArrayOf(),
/aosp_15_r20/packages/apps/DeskClock/src/com/android/deskclock/uidata/
DTabModel.kt37 private val mTabScrolledToTop = BooleanArray(UiDataModel.Tab.values().size)

123