Home
last modified time | relevance | path

Searched refs:testPackedCompat (Results 1 – 14 of 14) sorted by relevance

/frameworks/base/tests/ProtoInputStreamTests/src/com/android/test/protoinputstream/
DProtoInputStreamBoolTest.java334 public void testPackedCompat() throws Exception { in testPackedCompat() method in ProtoInputStreamBoolTest
335 testPackedCompat(new boolean[0]); in testPackedCompat()
336 testPackedCompat(new boolean[]{false, true}); in testPackedCompat()
342 private void testPackedCompat(boolean[] val) throws Exception { in testPackedCompat() method in ProtoInputStreamBoolTest
DProtoInputStreamEnumTest.java400 public void testPackedCompat() throws Exception { in testPackedCompat() method in ProtoInputStreamEnumTest
401 testPackedCompat(new int[]{}); in testPackedCompat()
402 testPackedCompat(new int[]{0, 1}); in testPackedCompat()
412 private void testPackedCompat(int[] val) throws Exception { in testPackedCompat() method in ProtoInputStreamEnumTest
DProtoInputStreamInt32Test.java399 public void testPackedCompat() throws Exception { in testPackedCompat() method in ProtoInputStreamInt32Test
400 testPackedCompat(new int[0]); in testPackedCompat()
401 testPackedCompat(new int[]{0, 1, -1, Integer.MIN_VALUE, Integer.MAX_VALUE}); in testPackedCompat()
407 private void testPackedCompat(int[] val) throws Exception { in testPackedCompat() method in ProtoInputStreamInt32Test
DProtoInputStreamSFixed32Test.java381 public void testPackedCompat() throws Exception { in testPackedCompat() method in ProtoInputStreamSFixed32Test
382 testPackedCompat(new int[0]); in testPackedCompat()
383 testPackedCompat(new int[]{0, 1, -1, Integer.MIN_VALUE, Integer.MAX_VALUE}); in testPackedCompat()
389 private void testPackedCompat(int[] val) throws Exception { in testPackedCompat() method in ProtoInputStreamSFixed32Test
DProtoInputStreamSInt32Test.java381 public void testPackedCompat() throws Exception { in testPackedCompat() method in ProtoInputStreamSInt32Test
382 testPackedCompat(new int[0]); in testPackedCompat()
383 testPackedCompat(new int[]{0, 1, -1, Integer.MIN_VALUE, Integer.MAX_VALUE}); in testPackedCompat()
389 private void testPackedCompat(int[] val) throws Exception { in testPackedCompat() method in ProtoInputStreamSInt32Test
DProtoInputStreamUInt32Test.java398 public void testPackedCompat() throws Exception { in testPackedCompat() method in ProtoInputStreamUInt32Test
399 testPackedCompat(new int[0]); in testPackedCompat()
400 testPackedCompat(new int[]{0, 1, -1, Integer.MIN_VALUE, Integer.MAX_VALUE}); in testPackedCompat()
406 private void testPackedCompat(int[] val) throws Exception { in testPackedCompat() method in ProtoInputStreamUInt32Test
DProtoInputStreamFixed32Test.java381 public void testPackedCompat() throws Exception { in testPackedCompat() method in ProtoInputStreamFixed32Test
382 testPackedCompat(new int[0]); in testPackedCompat()
383 testPackedCompat(new int[]{0, 1, -1, Integer.MIN_VALUE, Integer.MAX_VALUE}); in testPackedCompat()
389 private void testPackedCompat(int[] val) throws Exception { in testPackedCompat() method in ProtoInputStreamFixed32Test
DProtoInputStreamInt64Test.java479 public void testPackedCompat() throws Exception { in testPackedCompat() method in ProtoInputStreamInt64Test
480 testPackedCompat(new long[0]); in testPackedCompat()
481 testPackedCompat(new long[]{0, 1, -1, Integer.MIN_VALUE, Integer.MAX_VALUE}); in testPackedCompat()
487 private void testPackedCompat(long[] val) throws Exception { in testPackedCompat() method in ProtoInputStreamInt64Test
DProtoInputStreamFixed64Test.java481 public void testPackedCompat() throws Exception { in testPackedCompat() method in ProtoInputStreamFixed64Test
482 testPackedCompat(new long[0]); in testPackedCompat()
483 testPackedCompat(new long[]{0, 1, -1, Integer.MIN_VALUE, Integer.MAX_VALUE}); in testPackedCompat()
489 private void testPackedCompat(long[] val) throws Exception { in testPackedCompat() method in ProtoInputStreamFixed64Test
DProtoInputStreamUInt64Test.java475 public void testPackedCompat() throws Exception { in testPackedCompat() method in ProtoInputStreamUInt64Test
476 testPackedCompat(new long[0]); in testPackedCompat()
477 testPackedCompat(new long[]{0, 1, -1, Integer.MIN_VALUE, Integer.MAX_VALUE}); in testPackedCompat()
483 private void testPackedCompat(long[] val) throws Exception { in testPackedCompat() method in ProtoInputStreamUInt64Test
DProtoInputStreamSFixed64Test.java481 public void testPackedCompat() throws Exception { in testPackedCompat() method in ProtoInputStreamSFixed64Test
482 testPackedCompat(new long[0]); in testPackedCompat()
483 testPackedCompat(new long[]{0, 1, -1, Integer.MIN_VALUE, Integer.MAX_VALUE}); in testPackedCompat()
489 private void testPackedCompat(long[] val) throws Exception { in testPackedCompat() method in ProtoInputStreamSFixed64Test
DProtoInputStreamSInt64Test.java456 public void testPackedCompat() throws Exception { in testPackedCompat() method in ProtoInputStreamSInt64Test
457 testPackedCompat(new long[0]); in testPackedCompat()
458 testPackedCompat(new long[]{0, 1, -1, Integer.MIN_VALUE, Integer.MAX_VALUE}); in testPackedCompat()
464 private void testPackedCompat(long[] val) throws Exception { in testPackedCompat() method in ProtoInputStreamSInt64Test
DProtoInputStreamFloatTest.java510 public void testPackedCompat() throws Exception { in testPackedCompat() method in ProtoInputStreamFloatTest
511 testPackedCompat(new float[0]); in testPackedCompat()
512 testPackedCompat(new float[]{0, 1, -1234.432f, 42.42f, in testPackedCompat()
521 private void testPackedCompat(float[] val) throws Exception { in testPackedCompat() method in ProtoInputStreamFloatTest
DProtoInputStreamDoubleTest.java557 public void testPackedCompat() throws Exception { in testPackedCompat() method in ProtoInputStreamDoubleTest
558 testPackedCompat(new double[0]); in testPackedCompat()
559 testPackedCompat(new double[]{0, 1, -1234.432, 42.42, in testPackedCompat()
568 private void testPackedCompat(double[] val) throws Exception { in testPackedCompat() method in ProtoInputStreamDoubleTest