/third_party/mesa3d/src/gtest/src/ |
H A D | gtest-death-test.cc | 597 std::ostringstream stream; in Passed() local 598 matcher_.DescribeTo(&stream); in Passed() 600 << " Expected: " << stream.str() << "\n" in Passed()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/sparse_resources/ |
H A D | vktSparseResourcesImageMemoryAliasing.cpp | 930 std::ostringstream stream; in createImageSparseMemoryAliasingTestsCommon() local 931 stream << imageSize.x() << "_" << imageSize.y() << "_" << imageSize.z(); in createImageSparseMemoryAliasingTestsCommon() 933 formatGroup->addChild(new ImageSparseMemoryAliasingCase(testCtx, stream.str(), imageType, imageSize, format, glu::GLSL_VERSION_440, useDeviceGroup)); in createImageSparseMemoryAliasingTestsCommon()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ycbcr/ |
H A D | vktYCbCrStorageImageWriteTests.cpp | 757 std::ostringstream stream; 758 stream << imageSize.x() << "_" << imageSize.y() << "_" << imageSize.z(); 759 de::MovePtr<tcu::TestCaseGroup> sizeGroup(new tcu::TestCaseGroup(testCtx, stream.str().c_str()));
|
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
H A D | gl3cClipDistance.cpp | 1687 std::stringstream stream; in itoa() local 1689 stream << i; in itoa() 1691 return stream.str(); in itoa()
|
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
H A D | ProgramBinaryTest.cpp | 1312 std::ostream &operator<<(std::ostream &stream, const PlatformsWithLinkResult &platform) in operator <<() argument 1316 stream << platform1 << "_to_" << platform2; in operator <<() 1317 return stream; in operator <<()
|
/third_party/protobuf/src/google/protobuf/ |
H A D | struct.pb.h | 221 ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final; 382 ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final; 627 ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
|
/third_party/vk-gl-cts/modules/glshared/ |
H A D | glsFboUtil.cpp | 79 std::ostream& operator<< (std::ostream& stream, const ImageFormat& format) in operator <<() argument 84 return stream << glu::getTextureFormatStr(format.format); in operator <<() 89 return stream << "(format = " << glu::getTextureFormatStr(format.format) << ", type = " << glu::getTypeStr(format.unsizedType) << ")"; in operator <<()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/sparse_resources/ |
H A D | vktSparseResourcesImageMemoryAliasing.cpp | 932 std::ostringstream stream; in createImageSparseMemoryAliasingTestsCommon() local 933 stream << imageSize.x() << "_" << imageSize.y() << "_" << imageSize.z(); in createImageSparseMemoryAliasingTestsCommon() 935 formatGroup->addChild(new ImageSparseMemoryAliasingCase(testCtx, stream.str(), "", imageType, imageSize, format, glu::GLSL_VERSION_440, useDeviceGroup)); in createImageSparseMemoryAliasingTestsCommon()
|
/third_party/astc-encoder/Source/ |
H A D | tinyexr.h | 736 I've tried to closely emulate zlib's various flavors of stream flushing 1040 // Compression/decompression stream struct. 1078 // MZ_STREAM_ERROR if the stream is bogus. 1086 // window_bits must be MZ_DEFAULT_WINDOW_BITS (to wrap the deflate stream with 1100 // pStream is the stream to read from and write to. You must initialize/update 1109 // written. Don't call mz_deflate() on the stream anymore. 1110 // MZ_STREAM_ERROR if the stream is bogus. 1120 // MZ_STREAM_ERROR if the stream is bogus. 1144 // controls the window size and whether or not the stream has been wrapped with 1150 // Decompresses the input stream t 2159 mz_stream stream; mz_compress2() local 2366 mz_stream stream; mz_uncompress() local 9595 bitstream *stream = stream_open(&buf.at(0), buf_size); DecompressZfp() local 9658 bitstream *stream = stream_open(&outBuf->at(0), buf_size); CompressZfp() local [all...] |
/foundation/multimedia/av_codec/services/media_engine/modules/demuxer/ |
H A D | demuxer_plugin_manager.cpp | 47 DataSourceImpl::DataSourceImpl(const std::shared_ptr<BaseStreamDemuxer>& stream, int32_t streamID)
in DataSourceImpl() argument 48 : stream_(stream),
in DataSourceImpl() 69 * @param offset offset in media stream.
|
/foundation/multimedia/camera_framework/frameworks/native/camera/src/output/ |
H A D | preview_output.cpp | 334 auto stream = GetStream(); in CreateStream() local 335 CHECK_ERROR_RETURN_RET_LOG(stream != nullptr, CameraErrorCode::OPERATION_NOT_ALLOWED, in CreateStream() 336 "PreviewOutput::CreateStream stream is not null"); in CreateStream() 385 "PreviewOutput::setFrameRate failed to set stream frame rate"); in SetFrameRate()
|
/foundation/multimedia/media_lite/frameworks/player_lite/binder/ |
H A D | player_client.cpp | 64 auto stream = source->GetSourceStream(); in Callback() local 67 stream->SetSurface(surface); in Callback()
|
/test/testfwk/xdevice/src/xdevice/_core/ |
H A D | logger.py | 506 # stream is the attribute in StreamHandler 507 if not getattr(self, "stream", None): 508 setattr(self, "stream", self._open()) 510 stream = getattr(self, "stream", self._open()) 511 stream.write(msg)
|
/third_party/curl/lib/ |
H A D | mprintf.c | 90 if(!stream(x, userp)) \ 657 * All output is sent to the 'stream()' callback, one byte at a time. 661 void *userp, /* untouched by format(), just sent to the stream() function in in formatf() 664 int (*stream)(unsigned char, void *), in formatf()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | OlsonTimeZone.java | 1220 // object stream serialized by ICU 4.4+. However, such implementation will 1225 // deserialize object stream created by ICU 4.4+. Yoshito -Feb 22, 2010 1230 private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException { in readObject() argument 1231 stream.defaultReadObject(); in readObject()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | DateFormat.java | 579 * Describes the version of <code>DateFormat</code> present on the stream. 1897 * the stream was written by a pre-ICU-53 version, 1902 private void readObject(ObjectInputStream stream) in readObject() argument 1905 stream.defaultReadObject(); in readObject()
|
H A D | DecimalFormatSymbols.java | 1537 private void readObject(ObjectInputStream stream) in readObject() argument 1543 stream.defaultReadObject(); in readObject() 1556 // Although we read the exponential field on stream to create the in readObject() 1933 * Describes the version of <code>DecimalFormatSymbols</code> present on the stream.
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
H A D | OlsonTimeZone.java | 1222 // object stream serialized by ICU 4.4+. However, such implementation will 1227 // deserialize object stream created by ICU 4.4+. Yoshito -Feb 22, 2010 1232 private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException { in readObject() argument 1233 stream.defaultReadObject(); in readObject()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | DateFormat.java | 536 * Describes the version of <code>DateFormat</code> present on the stream. 1771 * the stream was written by a pre-ICU-53 version, 1776 private void readObject(ObjectInputStream stream) in readObject() argument 1779 stream.defaultReadObject(); in readObject()
|
H A D | DecimalFormatSymbols.java | 1433 private void readObject(ObjectInputStream stream) in readObject() argument 1439 stream.defaultReadObject(); in readObject() 1452 // Although we read the exponential field on stream to create the in readObject() 1809 * Describes the version of <code>DecimalFormatSymbols</code> present on the stream.
|
/third_party/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/ |
H A D | PerfTest.java | 738 public static byte[] readToEOS(InputStream stream) { in readToEOS() argument 751 int n = stream.read(buffer, pos, length - pos); in readToEOS() 853 * The input stream. 867 * The input stream.
|
/third_party/libuv/src/unix/ |
H A D | os390.c | 839 uv_stream_t* stream; in uv__io_poll() local 849 stream= container_of(w, uv_stream_t, io_watcher); in uv__io_poll()
|
/third_party/node/src/ |
H A D | jsvm.h | 2255 * @brief This function stops the CPU profiler and output to the stream. 2259 * @param stream: The output stream callback for receiving the data. 2260 * @param streamData: Optional data to be passed to the stream callback. 2266 JSVM_OutputStream stream, 2270 * @brief This funciton takes the current heap snapshot and output to the stream. 2273 * @param stream: The output stream callback for receiving the data. 2274 * @param streamData: Optional data to be passed to the stream callback. 2279 JSVM_OutputStream stream, [all...] |
/third_party/mesa3d/src/virtio/vulkan/ |
H A D | vn_instance.c | 579 const struct VkCommandStreamDescriptionMESA stream = { in vn_instance_get_reply_shmem_locked() local 583 vn_encode_vkSetReplyCommandStreamMESA(&local_enc, 0, &stream); in vn_instance_get_reply_shmem_locked()
|
/third_party/icu/icu4c/source/tools/tzcode/ |
H A D | zdump.c | 319 usage(FILE * const stream, const int status) in usage() argument 321 (void) fprintf(stream, in usage()
|