/foundation/graphic/graphic_3d/lume/metaobject/src/serialization/backend/ |
H A D | debug_output.cpp | 34 Output("<null>"); in Visit() 39 Output("Object [name=" + n.GetObjectName() + "]\n"); in Visit() 64 Output(v.name + ": "); in Visit() 70 Output(std::to_string(n.GetValue()).c_str()); in Visit() 74 Output(std::to_string(n.GetValue()).c_str()); in Visit() 78 Output(std::to_string(n.GetValue()).c_str()); in Visit() 82 Output(std::to_string(n.GetValue()).c_str()); in Visit() 86 Output(n.GetValue()); in Visit() 90 Output(n.GetValue().ToString()); in Visit() 96 void DebugOutput::Output(cons in Visit() function in Serialization::DebugOutput [all...] |
H A D | debug_output.h | 46 void Output(const BASE_NS::string& v);
|
/foundation/graphic/graphic_2d/rosen/modules/effect/effectChain/src/ |
H A D | output.cpp | 23 Output::Output()
in Output() function in OHOS::Rosen::Output 28 FILTER_TYPE Output::GetFilterType()
in GetFilterType() 33 std::unique_ptr<OHOS::Media::PixelMap> Output::GetPixelMap()
in GetPixelMap() 38 const std::vector<uint8_t>& Output::GetColorBuffer()
in GetColorBuffer() 43 void Output::DoProcess(ProcessData& data)
in DoProcess() 52 LOGE("The format of Output is incorrect!!!");
in DoProcess() 56 void Output::EncodeToFile(ProcessData& data)
in EncodeToFile() 77 void Output::EncodeToPixelMap(ProcessData& data)
in EncodeToPixelMap() 93 void Output [all...] |
H A D | filter_factory.cpp | 39 } else if (filterType == "Output") {
in GetFilter() 40 std::shared_ptr<Output> outputFilter = std::make_shared<Output>();
in GetFilter()
|
/foundation/graphic/graphic_2d/rosen/modules/effect/test/unittest/ |
H A D | output_unittest.cpp | 38 auto output = std::make_shared<Output>();
in HWTEST_F() 62 auto output = std::make_shared<Output>();
in HWTEST_F() 86 auto output = std::make_shared<Output>();
in HWTEST_F() 110 auto output = std::make_shared<Output>();
in HWTEST_F() 138 auto output = std::make_shared<Output>();
in HWTEST_F() 165 auto output = std::make_shared<Output>();
in HWTEST_F() 191 auto output = std::make_shared<Output>();
in HWTEST_F() 225 auto output = std::make_shared<Output>();
in HWTEST_F() 248 auto output = std::make_shared<Output>();
in HWTEST_F() 280 auto output = std::make_shared<Output>();
in HWTEST_F() [all...] |
H A D | image_chain_unittest.cpp | 105 auto output = std::make_shared<Output>();
in HWTEST_F()
|
/foundation/graphic/graphic_2d/rosen/modules/effect/effectChain/include/ |
H A D | output.h | 26 class Output : public AlgoFilter {
class 29 Output();
30 virtual ~Output() {};
in ~Output()
|
/foundation/arkui/ace_engine_lite/frameworks/src/core/modules/presets/ |
H A D | console_log_impl.cpp | 134 Output(logLevel, str, strlen(str)); in LogString() 148 Output(logLevel, tempBuffer, 1); in LogChar() 156 Output(logLevel, logBuffer, logBufferIndex); in LogChar() 162 Output(logLevel, "\n", 1); // hilog will trace our the line separator directly in LogChar() 233 void Output(const LogLevel logLevel, const char * const str, const uint8_t length) in Output() function 239 Debugger::GetInstance().Output(str); in Output()
|
H A D | console_log_impl.h | 56 * @brief: Output given string into stdout or the log file. 62 void Output(const LogLevel logLevel, const char * const str, const uint8_t length);
|
/foundation/communication/ipc/interfaces/innerkits/rust/src/ipc_async/ |
H A D | ipc_ylong.rs | 30 Fut: Future<Output = IpcResult<B>>,
in spawn() 69 T: Future<Output = R>,
in spawn() 85 fn block_on<F: Future>(future: F) -> F::Output {
in block_on()
|
H A D | mod.rs | 28 pub type BoxFuture<'a, T> = Pin<Box<dyn Future<Output = T> + Send + 'a>>;
44 Fut: Future<Output = IpcResult<B>>,
in spawn() 57 T: Future<Output = R>,
in spawn() 70 fn block_on<F: Future>(future: F) -> F::Output;
in spawn()
|
/foundation/arkui/ace_engine_lite/frameworks/src/core/base/ |
H A D | js_debugger_config.cpp | 73 void Debugger::Output(const char * const str) in Output() function in OHOS::ACELite::Debugger 138 void Debugger::Output(const char * const str) in Output() function in OHOS::ACELite::Debugger
|
/foundation/communication/netstack/interfaces/innerkits/rust/ylong_http_client/src/reqwest_impl/async_impl/downloader/ |
H A D | operator.rs | 137 type Output = Result<usize, HttpClientError>; types 139 fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in poll() 156 type Output = Result<(), HttpClientError>; types 158 fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in poll()
|
/foundation/graphic/graphic_2d/rosen/samples/2d_graphics/benchmarks/benchmark_multithread/ |
H A D | drawing_mutilthread.cpp | 30 void DrawingMultithread::Output()
in Output() function in OHOS::Rosen::DrawingMultithread
|
H A D | drawing_multithread.h | 28 virtual void Output() override;
|
/foundation/graphic/graphic_2d/rosen/samples/2d_graphics/benchmarks/ |
H A D | benchmark.h | 36 virtual void Output() = 0;
|
/foundation/graphic/graphic_2d/rosen/samples/2d_graphics/benchmarks/benchmark_singlethread/ |
H A D | drawing_singlethread.cpp | 39 void DrawingSinglethread::Output()
in Output() function in OHOS::Rosen::DrawingSinglethread
|
H A D | drawing_singlethread.h | 29 virtual void Output() override;
|
/foundation/graphic/graphic_2d/rosen/samples/2d_graphics/benchmarks/benchmark_api/ |
H A D | drawing_api.h | 29 virtual void Output() override {}
|
/foundation/arkui/ace_engine_lite/frameworks/src/core/context/ |
H A D | js_profiler.h | 37 #define OUTPUT_TRACE() JSProfiler::GetInstance()->Output() 194 void Output();
|
H A D | js_profiler.cpp | 342 void JSProfiler::Output() in Output() function in OHOS::ACELite::JSProfiler
|
/foundation/communication/netstack/interfaces/innerkits/rust/ylong_http_client/src/reqwest_impl/async_impl/uploader/ |
H A D | operator.rs | 102 type Output = Result<(), HttpClientError>; types 104 fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in poll()
|
/foundation/arkui/ace_engine_lite/frameworks/include/base/ |
H A D | js_debugger_config.h | 118 void Output(const char *str);
|
/foundation/graphic/graphic_2d/rosen/samples/2d_graphics/benchmarks/benchmark_dcl/ |
H A D | drawing_playback.h | 73 void Output() override;
|
H A D | drawing_playback.cpp | 413 void DrawingDCL::Output() in Output() function in OHOS::Rosen::DrawingDCL
|