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:obscuredReasons
(Results
1 - 5
of
5
) sorted by relevance
/foundation/arkui/ace_engine/frameworks/core/components_ng/render/
H
A
D
render_context.cpp
171
std::vector<ObscuredReasons>
obscuredReasons
= propObscured_.value_or(std::vector<ObscuredReasons>());
in ObscuredToJsonValue()
local
172
for (size_t i = 0; i <
obscuredReasons
.size(); i++) {
in ObscuredToJsonValue()
174
auto value = std::to_string(static_cast<int32_t>(
obscuredReasons
[i]));
in ObscuredToJsonValue()
/foundation/arkui/ace_engine/test/unittest/core/render/
H
A
D
render_context_test_ng.cpp
428
std::vector<ObscuredReasons>
obscuredReasons
;
in HWTEST_F()
local
429
obscuredReasons
.emplace_back(ObscuredReasons::PLACEHOLDER);
in HWTEST_F()
430
renderContext.UpdateObscured(
obscuredReasons
);
in HWTEST_F()
/foundation/arkui/ace_engine/adapter/ohos/osal/
H
A
D
image_analyzer_manager.cpp
232
auto
obscuredReasons
= node->GetRenderContext()->GetObscured().value();
in IsSupportImageAnalyzerFeature()
local
233
hasObscured = std::any_of(
obscuredReasons
.begin(),
obscuredReasons
.end(),
in IsSupportImageAnalyzerFeature()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/image/
H
A
D
image_pattern.cpp
879
auto
obscuredReasons
= host->GetRenderContext()->GetObscured().value();
880
hasObscured = std::any_of(
obscuredReasons
.begin(),
obscuredReasons
.end(),
2308
auto
obscuredReasons
= host->GetRenderContext()->GetObscured().value_or(std::vector<ObscuredReasons>());
2311
castRenderContext->UpdateObscured(
obscuredReasons
);
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text/
H
A
D
text_pattern.cpp
4126
auto
obscuredReasons
= renderContext->GetObscured().value_or(std::vector<ObscuredReasons>());
in IsSetObscured()
local
4127
bool ifHaveObscured = spans_.empty() && std::any_of(
obscuredReasons
.begin(),
obscuredReasons
.end(),
in IsSetObscured()
Completed in 13 milliseconds