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:ohFilterInfo
(Results
1 - 3
of
3
) sorted by relevance
/foundation/multimedia/image_effect/frameworks/native/capi/
H
A
D
native_common_utils.h
44
static void SwitchToOHEffectInfo(const EffectInfo *effectInfo, OH_EffectFilterInfo *
ohFilterInfo
);
54
static uint32_t GetSupportedFormats(const OH_EffectFilterInfo *
ohFilterInfo
);
H
A
D
native_common_utils.cpp
164
void NativeCommonUtils::SwitchToOHEffectInfo(const EffectInfo *effectInfo, OH_EffectFilterInfo *
ohFilterInfo
)
in SwitchToOHEffectInfo()
argument
167
CHECK_AND_RETURN_LOG(
ohFilterInfo
!= nullptr, "
ohFilterInfo
is null!");
in SwitchToOHEffectInfo()
169
ohFilterInfo
->supportedBufferTypes.clear();
in SwitchToOHEffectInfo()
170
ohFilterInfo
->supportedFormats.clear();
in SwitchToOHEffectInfo()
178
ohFilterInfo
->supportedBufferTypes.emplace(bufferType);
in SwitchToOHEffectInfo()
183
ohFilterInfo
->supportedFormats.emplace(ohFormatType);
in SwitchToOHEffectInfo()
304
uint32_t NativeCommonUtils::GetSupportedFormats(const OH_EffectFilterInfo *
ohFilterInfo
)
in GetSupportedFormats()
argument
306
if (
ohFilterInfo
== nullptr) {
in GetSupportedFormats()
312
for (auto format :
ohFilterInfo
in GetSupportedFormats()
[all...]
/foundation/multimedia/image_effect/test/unittest/
H
A
D
TestUtils.cpp
398
std::shared_ptr<OH_EffectFilterInfo>
ohFilterInfo
= std::make_shared<OH_EffectFilterInfo>();
in HWTEST_F()
local
403
NativeCommonUtils::SwitchToOHEffectInfo(&effectInfo,
ohFilterInfo
.get());
in HWTEST_F()
404
ASSERT_NE(
ohFilterInfo
->supportedBufferTypes.size(), 1);
in HWTEST_F()
405
ASSERT_EQ(
ohFilterInfo
->supportedFormats.size(), 1);
in HWTEST_F()
406
ASSERT_EQ(*(
ohFilterInfo
->supportedFormats.begin()), ImageEffect_Format::EFFECT_PIXEL_FORMAT_UNKNOWN);
in HWTEST_F()
411
std::shared_ptr<OH_EffectFilterInfo>
ohFilterInfo
= nullptr;
in HWTEST_F()
local
412
uint32_t result = NativeCommonUtils::GetSupportedFormats(
ohFilterInfo
.get());
in HWTEST_F()
415
ohFilterInfo
= std::make_shared<OH_EffectFilterInfo>();
in HWTEST_F()
416
ohFilterInfo
->supportedFormats.emplace(ImageEffect_Format::EFFECT_PIXEL_FORMAT_YCRCB_P010);
in HWTEST_F()
417
result = NativeCommonUtils::GetSupportedFormats(
ohFilterInfo
in HWTEST_F()
[all...]
Completed in 2 milliseconds