Searched refs:booleanValues (Results 1 – 5 of 5) sorted by relevance
81 @Param(id = 5) boolean @Nullable [] booleanValues, in PropertyParcel()90 mBooleanValues = booleanValues; in PropertyParcel()305 public @NonNull Builder setBooleanValues(boolean @NonNull [] booleanValues) { in setBooleanValues() argument306 mBooleanValues = Objects.requireNonNull(booleanValues); in setBooleanValues()
53 boolean[] booleanValues = {true, false}; in testPropertyParcel_onePropertySet_success()80 .setBooleanValues(booleanValues) in testPropertyParcel_onePropertySet_success()83 .isEqualTo(Arrays.copyOf(booleanValues, booleanValues.length)); in testPropertyParcel_onePropertySet_success()
93 boolean[] booleanValues = (boolean[]) property; in toDocumentProto()94 for (int j = 0; j < booleanValues.length; j++) { in toDocumentProto()95 propertyProto.addBooleanValues(booleanValues[j]); in toDocumentProto()
571 boolean[] booleanValues = new boolean[values.size()]; in addPrimitiveProperty()573 booleanValues[i] = Boolean.parseBoolean(values.get(i)); in addPrimitiveProperty()575 builder.setPropertyBoolean(propertyConfig.getName(), booleanValues); in addPrimitiveProperty() local
405 boolean[] booleanValues = propertyParcel.getBooleanValues(); in getRawPropertyFromRawDocument()406 if (booleanValues != null && index < booleanValues.length) { in getRawPropertyFromRawDocument()407 extractedValue = Arrays.copyOfRange(booleanValues, index, index + 1); in getRawPropertyFromRawDocument()