Home
last modified time | relevance | path

Searched refs:joinByteArrays (Results 1 – 13 of 13) sorted by relevance

/external/connectedappssdk/tests/robotests/src/test/java/com/google/android/enterprise/connectedapps/internal/
DByteUtilitiesTest.java38 assertThat(ByteUtilities.joinByteArrays(FIRST_ARRAY, SECOND_ARRAY)).isEqualTo(expectedResult); in joinByteArrays_resultIsMerged()
43 assertThat(ByteUtilities.joinByteArrays(new byte[0], SECOND_ARRAY)).isEqualTo(SECOND_ARRAY); in joinByteArrays_emptyFirstArray_equalsSecondArray()
48 assertThat(ByteUtilities.joinByteArrays(FIRST_ARRAY, new byte[0])).isEqualTo(FIRST_ARRAY); in joinByteArrays_emptySecondArray_equalsFirstArray()
/external/exoplayer/tree/library/common/src/test/java/com/google/android/exoplayer2/metadata/emsg/
DEventMessageEncoderTest.java20 import static com.google.android.exoplayer2.testutil.TestUtil.joinByteArrays;
38 joinByteArrays(
67 joinByteArrays( in encodeEventStreamMultipleTimesWorkingCorrectly()
DEventMessageDecoderTest.java20 import static com.google.android.exoplayer2.testutil.TestUtil.joinByteArrays;
37 joinByteArrays( in decodeEventMessage()
/external/exoplayer/tree/library/core/src/test/java/com/google/android/exoplayer2/metadata/
DMetadataRendererTest.java45 TestUtil.joinByteArrays(
171 TestUtil.joinByteArrays( in encodeTxxxId3Frame()
187 TestUtil.joinByteArrays( in encodeTxxxId3Frame()
/external/exoplayer/tree/library/extractor/src/test/java/com/google/android/exoplayer2/extractor/ogg/
DDefaultOggSeekerTest.java128 TestUtil.joinByteArrays( in skipToNextPage_success()
141 TestUtil.joinByteArrays( in skipToNextPage_withOverlappingInput_success()
154 TestUtil.joinByteArrays(new byte[] {'x', 'O', 'g', 'g', 'S'}), in skipToNextPage_withInputShorterThanPeekLength_success()
/external/connectedappssdk/sdk/src/main/java/com/google/android/enterprise/connectedapps/internal/
DByteUtilities.java23 public static byte[] joinByteArrays(byte[] firstArray, byte[] secondArray) { in joinByteArrays() method in ByteUtilities
DParcelCallReceiver.java51 return ByteUtilities.joinByteArrays(new byte[] {0}, responseBytes); in prepareResponse()
/external/exoplayer/tree/library/extractor/src/test/java/com/google/android/exoplayer2/extractor/ts/
DAdtsReaderTest.java60 TestUtil.joinByteArrays(ID3_DATA_1, ID3_DATA_2, ADTS_HEADER, ADTS_CONTENT);
97 TestUtil.joinByteArrays( in skipToNextSampleResetsState()
/external/connectedappssdk/tests/robotests/src/test/java/com/google/android/enterprise/connectedapps/
DTestService.java95 return ByteUtilities.joinByteArrays(new byte[] {0}, parcelBytes); in prepareResponse()
/external/exoplayer/tree/testutils/src/main/java/com/google/android/exoplayer2/testutil/
DFakeTrackOutput.java87 sampleData = TestUtil.joinByteArrays(sampleData, newData); in sampleData()
95 sampleData = TestUtil.joinByteArrays(sampleData, newData); in sampleData()
DTestUtil.java174 public static byte[] joinByteArrays(byte[]... byteArrays) { in joinByteArrays() method in TestUtil
/external/exoplayer/tree/library/core/src/test/java/com/google/android/exoplayer2/metadata/icy/
DIcyDecoderTest.java57 byte[] paddedRawBytes = TestUtil.joinByteArrays(icyTitle, icyUrl); in decode_respectsLimit()
/external/exoplayer/tree/library/core/src/test/java/com/google/android/exoplayer2/source/
DSampleQueueTest.java486 TestUtil.joinByteArrays( in trailingCryptoInfoInitializationVectorBytesZeroed()