Lines Matching defs:encodedValue

209     private void testWriteEncodedIntHelper(int integerValue, int... encodedValue) throws IOException {
213 int[] arr = new int[encodedValue.length+1];
214 arr[0] = ValueType.INT | ((encodedValue.length-1) << 5);
215 System.arraycopy(encodedValue, 0, arr, 1, encodedValue.length);
243 private void testWriteEncodedUintHelper(int integerValue, int... encodedValue) throws IOException {
247 int[] arr = new int[encodedValue.length+1];
248 arr[0] = ValueType.METHOD | ((encodedValue.length-1) << 5);
249 System.arraycopy(encodedValue, 0, arr, 1, encodedValue.length);
281 private void testWriteEncodedLongHelper(long longValue, int... encodedValue) throws IOException {
285 int[] arr = new int[encodedValue.length+1];
286 arr[0] = ValueType.LONG | ((encodedValue.length-1) << 5);
287 System.arraycopy(encodedValue, 0, arr, 1, encodedValue.length);
348 private void testWriteRightZeroExtendedIntHelper(int intValue, int... encodedValue) throws IOException {
352 int[] arr = new int[encodedValue.length+1];
353 arr[0] = ValueType.FLOAT | ((encodedValue.length-1) << 5);
354 System.arraycopy(encodedValue, 0, arr, 1, encodedValue.length);
393 private void testWriteRightZeroExtendedLongHelper(long longValue, int... encodedValue) throws IOException {
397 int[] arr = new int[encodedValue.length+1];
398 arr[0] = ValueType.DOUBLE | ((encodedValue.length-1) << 5);
399 System.arraycopy(encodedValue, 0, arr, 1, encodedValue.length);
472 private void testWriteStringHelper(String stringValue, int... encodedValue) throws IOException {
477 expectData(encodedValue);