Home
last modified time | relevance | path

Searched refs:testStream (Results 1 – 25 of 249) sorted by relevance

12345678910

/dports/science/InsightToolkit/ITK-5.0.1/Modules/ThirdParty/VNL/src/vxl/core/vnl/tests/
H A Dtest_polynomial.cxx16 { std::stringstream testStream; testStream << f1; in test_polynomial_double() local
106 { std::stringstream testStream; testStream << f4; in test_polynomial_double() local
111 { std::stringstream testStream; testStream << f4; in test_polynomial_double() local
116 { std::stringstream testStream; testStream << f4; in test_polynomial_double() local
121 { std::stringstream testStream; testStream << f4; in test_polynomial_double() local
126 { std::stringstream testStream; testStream << f4; in test_polynomial_double() local
131 { std::stringstream testStream; testStream << f4; in test_polynomial_double() local
143 { std::stringstream testStream; testStream << f1; in test_polynomial_long() local
203 { std::stringstream testStream; testStream << f4; in test_polynomial_long() local
208 { std::stringstream testStream; testStream << f4; in test_polynomial_long() local
[all …]
H A Dtest_real_polynomial.cxx14 { std::stringstream testStream; in test_real_polynomial() local
15 f1.print(testStream); in test_real_polynomial()
63 { std::stringstream testStream; in test_real_polynomial() local
64 f6.print(testStream); in test_real_polynomial()
66 TEST("f6 prints as X +1", testStream.str(), expected); in test_real_polynomial()
74 { std::stringstream testStream; in test_real_polynomial() local
75 f7.print(testStream); in test_real_polynomial()
77 TEST("f7 prints as X -1", testStream.str(), expected); in test_real_polynomial()
85 { std::stringstream testStream; in test_real_polynomial() local
86 f8.print(testStream); in test_real_polynomial()
[all …]
/dports/misc/vxl/vxl-3.3.2/core/vnl/tests/
H A Dtest_polynomial.cxx20 testStream << f1; in test_polynomial_double()
116 testStream << f4; in test_polynomial_double()
123 testStream << f4; in test_polynomial_double()
130 testStream << f4; in test_polynomial_double()
137 testStream << f4; in test_polynomial_double()
144 testStream << f4; in test_polynomial_double()
151 testStream << f4; in test_polynomial_double()
167 testStream << f1; in test_polynomial_long()
233 testStream << f4; in test_polynomial_long()
240 testStream << f4; in test_polynomial_long()
[all …]
H A Dtest_real_polynomial.cxx18 std::stringstream testStream; in test_real_polynomial() local
19 f1.print(testStream); in test_real_polynomial()
77 std::stringstream testStream; in test_real_polynomial() local
78 f6.print(testStream); in test_real_polynomial()
80 TEST("f6 prints as X +1", testStream.str(), expected); in test_real_polynomial()
89 std::stringstream testStream; in test_real_polynomial() local
90 f7.print(testStream); in test_real_polynomial()
92 TEST("f7 prints as X -1", testStream.str(), expected); in test_real_polynomial()
101 std::stringstream testStream; in test_real_polynomial() local
102 f8.print(testStream); in test_real_polynomial()
[all …]
/dports/lang/nim/nim-1.6.2/tests/manyloc/keineschweine/dependencies/genpacket/
H A Dstreams_enh.nim28 var testStream = newStringStream()
30 testStream.writeLEStr("Hello")
31 doAssert testStream.data == "\5\0Hello"
33 testStream.setPosition 0
34 var res = testStream.readLEStr()
37 testStream.setPosition 0
38 testStream.writePaddedStr("Sup", 10)
39 echo(repr(testStream), testStream.data.len)
42 testStream.setPosition 0
43 res = testStream.readPaddedStr(10)
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.p2/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/artifact/repository/processing/
H A DProcessingStepHandlerTest.java105 testStream.write("Test".getBytes()); in testExecuteNoPSs()
115 testStream.write(new byte[] {1}); in testExecuteOneByteShifterPS()
125 testStream.write(new byte[] {1}); in testExecuteTwoByteShifterPSs()
135 testStream.write("Test".getBytes()); in testExecuteOneMD5VerifierPSOk()
145 testStream.write("Test".getBytes()); in testExecuteOneMD5VerifierPSFails()
147 testStream.close(); in testExecuteOneMD5VerifierPSFails()
161 testStream.write(new byte[] {1, 2, 3, 4, 5}); in testExecuteOneByteShifterAndOneMD5VerifierPSOk()
172 testStream.write(new byte[] {1, 2, 3, 4, 5}); in testExecuteOneByteShifterAndOneMD5VerifierPSFailWrongOrder()
174 testStream.close(); in testExecuteOneByteShifterAndOneMD5VerifierPSFailWrongOrder()
187 testStream.write(new byte[] {1, 2, 3, 4, 5}); in testAssureOrderingOfPSs1()
[all …]
/dports/devel/fossology-nomos-standalone/fossology-3.11.0/src/copyright/agent_tests/Unit/
H A Dtest_regexConfProvider.cc47 void regexConfProviderTest (istringstream& testStream, in regexConfProviderTest() argument
56 rcp.maybeLoad(testIdentity,testStream); in regexConfProviderTest()
75 istringstream testStream(testLine); in simpleTest() local
77 regexConfProviderTest(testStream,testString,testKey); in simpleTest()
92 istringstream testStream(testLine); in simpleReplacementTest() local
94 regexConfProviderTest(testStream,testString,testKey); in simpleReplacementTest()
111 istringstream testStream(testLine); in multipleReplacementTest() local
113 regexConfProviderTest(testStream,testString,testKey); in multipleReplacementTest()
129 istringstream testStream(testLine); in testForInfiniteRecursion() local
136 rcp.maybeLoad(testIdentity,testStream); in testForInfiniteRecursion()
/dports/net-im/ssh-chat/ssh-chat-1.10.1/vendor/github.com/alexcesaro/log/stdlog/
H A Dstdlog_test.go13 testStream = new(bytes.Buffer) var
21 logtest.AssertNotContain(t, testStream, logtest.Messages[log.Debug])
24 logtest.AssertContains(t, testStream, logtest.Messages[log.Info])
25 logtest.AssertLineCount(t, testStream, 1)
30 logtest.AssertNotContain(t, testStream, logtest.Messages[log.Info])
33 logtest.AssertContains(t, testStream, logtest.Messages[log.Error])
34 logtest.AssertLineCount(t, testStream, 2)
39 return testStream
45 testStream.Reset()
/dports/lang/mono/mono-5.10.1.57/mcs/class/corlib/Test/System.IO/
H A DMemoryStreamTest.cs98 MemoryStream testStream; field in MonoTests.System.IO.MemoryStreamTest
266 testStream.Read (readBytes, 0, 10); in Read()
274 testStream.Read (readBytes, 0, 20); in Read()
440 testStream.EndWrite (res); in BeginWrite()
458 testStream.EndWrite (res); in BeginWrite_WithState()
475 testStream.EndRead (res); in EndRead_Twice()
489 testStream.Dispose (); in EndRead_Disposed()
502 testStream.EndWrite (res); in EndWrite_OnBeginRead()
507 testStream.EndRead (res); in EndWrite_OnBeginRead()
517 testStream.EndWrite (res); in EndWrite_Twice()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Mail/tests/Unit/
H A DQuotedPrintableStreamTest.cs33 var testStream = new QuotedPrintableStream(outputStream, encodeCRLF); in TestEncodeStream()
36 testStream.Write(bytesToWrite, 0, bytesToWrite.Length); in TestEncodeStream()
37 testStream.Flush(); in TestEncodeStream()
52 var testStream = new QuotedPrintableStream(outputStream, false); in QuotedPrintableStream_EmbededCRAndLFSpltBetweenWrites_EncodeCrlfFlagNotHonored()
55 testStream.Write(bytesToWrite1, 0, bytesToWrite1.Length); in QuotedPrintableStream_EmbededCRAndLFSpltBetweenWrites_EncodeCrlfFlagNotHonored()
58 testStream.Write(bytesToWrite2, 0, bytesToWrite2.Length); in QuotedPrintableStream_EmbededCRAndLFSpltBetweenWrites_EncodeCrlfFlagNotHonored()
60 testStream.Flush(); in QuotedPrintableStream_EmbededCRAndLFSpltBetweenWrites_EncodeCrlfFlagNotHonored()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.IO.Compression/tests/ZipArchive/
H A Dzip_CreateTests.cs68 var testStream = new WrappedStream(s, false, true, true, null); in CreateNormal_Seekable()
69 …await CreateFromDir(zfolder(folder), testStream, ZipArchiveMode.Create, useSpansForWriting, writeI… in CreateNormal_Seekable()
85 var testStream = new WrappedStream(s, false, true, false, null); in CreateNormal_Unseekable()
86 await CreateFromDir(zfolder(folder), testStream, ZipArchiveMode.Create); in CreateNormal_Unseekable()
98 var testStream = new WrappedStream(s, false, true, true, null); in CreateNormal_Unicode_Seekable()
99 await CreateFromDir(zfolder("unicode"), testStream, ZipArchiveMode.Create); in CreateNormal_Unicode_Seekable()
112 var testStream = new WrappedStream(s, false, true, false, null); in CreateNormal_Unicode_Unseekable()
113 await CreateFromDir(zfolder("unicode"), testStream, ZipArchiveMode.Create); in CreateNormal_Unicode_Unseekable()
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/sherlock/scalpel/
H A Dscalpel_debugger.cpp63 Audio::AudioStream *testStream; in cmd3DO_PlayAudio() local
67 testStream = Audio::makeAIFFStream(file, DisposeAfterUse::YES); in cmd3DO_PlayAudio()
69 if (testStream) { in cmd3DO_PlayAudio()
70 g_system->getMixer()->playStream(Audio::Mixer::kPlainSoundType, &testHandle, testStream); in cmd3DO_PlayAudio()
/dports/games/scummvm/scummvm-2.5.1/engines/sherlock/scalpel/
H A Dscalpel_debugger.cpp63 Audio::AudioStream *testStream; in cmd3DO_PlayAudio() local
67 testStream = Audio::makeAIFFStream(file, DisposeAfterUse::YES); in cmd3DO_PlayAudio()
69 if (testStream) { in cmd3DO_PlayAudio()
70 g_system->getMixer()->playStream(Audio::Mixer::kPlainSoundType, &testHandle, testStream); in cmd3DO_PlayAudio()
/dports/devel/spark/spark-2.1.1/sql/core/src/test/scala/org/apache/spark/sql/streaming/
H A DStreamingAggregationSuite.scala56 testStream(aggregated, Update)(
80 testStream(aggregated, Complete)(
104 testStream(aggregated, Append)()
122 testStream(aggregated, Complete)(
156 testStream(aggregated, Update)(
173 testStream(aggregated, Complete)(
198 testStream(aggregated, Update)(
223 testStream(aggregated, Update)(
236 testStream(aggregated, Update)(
H A DStreamSuite.scala39 testStream(mapped)(
57 testStream(joined)(
70 testStream(unioned)(
87 testStream(evens)(
134 testStream(ds)()
140 testStream(ds)()
165 testStream(inputData.toDS())(
235 testStream(df)(
264 testStream(df)(
H A DEventTimeWatermarkSuite.scala67 testStream(aggWithoutWatermark, outputMode = Complete)(
85 testStream(aggWithWatermark)(
131 testStream(windowedAggregation)(
157 testStream(windowedAggregation, OutputMode.Update)(
186 testStream(aggWithWatermark)(
211 testStream(df)(
250 testStream(windowedAggregation)(
275 testStream(windowedAggregation, OutputMode.Complete)(
/dports/lang/gcc12-devel/gcc-12-20211205/libgo/go/crypto/aes/
H A Dmodes_test.go38 return &testStream{}
97 type testStream struct{} struct
99 func (*testStream) XORKeyStream(a, b []byte) {} argument
100 func (*testStream) InAESPackage() bool { return true } argument
/dports/lang/gcc8/gcc-8.5.0/libgo/go/crypto/aes/
H A Dmodes_test.go38 return &testStream{}
97 type testStream struct{} struct
99 func (*testStream) XORKeyStream(a, b []byte) {} argument
100 func (*testStream) InAESPackage() bool { return true } argument
/dports/net/google-cloud-sdk-app-engine-go/platform/google_appengine/goroot-1.9/src/crypto/aes/
H A Dmodes_test.go38 return &testStream{}
97 type testStream struct{} struct
99 func (*testStream) XORKeyStream(a, b []byte) {} argument
100 func (*testStream) InAESPackage() bool { return true } argument
/dports/lang/gcc10/gcc-10.3.0/libgo/go/crypto/aes/
H A Dmodes_test.go38 return &testStream{}
97 type testStream struct{} struct
99 func (*testStream) XORKeyStream(a, b []byte) {} argument
100 func (*testStream) InAESPackage() bool { return true } argument
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/libgo/go/crypto/aes/
H A Dmodes_test.go38 return &testStream{}
97 type testStream struct{} struct
99 func (*testStream) XORKeyStream(a, b []byte) {} argument
100 func (*testStream) InAESPackage() bool { return true } argument
/dports/lang/go-devel/go-becaeea1199b875bc24800fa88f2f4fea119bf78/src/crypto/aes/
H A Dmodes_test.go38 return &testStream{}
97 type testStream struct{} struct
99 func (*testStream) XORKeyStream(a, b []byte) {} argument
100 func (*testStream) InAESPackage() bool { return true } argument
/dports/lang/gcc11/gcc-11.2.0/libgo/go/crypto/aes/
H A Dmodes_test.go38 return &testStream{}
97 type testStream struct{} struct
99 func (*testStream) XORKeyStream(a, b []byte) {} argument
100 func (*testStream) InAESPackage() bool { return true } argument
/dports/lang/gcc11-devel/gcc-11-20211009/libgo/go/crypto/aes/
H A Dmodes_test.go38 return &testStream{}
97 type testStream struct{} struct
99 func (*testStream) XORKeyStream(a, b []byte) {} argument
100 func (*testStream) InAESPackage() bool { return true } argument
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/libgo/go/crypto/aes/
H A Dmodes_test.go38 return &testStream{}
97 type testStream struct{} struct
99 func (*testStream) XORKeyStream(a, b []byte) {} argument
100 func (*testStream) InAESPackage() bool { return true } argument

12345678910