/external/deqp/external/openglcts/modules/glesext/texture_cube_map_array/ |
D | esextcTextureCubeMapArrayStencilAttachments.cpp | 831 glw::GLubyte expectedData[] = { 0, 0, 0, 0 }; in readPixelsAndCompareWithExpectedResult() local 839 expectedData[0] = 0; in readPixelsAndCompareWithExpectedResult() 840 expectedData[1] = 255; in readPixelsAndCompareWithExpectedResult() 841 expectedData[2] = 255; in readPixelsAndCompareWithExpectedResult() 842 expectedData[3] = 0; in readPixelsAndCompareWithExpectedResult() 846 expectedData[0] = 255; in readPixelsAndCompareWithExpectedResult() 847 expectedData[1] = 0; in readPixelsAndCompareWithExpectedResult() 848 expectedData[2] = 0; in readPixelsAndCompareWithExpectedResult() 849 expectedData[3] = 255; in readPixelsAndCompareWithExpectedResult() 859 if (data[0] != expectedData[0] || data[1] != expectedData[1] || data[2] != expectedData[2] || in readPixelsAndCompareWithExpectedResult() [all …]
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/framed/ |
D | Http2Test.java | 375 final byte[] expectedData = new byte[Http2.INITIAL_MAX_FRAME_SIZE]; in maxLengthDataFrame() 376 Arrays.fill(expectedData, (byte) 2); in maxLengthDataFrame() 378 writeMedium(frame, expectedData.length); in maxLengthDataFrame() 382 frame.write(expectedData); in maxLengthDataFrame() 385 assertEquals(frame, sendDataFrame(new Buffer().write(expectedData))); in maxLengthDataFrame() 403 byte[] expectedData = new byte[Http2.INITIAL_MAX_FRAME_SIZE]; in compressedDataFrameWhenSettingDisabled() 404 Arrays.fill(expectedData, (byte) 2); in compressedDataFrameWhenSettingDisabled() 405 Buffer zipped = gzip(expectedData); in compressedDataFrameWhenSettingDisabled() 425 byte[] expectedData = new byte[dataLength]; in readPaddedDataFrame() 426 Arrays.fill(expectedData, (byte) 2); in readPaddedDataFrame() [all …]
|
/external/guava/guava-testlib/src/com/google/common/util/concurrent/testing/ |
D | MockFutureListener.java | 60 public void assertSuccess(Object expectedData) throws Throwable { in assertSuccess() argument 65 Assert.assertEquals(expectedData, future.get()); in assertSuccess()
|
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/ |
D | AbstractFakeCommandHandlerTestCase.groovy | 197 * @param expectedData - the expected data 199 protected assertSessionData(String expectedData) { 202 assert actual == expectedData 207 * @param expectedData - the expected data 209 protected assertSessionDataWithEndOfLine(String expectedData) { 210 assertSessionData(expectedData + endOfLine())
|
/external/mockftpserver/tags/2.2/src/test/groovy/org/mockftpserver/fake/command/ |
D | AbstractFakeCommandHandlerTestCase.groovy | 198 * @param expectedData - the expected data 200 protected assertSessionData(String expectedData) { 203 assert actual == expectedData 208 * @param expectedData - the expected data 210 protected assertSessionDataWithEndOfLine(String expectedData) { 211 assertSessionData(expectedData + endOfLine())
|
/external/mockftpserver/tags/2.4/src/test/groovy/org/mockftpserver/fake/command/ |
D | AbstractFakeCommandHandlerTestCase.groovy | 198 * @param expectedData - the expected data 200 protected assertSessionData(String expectedData) { 203 assert actual == expectedData 208 * @param expectedData - the expected data 210 protected assertSessionDataWithEndOfLine(String expectedData) { 211 assertSessionData(expectedData + endOfLine())
|
/external/mockftpserver/tags/2.0.2/src/test/groovy/org/mockftpserver/fake/command/ |
D | AbstractFakeCommandHandlerTest.groovy | 198 * @param expectedData - the expected data 200 protected assertSessionData(String expectedData) { 203 assert actual == expectedData 208 * @param expectedData - the expected data 210 protected assertSessionDataWithEndOfLine(String expectedData) { 211 assertSessionData(expectedData + endOfLine())
|
/external/mockftpserver/tags/2.3/src/test/groovy/org/mockftpserver/fake/command/ |
D | AbstractFakeCommandHandlerTestCase.groovy | 198 * @param expectedData - the expected data 200 protected assertSessionData(String expectedData) { 203 assert actual == expectedData 208 * @param expectedData - the expected data 210 protected assertSessionDataWithEndOfLine(String expectedData) { 211 assertSessionData(expectedData + endOfLine())
|
/external/mockftpserver/tags/2.5/src/test/groovy/org/mockftpserver/fake/command/ |
D | AbstractFakeCommandHandlerTestCase.groovy | 197 * @param expectedData - the expected data 199 protected assertSessionData(String expectedData) { 202 assert actual == expectedData 207 * @param expectedData - the expected data 209 protected assertSessionDataWithEndOfLine(String expectedData) { 210 assertSessionData(expectedData + endOfLine())
|
/external/mockftpserver/tags/2.1/src/test/groovy/org/mockftpserver/fake/command/ |
D | AbstractFakeCommandHandlerTest.groovy | 198 * @param expectedData - the expected data 200 protected assertSessionData(String expectedData) { 203 assert actual == expectedData 208 * @param expectedData - the expected data 210 protected assertSessionDataWithEndOfLine(String expectedData) { 211 assertSessionData(expectedData + endOfLine())
|
/external/mockftpserver/tags/2.0.1/src/test/groovy/org/mockftpserver/fake/command/ |
D | AbstractFakeCommandHandlerTest.groovy | 198 * @param expectedData - the expected data 200 protected assertSessionData(String expectedData) { 203 assert actual == expectedData 208 * @param expectedData - the expected data 210 protected assertSessionDataWithEndOfLine(String expectedData) { 211 assertSessionData(expectedData + endOfLine())
|
/external/protobuf/objectivec/Tests/ |
D | GPBUtilitiesTests.m | 123 NSData *expectedData = 125 NSString *expected = [[NSString alloc] initWithData:expectedData 163 NSData *expectedData = 165 NSString *expected = [[NSString alloc] initWithData:expectedData
|
/external/libchrome/mojo/public/java/system/javatests/src/org/chromium/mojo/bindings/ |
D | ValidationTestUtilTest.java | 32 String input, boolean isInputValid, ByteBuffer expectedData, int expectedHandlesCount) { in checkInputParser() argument 36 Assert.assertEquals(expectedData, data.getData()); in checkInputParser()
|
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/utils/ |
D | SeekableInMemoryByteChannelTest.java | 122 …ByteBuffer expectedData = ByteBuffer.allocate(testData.length + 5).put(testData, 0, 5).put(testDat… in shouldWriteDataProperlyAfterPositionSet() local 129 assertArrayEquals(expectedData.array(), Arrays.copyOf(c.array(), (int) c.size())); in shouldWriteDataProperlyAfterPositionSet()
|
/external/deqp/external/openglcts/modules/glesext/geometry_shader/ |
D | esextcGeometryShaderLayeredRenderingBoundaryCondition.cpp | 450 unsigned char expectedData[m_texture_components]; in iterate() local 452 getReferenceColor(nLayer, expectedData, m_texture_components); in iterate() 455 …if (!comparePixels(m_width, m_height, m_texture_components, buffer, expectedData, nTexture, nLayer… in iterate()
|
/external/mockftpserver/tags/2.x_Before_IDEA/src/test/groovy/org/mockftpserver/fake/command/ |
D | AbstractFakeCommandHandlerTest.groovy | 160 * @param expectedData - the expected data 162 protected assertSessionData(String expectedData) { 165 assert actual == expectedData
|
/external/archive-patcher/generator/src/test/java/com/google/archivepatcher/generator/ |
D | MinimalZipParserTest.java | 48 private void checkExpectedBytes(byte[] expectedData, int unitTestZipArchiveOffset) { in checkExpectedBytes() argument 51 Assert.assertEquals(expectedData[index], actualByte); in checkExpectedBytes()
|
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/ |
D | AbstractFakeCommandHandlerTest.groovy | 198 * @param expectedData - the expected data 200 protected assertSessionData(String expectedData) { 203 assert actual == expectedData
|
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/ |
D | AbstractFakeCommandHandlerTest.groovy | 198 * @param expectedData - the expected data 200 protected assertSessionData(String expectedData) { 203 assert actual == expectedData
|
/external/mockftpserver/tags/2.0/src/test/groovy/org/mockftpserver/fake/command/ |
D | AbstractFakeCommandHandlerTest.groovy | 198 * @param expectedData - the expected data 200 protected assertSessionData(String expectedData) { 203 assert actual == expectedData
|
/external/mockftpserver/tags/2.0-rc1/src/test/groovy/org/mockftpserver/fake/command/ |
D | AbstractFakeCommandHandlerTest.groovy | 194 * @param expectedData - the expected data 196 protected assertSessionData(String expectedData) { 199 assert actual == expectedData
|
/external/deqp/external/vulkancts/modules/vulkan/synchronization/ |
D | vktSynchronizationCrossInstanceSharingTests.cpp | 1194 std::ostringstream expectedData; in iterate() local 1209 expectedData << "... "; in iterate() 1219 expectedData << (i > 0 ? ", " : "") << (deUint32)expected.data[byteNdx]; in iterate() 1225 expectedData << "..."; in iterate() 1229 … log << TestLog::Message << "Expected data: (" << expectedData.str() << ")" << TestLog::EndMessage; in iterate()
|
D | vktSynchronizationWin32KeyedMutexTests.cpp | 1689 std::ostringstream expectedData; in iterate() local 1704 expectedData << "... "; in iterate() 1714 expectedData << (i > 0 ? ", " : "") << (deUint32)expected.data[byteNdx]; in iterate() 1720 expectedData << "..."; in iterate() 1724 … log << TestLog::Message << "Expected data: (" << expectedData.str() << ")" << TestLog::EndMessage; in iterate()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/ |
D | TransliteratorTest.java | 3726 String expectedData; field in TransliteratorTest.NormTranslitTask 3729 NormTranslitTask(Transliterator translit, String testData, String expectedData) { in NormTranslitTask() argument 3732 this.expectedData = expectedData; in NormTranslitTask() 3739 StringBuffer expectedBuf = new StringBuffer(expectedData); in run() 3750 expectedBuf.append(expectedData); in run()
|
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/ |
D | TransliteratorTest.java | 3723 String expectedData; field in TransliteratorTest.NormTranslitTask 3726 NormTranslitTask(Transliterator translit, String testData, String expectedData) { in NormTranslitTask() argument 3729 this.expectedData = expectedData; in NormTranslitTask() 3736 StringBuffer expectedBuf = new StringBuffer(expectedData); in run() 3747 expectedBuf.append(expectedData); in run()
|