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:efilters
(Results
1 - 2
of
2
) sorted by relevance
/foundation/multimedia/image_effect/test/unittest/
H
A
D
TestImageEffect.cpp
367
std::vector<std::shared_ptr<EFilter>>
efilters
= imageEffect->GetEFilters();
in HWTEST_F()
local
368
ASSERT_EQ(
efilters
.size(), 2);
in HWTEST_F()
369
ASSERT_STREQ(
efilters
.at(0)->GetName().c_str(), BRIGHTNESS_EFILTER);
in HWTEST_F()
371
ASSERT_EQ(
efilters
.at(0)->GetValue(KEY_FILTER_INTENSITY, value), ErrorCode::SUCCESS);
in HWTEST_F()
377
ASSERT_STREQ(
efilters
.at(1)->GetName().c_str(), CONTRAST_EFILTER);
in HWTEST_F()
378
ASSERT_EQ(
efilters
.at(1)->GetValue(KEY_FILTER_INTENSITY, any), ErrorCode::SUCCESS);
in HWTEST_F()
396
std::vector<std::shared_ptr<EFilter>>
efilters
= imageEffect->GetEFilters();
in HWTEST_F()
local
397
ASSERT_EQ(
efilters
.size(), 2);
in HWTEST_F()
398
ASSERT_STREQ(
efilters
.at(0)->GetName().c_str(), "CustomTestEFilter");
in HWTEST_F()
400
ASSERT_EQ(
efilters
in HWTEST_F()
416
std::vector<std::shared_ptr<EFilter>>
efilters
= imageEffect->GetEFilters();
HWTEST_F()
local
[all...]
/foundation/multimedia/image_effect/frameworks/native/effect/base/
H
A
D
image_effect_inner.cpp
67
void CreatePipeline(std::vector<std::shared_ptr<EFilter>> &
efilters
);
99
void ImageEffect::Impl::CreatePipeline(std::vector<std::shared_ptr<EFilter>> &
efilters
)
in CreatePipeline()
argument
106
for (const auto &eFilter :
efilters
) {
in CreatePipeline()
609
EFFECT_LOGW("
efilters
is empty!");
in Render()
Completed in 3 milliseconds