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:DECLARATIVE_JS
(Results
1 - 13
of
13
) sorted by relevance
/foundation/arkui/ace_engine/adapter/preview/entrance/
H
A
D
ace_container.cpp
105
if (type_ != FrontendType::
DECLARATIVE_JS
&& type_ != FrontendType::ETS_CARD) {
in AceContainer()
116
if (type_ != FrontendType::
DECLARATIVE_JS
&& type_ != FrontendType::ETS_CARD) {
in Initialize()
176
} else if (type_ == FrontendType::
DECLARATIVE_JS
) {
in InitializeFrontend()
522
if ((type == FrontendType::JS) || (type == FrontendType::
DECLARATIVE_JS
) || (type == FrontendType::JS_CARD) ||
in RunPage()
629
} else if (type == FrontendType::
DECLARATIVE_JS
) {
in FetchResponse()
846
if (type_ == FrontendType::
DECLARATIVE_JS
) {
in AttachView()
847
// For
DECLARATIVE_JS
frontend display UI in JS thread temporarily.
in AttachView()
850
if (type_ == FrontendType::
DECLARATIVE_JS
) {
in AttachView()
939
if (type_ == FrontendType::
DECLARATIVE_JS
|| type_ == FrontendType::ETS_CARD) {
in AttachView()
940
// For
DECLARATIVE_JS
fronten
in AttachView()
[all...]
H
A
D
ace_ability.cpp
235
AceContainer::CreateContainer(ACE_INSTANCE_ID, FrontendType::
DECLARATIVE_JS
, useNewPipeline_);
in AceAbility()
507
if (container->GetType() == FrontendType::
DECLARATIVE_JS
) {
in OnConfigurationChanged()
H
A
D
ui_content_impl.cpp
351
AceContainer::CreateContainer(instanceId_, FrontendType::
DECLARATIVE_JS
, useNewPipeline_);
in CommonInitialize()
/foundation/arkui/ace_engine/adapter/ohos/entrance/
H
A
D
dialog_container.h
38
explicit DialogContainer(int32_t instanceId, FrontendType type = FrontendType::
DECLARATIVE_JS
);
225
FrontendType type_ = FrontendType::
DECLARATIVE_JS
;
H
A
D
ace_ability.cpp
70
return FrontendType::
DECLARATIVE_JS
;
in GetFrontendType()
93
return FrontendType::
DECLARATIVE_JS
;
in GetFrontendTypeFromManifest()
320
useNewPipe = useNewPipe && (frontendType == FrontendType::ETS_CARD || frontendType == FrontendType::
DECLARATIVE_JS
);
in OnStart()
H
A
D
ace_container.cpp
283
// No need to create JS Thread for
DECLARATIVE_JS
in InitializeTask()
284
if (type_ == FrontendType::
DECLARATIVE_JS
|| type_ == FrontendType::DECLARATIVE_CJ) {
in InitializeTask()
302
// For
DECLARATIVE_JS
frontend use UI as JS Thread, so InitializeFrontend after UI thread created.
in Initialize()
303
if (type_ != FrontendType::
DECLARATIVE_JS
&& type_ != FrontendType::DECLARATIVE_CJ) {
in Initialize()
397
} else if (type_ == FrontendType::
DECLARATIVE_JS
) {
in InitializeFrontend()
1938
if (container->type_ != FrontendType::
DECLARATIVE_JS
&& container->type_ != FrontendType::DECLARATIVE_CJ) {
in AddAssetPath()
1969
if (container->type_ != FrontendType::
DECLARATIVE_JS
&& container->type_ != FrontendType::DECLARATIVE_CJ) {
in AddLibPath()
1989
if (type_ == FrontendType::
DECLARATIVE_JS
|| type_ == FrontendType::DECLARATIVE_CJ) {
in AttachView()
1990
// For
DECLARATIVE_JS
frontend display UI in JS thread temporarily.
in AttachView()
2183
} else if (frontend_->GetType() == FrontendType::
DECLARATIVE_JS
) {
in AttachView()
[all...]
H
A
D
ui_content_impl.cpp
949
if (frontend->GetType() == FrontendType::
DECLARATIVE_JS
) {
in GetUINapiContext()
1207
AceType::MakeRefPtr<Platform::AceContainer>(instanceId_, FrontendType::
DECLARATIVE_JS
, context_, info,
in CommonInitializeForm()
1757
auto frontendType = isCJFrontend? FrontendType::DECLARATIVE_CJ : FrontendType::
DECLARATIVE_JS
;
in CommonInitialize()
2849
auto frontendType = isCJFrontend ? FrontendType::DECLARATIVE_CJ : FrontendType::
DECLARATIVE_JS
;
in InitializeSubWindow()
2854
container = AceType::MakeRefPtr<Platform::DialogContainer>(instanceId_, FrontendType::
DECLARATIVE_JS
);
in InitializeSubWindow()
/foundation/arkui/ace_engine/frameworks/core/common/
H
A
D
frontend.h
79
enum class FrontendType { JSON, JS, JS_CARD,
DECLARATIVE_JS
, JS_PLUGIN, ETS_CARD, DECLARATIVE_CJ };
member in OHOS::Ace::FrontendType
/foundation/arkui/ace_engine/test/unittest/core/pattern/ui_extension/mock/
H
A
D
mock_ace_container.cpp
83
auto aceContainer = AceType::MakeRefPtr<AceContainer>(instanceId, FrontendType::
DECLARATIVE_JS
, context,
in GetContainer()
/foundation/arkui/ace_engine/frameworks/bridge/js_frontend/engine/jsi/
H
A
D
jsi_group_js_bridge.cpp
109
} else if (type == FrontendType::
DECLARATIVE_JS
) {
in ProcessJsRequest()
158
(type == FrontendType::
DECLARATIVE_JS
&& !declarativeInstance->CallCurlFunction(requestData, callbackId))) {
in ProcessJsRequest()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/ng/
H
A
D
declarative_frontend_ng.cpp
44
ACE_DCHECK(type_ == FrontendType::
DECLARATIVE_JS
);
in Initialize()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/
H
A
D
declarative_frontend.cpp
185
ACE_DCHECK(type_ == FrontendType::
DECLARATIVE_JS
);
in Initialize()
/foundation/arkui/ace_engine/frameworks/core/pipeline/
H
A
D
pipeline_context.cpp
3305
return (front->GetType() == FrontendType::
DECLARATIVE_JS
||
in GetIsDeclarative()
Completed in 29 milliseconds