/external/llvm-project/libc/utils/testutils/ |
D | StreamWrapper.cpp | 18 StreamWrapper outs() { return {std::addressof(std::cout)}; } in outs() 20 template <typename T> StreamWrapper &StreamWrapper::operator<<(T t) { in operator <<() 27 template StreamWrapper &StreamWrapper::operator<<<void *>(void *t); 28 template StreamWrapper &StreamWrapper::operator<<<const char *>(const char *t); 29 template StreamWrapper &StreamWrapper::operator<<<char *>(char *t); 30 template StreamWrapper &StreamWrapper::operator<<<char>(char t); 31 template StreamWrapper &StreamWrapper::operator<<<short>(short t); 32 template StreamWrapper &StreamWrapper::operator<<<int>(int t); 33 template StreamWrapper &StreamWrapper::operator<<<long>(long t); 34 template StreamWrapper &StreamWrapper::operator<<<long long>(long long t); [all …]
|
D | StreamWrapper.h | 18 class StreamWrapper { 22 StreamWrapper(void *OS) : OS(OS) {} in StreamWrapper() function 24 template <typename T> StreamWrapper &operator<<(T t); 27 StreamWrapper outs();
|
D | CMakeLists.txt | 8 StreamWrapper.cpp 9 StreamWrapper.h
|
/external/llvm-project/libc/utils/MPFRWrapper/ |
D | MPFRUtils.cpp | 311 testutils::StreamWrapper &OS) { in explainUnaryOperationSingleOutputError() 334 testutils::StreamWrapper &); 337 testutils::StreamWrapper &); 339 Operation op, long double, long double, testutils::StreamWrapper &); 344 testutils::StreamWrapper &OS) { in explainUnaryOperationTwoOutputsError() 377 Operation, float, const BinaryOutput<float> &, testutils::StreamWrapper &); 381 testutils::StreamWrapper &); 384 testutils::StreamWrapper &); 390 testutils::StreamWrapper &OS) { in explainBinaryOperationTwoOutputsError() 414 testutils::StreamWrapper &); [all …]
|
D | MPFRUtils.h | 118 testutils::StreamWrapper &OS); 122 testutils::StreamWrapper &OS); 127 testutils::StreamWrapper &OS); 133 testutils::StreamWrapper &OS); 150 void explainError(testutils::StreamWrapper &OS) override { 181 static void explainError(T in, T out, testutils::StreamWrapper &OS) { 187 testutils::StreamWrapper &OS) { 193 testutils::StreamWrapper &OS) { 199 testutils::StreamWrapper &OS) {
|
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/utils/ |
D | IOUtilsTest.java | 34 private interface StreamWrapper { interface in IOUtilsTest 40 skip(new StreamWrapper() { in skipUsingSkip() 50 skip(new StreamWrapper() { in skipUsingRead() 65 skip(new StreamWrapper() { in skipUsingSkipAndRead() 130 private void skip(final StreamWrapper wrapper) throws Exception { in skip()
|
/external/llvm-project/libc/utils/FPUtil/ |
D | TestHelpers.cpp | 38 testutils::StreamWrapper &stream) { in describeValue() 67 testutils::StreamWrapper &); 69 testutils::StreamWrapper &); 71 testutils::StreamWrapper &);
|
D | TestHelpers.h | 23 testutils::StreamWrapper &stream); 53 void explainError(testutils::StreamWrapper &stream) override { in explainError()
|
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/compressors/ |
D | ZTestCase.java | 39 testUnarchive(new StreamWrapper<CompressorInputStream>() { in testZUnarchive() 49 testUnarchive(new StreamWrapper<CompressorInputStream>() { in testZUnarchiveViaFactory() 60 testUnarchive(new StreamWrapper<CompressorInputStream>() { in testZUnarchiveViaAutoDetection() 81 … private void testUnarchive(final StreamWrapper<CompressorInputStream> wrapper) throws Exception { in testUnarchive()
|
D | FramedSnappyTestCase.java | 41 testUnarchive(new StreamWrapper<CompressorInputStream>() { in testDefaultExtraction() 51 testUnarchive(new StreamWrapper<CompressorInputStream>() { in testDefaultExtractionViaFactory() 63 testUnarchive(new StreamWrapper<CompressorInputStream>() { in testDefaultExtractionViaFactoryAutodetection() 71 … private void testUnarchive(final StreamWrapper<CompressorInputStream> wrapper) throws Exception { in testUnarchive()
|
/external/rust/crates/flate2/src/ffi/ |
D | c.rs | 15 pub struct StreamWrapper { struct 19 impl fmt::Debug for StreamWrapper { argument 25 impl Default for StreamWrapper { implementation 26 fn default() -> StreamWrapper { in default() 27 StreamWrapper { in default() 105 impl Deref for StreamWrapper { implementation 113 impl DerefMut for StreamWrapper { implementation 135 pub stream_wrapper: StreamWrapper, 168 let mut state = StreamWrapper::default(); in make() 258 let mut state = StreamWrapper::default(); in make()
|
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/compressors/lz4/ |
D | FramedLZ4CompressorInputStreamTest.java | 98 readDoubledBlaLz4(new StreamWrapper() { in readDoubledBlaLz4WithDecompressConcatenatedTrue() 108 readDoubledBlaLz4(new StreamWrapper() { in readDoubledBlaLz4WithDecompressConcatenatedFalse() 118 readDoubledBlaLz4(new StreamWrapper() { in readDoubledBlaLz4WithoutExplicitDecompressConcatenated() 141 readDoubledBlaLz4(new StreamWrapper() { in readDoubledBlaLz4ViaFactoryWithDecompressConcatenatedTrue() 152 readDoubledBlaLz4(new StreamWrapper() { in readDoubledBlaLz4ViaFactoryWithDecompressConcatenatedFalse() 163 readDoubledBlaLz4(new StreamWrapper() { in readDoubledBlaLz4ViaFactoryWithoutExplicitDecompressConcatenated() 622 interface StreamWrapper { interface in FramedLZ4CompressorInputStreamTest 626 …private void readDoubledBlaLz4(StreamWrapper wrapper, boolean expectDuplicateOutput) throws Except… in readDoubledBlaLz4()
|
/external/llvm-project/libc/test/ |
D | ErrnoSetterMatcher.h | 32 void explainError(testutils::StreamWrapper &OS) override { in explainError()
|
/external/llvm-project/libc/utils/UnitTest/ |
D | Test.cpp | 260 testutils::StreamWrapper OutsWrapper = testutils::outs(); in testMatch()
|
D | Test.h | 50 virtual void explainError(testutils::StreamWrapper &OS) { in explainError()
|
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/ |
D | AbstractTestCase.java | 403 protected static interface StreamWrapper<I extends InputStream> { interface in AbstractTestCase
|