Searched refs:expectedLength (Results 1 - 25 of 49) sorted by relevance

12

/external/libmojo/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
H A DDecoder.java222 public DataHeader readDataHeaderForPointerArray(int expectedLength) { argument
223 return readDataHeaderForArray(BindingsHelper.POINTER_SIZE, expectedLength);
230 public DataHeader readDataHeaderForUnionArray(int expectedLength) { argument
231 return readDataHeaderForArray(BindingsHelper.UNION_SIZE, expectedLength);
328 public boolean[] readBooleans(int offset, int arrayNullability, int expectedLength) { argument
333 DataHeader si = d.readDataHeaderForBooleanArray(expectedLength);
352 public byte[] readBytes(int offset, int arrayNullability, int expectedLength) { argument
357 DataHeader si = d.readDataHeaderForArray(1, expectedLength);
367 public short[] readShorts(int offset, int arrayNullability, int expectedLength) { argument
372 DataHeader si = d.readDataHeaderForArray(2, expectedLength);
382 readInts(int offset, int arrayNullability, int expectedLength) argument
397 readFloats(int offset, int arrayNullability, int expectedLength) argument
412 readLongs(int offset, int arrayNullability, int expectedLength) argument
427 readDoubles(int offset, int arrayNullability, int expectedLength) argument
548 readHandles(int offset, int arrayNullability, int expectedLength) argument
566 readUntypedHandles( int offset, int arrayNullability, int expectedLength) argument
585 readConsumerHandles( int offset, int arrayNullability, int expectedLength) argument
604 readProducerHandles( int offset, int arrayNullability, int expectedLength) argument
624 readMessagePipeHandles( int offset, int arrayNullability, int expectedLength) argument
644 readSharedBufferHandles( int offset, int arrayNullability, int expectedLength) argument
664 readServiceInterfaces( int offset, int arrayNullability, int expectedLength, Interface.Manager<S, P> manager) argument
688 readInterfaceRequests( int offset, int arrayNullability, int expectedLength) argument
708 readAssociatedServiceInterfaceNotSupporteds( int offset, int arrayNullability, int expectedLength) argument
717 readAssociatedInterfaceRequestNotSupporteds( int offset, int arrayNullability, int expectedLength) argument
733 readDataHeaderForBooleanArray(int expectedLength) argument
749 readDataHeaderForArray(long elementSize, int expectedLength) argument
[all...]
H A DEncoder.java321 public Encoder encodePointerArray(int length, int offset, int expectedLength) { argument
322 return encoderForArray(BindingsHelper.POINTER_SIZE, length, offset, expectedLength);
328 public Encoder encodeUnionArray(int length, int offset, int expectedLength) { argument
329 return encoderForArray(BindingsHelper.UNION_SIZE, length, offset, expectedLength);
335 public void encode(boolean[] v, int offset, int arrayNullability, int expectedLength) { argument
340 if (expectedLength != BindingsHelper.UNSPECIFIED_ARRAY_LENGTH
341 && expectedLength != v.length) {
359 public void encode(byte[] v, int offset, int arrayNullability, int expectedLength) { argument
364 if (expectedLength != BindingsHelper.UNSPECIFIED_ARRAY_LENGTH
365 && expectedLength !
374 encode(short[] v, int offset, int arrayNullability, int expectedLength) argument
385 encode(int[] v, int offset, int arrayNullability, int expectedLength) argument
396 encode(float[] v, int offset, int arrayNullability, int expectedLength) argument
407 encode(long[] v, int offset, int arrayNullability, int expectedLength) argument
418 encode(double[] v, int offset, int arrayNullability, int expectedLength) argument
429 encode(Handle[] v, int offset, int arrayNullability, int expectedLength) argument
445 encode(T[] v, int offset, int arrayNullability, int expectedLength, Interface.Manager<T, ?> manager) argument
478 encode(InterfaceRequest<I>[] v, int offset, int arrayNullability, int expectedLength) argument
495 encode(AssociatedInterfaceNotSupported[] v, int offset, int arrayNullability, int expectedLength) argument
501 encode(AssociatedInterfaceRequestNotSupported[] v, int offset, int arrayNullability, int expectedLength) argument
538 encoderForArray( int elementSizeInByte, int length, int offset, int expectedLength) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/
H A DKeyAgreementSpi.java61 int expectedLength = (p.bitLength() + 7) / 8;
65 if (tmp.length == expectedLength)
70 if (tmp[0] == 0 && tmp.length == expectedLength + 1)
78 // tmp must be shorter than expectedLength
80 byte[] rv = new byte[expectedLength];
/external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/stub/command/
H A DFileRetrCommandHandlerTest.java87 int expectedLength = ((Integer) expected[1]).intValue();
89 LOG.info("invocation #" + counter + " expected=" + expectedLength + " actualLength=" + actualLength);
94 //assertEquals("length for invocation #" + counter, expectedLength, actualLength);
/external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/command/
H A DFileRetrCommandHandlerTest.java88 int expectedLength = ((Integer)expected[1]).intValue();
90 LOG.info("invocation #" + counter + " expected=" + expectedLength + " actualLength=" + actualLength);
96 //assertEquals("length for invocation #" + counter, expectedLength, actualLength);
/external/mockftpserver/tags/1.0/src/test/java/org/mockftpserver/stub/command/
H A DFileRetrCommandHandlerTest.java88 int expectedLength = ((Integer)expected[1]).intValue();
90 LOG.info("invocation #" + counter + " expected=" + expectedLength + " actualLength=" + actualLength);
96 //assertEquals("length for invocation #" + counter, expectedLength, actualLength);
/external/mockftpserver/tags/1.1/src/test/java/org/mockftpserver/stub/command/
H A DFileRetrCommandHandlerTest.java88 int expectedLength = ((Integer)expected[1]).intValue();
90 LOG.info("invocation #" + counter + " expected=" + expectedLength + " actualLength=" + actualLength);
96 //assertEquals("length for invocation #" + counter, expectedLength, actualLength);
/external/mockftpserver/tags/1.2/src/test/java/org/mockftpserver/stub/command/
H A DFileRetrCommandHandlerTest.java88 int expectedLength = ((Integer)expected[1]).intValue();
90 LOG.info("invocation #" + counter + " expected=" + expectedLength + " actualLength=" + actualLength);
96 //assertEquals("length for invocation #" + counter, expectedLength, actualLength);
/external/mockftpserver/tags/1.2.1/src/test/java/org/mockftpserver/stub/command/
H A DFileRetrCommandHandlerTest.java88 int expectedLength = ((Integer)expected[1]).intValue();
90 LOG.info("invocation #" + counter + " expected=" + expectedLength + " actualLength=" + actualLength);
96 //assertEquals("length for invocation #" + counter, expectedLength, actualLength);
/external/mockftpserver/tags/1.2.2/src/test/java/org/mockftpserver/stub/command/
H A DFileRetrCommandHandlerTest.java88 int expectedLength = ((Integer)expected[1]).intValue();
90 LOG.info("invocation #" + counter + " expected=" + expectedLength + " actualLength=" + actualLength);
96 //assertEquals("length for invocation #" + counter, expectedLength, actualLength);
/external/mockftpserver/tags/1.2.3/src/test/java/org/mockftpserver/stub/command/
H A DFileRetrCommandHandlerTest.java88 int expectedLength = ((Integer)expected[1]).intValue();
90 LOG.info("invocation #" + counter + " expected=" + expectedLength + " actualLength=" + actualLength);
96 //assertEquals("length for invocation #" + counter, expectedLength, actualLength);
/external/mockftpserver/tags/1.2.4/src/test/java/org/mockftpserver/stub/command/
H A DFileRetrCommandHandlerTest.java88 int expectedLength = ((Integer)expected[1]).intValue();
90 LOG.info("invocation #" + counter + " expected=" + expectedLength + " actualLength=" + actualLength);
96 //assertEquals("length for invocation #" + counter, expectedLength, actualLength);
/external/mockftpserver/tags/2.0/src/test/java/org/mockftpserver/stub/command/
H A DFileRetrCommandHandlerTest.java88 int expectedLength = ((Integer) expected[1]).intValue();
90 LOG.info("invocation #" + counter + " expected=" + expectedLength + " actualLength=" + actualLength);
95 //assertEquals("length for invocation #" + counter, expectedLength, actualLength);
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/test/java/org/mockftpserver/stub/command/
H A DFileRetrCommandHandlerTest.java88 int expectedLength = ((Integer) expected[1]).intValue();
90 LOG.info("invocation #" + counter + " expected=" + expectedLength + " actualLength=" + actualLength);
95 //assertEquals("length for invocation #" + counter, expectedLength, actualLength);
/external/mockftpserver/tags/2.0-rc1/src/test/java/org/mockftpserver/stub/command/
H A DFileRetrCommandHandlerTest.java87 int expectedLength = ((Integer) expected[1]).intValue();
89 LOG.info("invocation #" + counter + " expected=" + expectedLength + " actualLength=" + actualLength);
94 //assertEquals("length for invocation #" + counter, expectedLength, actualLength);
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/test/java/org/mockftpserver/stub/command/
H A DFileRetrCommandHandlerTest.java88 int expectedLength = ((Integer) expected[1]).intValue();
90 LOG.info("invocation #" + counter + " expected=" + expectedLength + " actualLength=" + actualLength);
95 //assertEquals("length for invocation #" + counter, expectedLength, actualLength);
/external/mockftpserver/tags/2.0.1/src/test/java/org/mockftpserver/stub/command/
H A DFileRetrCommandHandlerTest.java88 int expectedLength = ((Integer) expected[1]).intValue();
90 LOG.info("invocation #" + counter + " expected=" + expectedLength + " actualLength=" + actualLength);
95 //assertEquals("length for invocation #" + counter, expectedLength, actualLength);
/external/mockftpserver/tags/2.0.2/src/test/java/org/mockftpserver/stub/command/
H A DFileRetrCommandHandlerTest.java88 int expectedLength = ((Integer) expected[1]).intValue();
90 LOG.info("invocation #" + counter + " expected=" + expectedLength + " actualLength=" + actualLength);
95 //assertEquals("length for invocation #" + counter, expectedLength, actualLength);
/external/mockftpserver/tags/2.1/src/test/java/org/mockftpserver/stub/command/
H A DFileRetrCommandHandlerTest.java88 int expectedLength = ((Integer) expected[1]).intValue();
90 LOG.info("invocation #" + counter + " expected=" + expectedLength + " actualLength=" + actualLength);
95 //assertEquals("length for invocation #" + counter, expectedLength, actualLength);
/external/mockftpserver/tags/2.2/src/test/java/org/mockftpserver/stub/command/
H A DFileRetrCommandHandlerTest.java86 int expectedLength = ((Integer) expected[1]).intValue();
88 LOG.info("invocation #" + counter + " expected=" + expectedLength + " actualLength=" + actualLength);
93 //assertEquals("length for invocation #" + counter, expectedLength, actualLength);
/external/mockftpserver/tags/2.3/src/test/java/org/mockftpserver/stub/command/
H A DFileRetrCommandHandlerTest.java86 int expectedLength = ((Integer) expected[1]).intValue();
88 LOG.info("invocation #" + counter + " expected=" + expectedLength + " actualLength=" + actualLength);
93 //assertEquals("length for invocation #" + counter, expectedLength, actualLength);
/external/mockftpserver/tags/2.4/src/test/java/org/mockftpserver/stub/command/
H A DFileRetrCommandHandlerTest.java87 int expectedLength = ((Integer) expected[1]).intValue();
89 LOG.info("invocation #" + counter + " expected=" + expectedLength + " actualLength=" + actualLength);
94 //assertEquals("length for invocation #" + counter, expectedLength, actualLength);
/external/mockftpserver/tags/2.5/src/test/java/org/mockftpserver/stub/command/
H A DFileRetrCommandHandlerTest.java87 int expectedLength = ((Integer) expected[1]).intValue();
89 LOG.info("invocation #" + counter + " expected=" + expectedLength + " actualLength=" + actualLength);
94 //assertEquals("length for invocation #" + counter, expectedLength, actualLength);
/external/mockftpserver/tags/2.x_Before_IDEA/src/test/java/org/mockftpserver/stub/command/
H A DFileRetrCommandHandlerTest.java88 int expectedLength = ((Integer)expected[1]).intValue();
90 LOG.info("invocation #" + counter + " expected=" + expectedLength + " actualLength=" + actualLength);
96 //assertEquals("length for invocation #" + counter, expectedLength, actualLength);
/external/skia/tests/
H A DPointTest.cpp37 // approximately expectedLength for this (x,y).
39 SkScalar expectedLength) {
47 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(s1, expectedLength));
38 test_length(skiatest::Reporter* reporter, SkScalar x, SkScalar y, SkScalar expectedLength) argument

Completed in 1185 milliseconds

12