Searched refs:booleanValues (Results 1 – 4 of 4) sorted by relevance
59 @Nullable boolean[] booleanValues) { in Metrics() argument62 this.mBooleanValues = booleanValues; in Metrics()152 boolean[] booleanValues = (flg & 0x4) == 0 ? null : in.createBooleanArray(); in Metrics()156 this.mBooleanValues = booleanValues; in Metrics()
84 boolean[] booleanValues = (boolean[]) property; in toDocumentProto()85 for (int j = 0; j < booleanValues.length; j++) { in toDocumentProto()86 propertyProto.addBooleanValues(booleanValues[j]); in toDocumentProto()
59 assertEquals(true, eventFields.metrics().booleanValues(0)); in testCreateEventData()60 assertEquals(false, eventFields.metrics().booleanValues(1)); in testCreateEventData()
382 boolean[] booleanValues = (boolean[]) currentElementValue; in getRawPropertyFromRawDocument()383 if (index < booleanValues.length) { in getRawPropertyFromRawDocument()384 extractedValue = Arrays.copyOfRange(booleanValues, index, index + 1); in getRawPropertyFromRawDocument()