Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:imageData
(Results
1 - 9
of
9
) sorted by relevance
/base/web/webview/ohos_interface/ohos_glue/ohos_adapter/bridge/webcore/
H
A
D
ark_paste_data_record_adapter_wrapper.cpp
59
bool ArkPasteDataRecordAdapterWrapper::SetImgData(std::shared_ptr<NWeb::ClipBoardImageDataAdapter>
imageData
)
in SetImgData()
argument
61
if (!
imageData
) {
in SetImgData()
64
return ctocpp_->SetImgData(new ArkClipBoardImageDataAdapterImpl(
imageData
));
in SetImgData()
89
bool ArkPasteDataRecordAdapterWrapper::GetImgData(std::shared_ptr<NWeb::ClipBoardImageDataAdapter>
imageData
)
in GetImgData()
argument
91
if (!
imageData
) {
in GetImgData()
94
return ctocpp_->GetImgData(new ArkClipBoardImageDataAdapterImpl(
imageData
));
in GetImgData()
H
A
D
ark_paste_data_record_adapter_wrapper.h
33
bool SetImgData(std::shared_ptr<NWeb::ClipBoardImageDataAdapter>
imageData
) override;
41
bool GetImgData(std::shared_ptr<NWeb::ClipBoardImageDataAdapter>
imageData
) override;
/base/web/webview/ohos_interface/ohos_glue/ohos_adapter/bridge/webview/
H
A
D
ark_paste_data_record_adapter_impl.cpp
57
bool ArkPasteDataRecordAdapterImpl::SetImgData(ArkWebRefPtr<ArkClipBoardImageDataAdapter>
imageData
)
in SetImgData()
argument
59
if (CHECK_REF_PTR_IS_NULL(
imageData
)) {
in SetImgData()
63
return real_->SetImgData(std::make_shared<ArkClipBoardImageDataAdapterWrapper>(
imageData
));
in SetImgData()
85
bool ArkPasteDataRecordAdapterImpl::GetImgData(ArkWebRefPtr<ArkClipBoardImageDataAdapter>
imageData
)
in GetImgData()
argument
87
if (CHECK_REF_PTR_IS_NULL(
imageData
)) {
in GetImgData()
91
return real_->GetImgData(std::make_shared<ArkClipBoardImageDataAdapterWrapper>(
imageData
));
in GetImgData()
H
A
D
ark_paste_data_record_adapter_impl.h
33
bool SetImgData(ArkWebRefPtr<ArkClipBoardImageDataAdapter>
imageData
) override;
41
bool GetImgData(ArkWebRefPtr<ArkClipBoardImageDataAdapter>
imageData
) override;
/base/web/webview/ohos_adapter/pasteboard_adapter/src/
H
A
D
pasteboard_client_adapter_impl.cpp
194
bool PasteDataRecordAdapterImpl::SetImgData(std::shared_ptr<ClipBoardImageDataAdapter>
imageData
)
in SetImgData()
argument
196
if (
imageData
== nullptr) {
in SetImgData()
197
WVLOG_E("
imageData
is null");
in SetImgData()
201
opt.size.width =
imageData
->GetWidth();
in SetImgData()
202
opt.size.height =
imageData
->GetHeight();
in SetImgData()
203
opt.pixelFormat = ClipboardToImageColorType(
imageData
->GetColorType());
in SetImgData()
204
opt.alphaType = ClipboardToImageAlphaType(
imageData
->GetAlphaType());
in SetImgData()
211
uint64_t stride = static_cast<uint64_t>(
imageData
->GetWidth()) << 2;
in SetImgData()
212
uint64_t bufferSize = stride * static_cast<uint64_t>(
imageData
->GetHeight());
in SetImgData()
213
uint32_t ret = pixelMap->WritePixels(reinterpret_cast<const uint8_t *>(
imageData
in SetImgData()
244
GetImgData(std::shared_ptr<ClipBoardImageDataAdapter>
imageData
)
GetImgData()
argument
[all...]
/base/web/webview/test/fuzztest/ohos_adapter/ohosimagedecoderadapterimpl_fuzzer/
H
A
D
ohosimagedecoderadapterimpl_fuzzer.cpp
65
const uint8_t*
imageData
= pixelMap->GetPixels();
in ProcessImageSource()
local
66
if (!
imageData
) {
in ProcessImageSource()
71
adapter->ParseImageInfo(
imageData
, len);
in ProcessImageSource()
72
adapter->DecodeToPixelMap(
imageData
, len);
in ProcessImageSource()
/base/web/webview/ohos_interface/ohos_glue/ohos_adapter/include/
H
A
D
ark_pasteboard_client_adapter.h
128
virtual bool SetImgData(ArkWebRefPtr<ArkClipBoardImageDataAdapter>
imageData
) = 0;
140
virtual bool GetImgData(ArkWebRefPtr<ArkClipBoardImageDataAdapter>
imageData
) = 0;
/base/web/webview/ohos_interface/include/ohos_adapter/
H
A
D
pasteboard_client_adapter.h
126
virtual bool SetImgData(std::shared_ptr<ClipBoardImageDataAdapter>
imageData
) = 0;
134
virtual bool GetImgData(std::shared_ptr<ClipBoardImageDataAdapter>
imageData
) = 0;
/base/web/webview/ohos_adapter/pasteboard_adapter/include/
H
A
D
pasteboard_client_adapter_impl.h
45
bool SetImgData(std::shared_ptr<ClipBoardImageDataAdapter>
imageData
) override;
52
bool GetImgData(std::shared_ptr<ClipBoardImageDataAdapter>
imageData
) override;
Completed in 4 milliseconds