OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:testRepeatedCompat
(Results
1 - 16
of
16
) sorted by null
/cts/tests/tests/proto/src/android/util/proto/cts/
ProtoOutputStreamBoolTest.java
141
public void
testRepeatedCompat
() throws Exception {
142
testRepeatedCompat
(new boolean[0]);
143
testRepeatedCompat
(new boolean[] { false, true });
147
* Implementation of
testRepeatedCompat
with a given value.
149
public void
testRepeatedCompat
(boolean[] val) throws Exception {
ProtoOutputStreamBytesTest.java
180
public void
testRepeatedCompat
() throws Exception {
181
testRepeatedCompat
(new byte[0][]);
182
testRepeatedCompat
(new byte[][] {
191
* Implementation of
testRepeatedCompat
with a given value.
193
public void
testRepeatedCompat
(byte[][] val) throws Exception {
ProtoOutputStreamDoubleTest.java
272
public void
testRepeatedCompat
() throws Exception {
273
testRepeatedCompat
(new double[0]);
274
testRepeatedCompat
(new double[] { 0, 1, -1234.432, 42.42,
281
* Implementation of
testRepeatedCompat
with a given value.
283
public void
testRepeatedCompat
(double[] val) throws Exception {
ProtoOutputStreamEnumTest.java
192
public void
testRepeatedCompat
() throws Exception {
193
testRepeatedCompat
(new int[0]);
194
testRepeatedCompat
(new int[] { 0, 1, -1, Integer.MIN_VALUE, Integer.MAX_VALUE });
198
* Implementation of
testRepeatedCompat
with a given value.
200
public void
testRepeatedCompat
(int[] val) throws Exception {
ProtoOutputStreamFixed32Test.java
180
public void
testRepeatedCompat
() throws Exception {
181
testRepeatedCompat
(new int[0]);
182
testRepeatedCompat
(new int[] { 0, 1, -1, Integer.MIN_VALUE, Integer.MAX_VALUE, });
186
* Implementation of
testRepeatedCompat
with a given value.
188
public void
testRepeatedCompat
(int[] val) throws Exception {
ProtoOutputStreamFixed64Test.java
228
public void
testRepeatedCompat
() throws Exception {
229
testRepeatedCompat
(new long[0]);
230
testRepeatedCompat
(new long[] { 0, 1, -1, Integer.MIN_VALUE, Integer.MAX_VALUE,
235
* Implementation of
testRepeatedCompat
with a given value.
237
public void
testRepeatedCompat
(long[] val) throws Exception {
ProtoOutputStreamFloatTest.java
248
public void
testRepeatedCompat
() throws Exception {
249
testRepeatedCompat
(new float[0]);
250
testRepeatedCompat
(new float[] { 0, 1, -1234.432f, 42.42f,
257
* Implementation of
testRepeatedCompat
with a given value.
259
public void
testRepeatedCompat
(float[] val) throws Exception {
ProtoOutputStreamInt32Test.java
186
public void
testRepeatedCompat
() throws Exception {
187
testRepeatedCompat
(new int[0]);
188
testRepeatedCompat
(new int[] { 0, 1, -1, Integer.MIN_VALUE, Integer.MAX_VALUE });
192
* Implementation of
testRepeatedCompat
with a given value.
194
public void
testRepeatedCompat
(int[] val) throws Exception {
ProtoOutputStreamInt64Test.java
218
public void
testRepeatedCompat
() throws Exception {
219
testRepeatedCompat
(new long[0]);
220
testRepeatedCompat
(new long[] { 0, 1, -1, Integer.MIN_VALUE, Integer.MAX_VALUE,
225
* Implementation of
testRepeatedCompat
with a given value.
227
public void
testRepeatedCompat
(long[] val) throws Exception {
ProtoOutputStreamSFixed32Test.java
180
public void
testRepeatedCompat
() throws Exception {
181
testRepeatedCompat
(new int[0]);
182
testRepeatedCompat
(new int[] { 0, 1, -1, Integer.MIN_VALUE, Integer.MAX_VALUE, });
186
* Implementation of
testRepeatedCompat
with a given value.
188
public void
testRepeatedCompat
(int[] val) throws Exception {
ProtoOutputStreamSFixed64Test.java
227
public void
testRepeatedCompat
() throws Exception {
228
testRepeatedCompat
(new long[0]);
229
testRepeatedCompat
(new long[] { 0, 1, -1, Integer.MIN_VALUE, Integer.MAX_VALUE,
234
* Implementation of
testRepeatedCompat
with a given value.
236
public void
testRepeatedCompat
(long[] val) throws Exception {
ProtoOutputStreamSInt32Test.java
180
public void
testRepeatedCompat
() throws Exception {
181
testRepeatedCompat
(new int[0]);
182
testRepeatedCompat
(new int[] { 0, 1, -1, Integer.MIN_VALUE, Integer.MAX_VALUE });
186
* Implementation of
testRepeatedCompat
with a given value.
188
public void
testRepeatedCompat
(int[] val) throws Exception {
ProtoOutputStreamSInt64Test.java
214
public void
testRepeatedCompat
() throws Exception {
215
testRepeatedCompat
(new long[0]);
216
testRepeatedCompat
(new long[] { 0, 1, -1, Integer.MIN_VALUE, Integer.MAX_VALUE,
221
* Implementation of
testRepeatedCompat
with a given value.
223
public void
testRepeatedCompat
(long[] val) throws Exception {
ProtoOutputStreamUInt32Test.java
180
public void
testRepeatedCompat
() throws Exception {
181
testRepeatedCompat
(new int[0]);
182
testRepeatedCompat
(new int[] { 0, 1, -1, Integer.MIN_VALUE, Integer.MAX_VALUE });
186
* Implementation of
testRepeatedCompat
with a given value.
188
public void
testRepeatedCompat
(int[] val) throws Exception {
ProtoOutputStreamUInt64Test.java
218
public void
testRepeatedCompat
() throws Exception {
219
testRepeatedCompat
(new long[0]);
220
testRepeatedCompat
(new long[] { 0, 1, -1, Integer.MIN_VALUE, Integer.MAX_VALUE,
225
* Implementation of
testRepeatedCompat
with a given value.
227
public void
testRepeatedCompat
(long[] val) throws Exception {
ProtoOutputStreamStringTest.java
216
public void
testRepeatedCompat
() throws Exception {
218
testRepeatedCompat
(new String[0]);
219
testRepeatedCompat
(new String[] { "", "abcd\u3110!", "Hi", });
223
* Implementation of
testRepeatedCompat
with a given value.
225
public void
testRepeatedCompat
(String[] val) throws Exception {
Completed in 1052 milliseconds