Home
last modified time | relevance | path

Searched refs:convertBoolArrayToByteArray (Results 1 – 2 of 2) sorted by relevance

/external/zxing/core/src/test/java/com/google/zxing/aztec/decoder/
DDecoderTest.java219 assertArrayEquals(byte0, Decoder.convertBoolArrayToByteArray(bool0)); in testRawBytes()
220 assertArrayEquals(byte1, Decoder.convertBoolArrayToByteArray(bool1)); in testRawBytes()
221 assertArrayEquals(byte7, Decoder.convertBoolArrayToByteArray(bool7)); in testRawBytes()
222 assertArrayEquals(byte8, Decoder.convertBoolArrayToByteArray(bool8)); in testRawBytes()
223 assertArrayEquals(byte9, Decoder.convertBoolArrayToByteArray(bool9)); in testRawBytes()
224 assertArrayEquals(byte16, Decoder.convertBoolArrayToByteArray(bool16)); in testRawBytes()
/external/zxing/core/src/main/java/com/google/zxing/aztec/decoder/
DDecoder.java85 byte[] rawBytes = convertBoolArrayToByteArray(correctedBits.correctBits); in decode()
437 static byte[] convertBoolArrayToByteArray(boolean[] boolArr) { in convertBoolArrayToByteArray() method in Decoder