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:controllerObj
(Results
1 - 12
of
12
) sorted by relevance
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H
A
D
js_text_clock.cpp
107
auto
controllerObj
= optionsObject->GetProperty("controller");
in Create()
local
108
if (!
controllerObj
->IsUndefined() && !
controllerObj
->IsNull() &&
controllerObj
->IsObject()) {
in Create()
109
auto* jsController = JSRef<JSObject>::Cast(
controllerObj
)->Unwrap<JSTextClockController>();
in Create()
H
A
D
js_texttimer.cpp
92
auto
controllerObj
= paramObject->GetProperty("controller");
in Create()
local
93
if (
controllerObj
->IsObject()) {
in Create()
94
auto* jsController = JSRef<JSObject>::Cast(
controllerObj
)->Unwrap<JSTextTimerController>();
in Create()
H
A
D
js_xcomponent.cpp
199
JSRef<JSObject>
controllerObj
;
in Create()
local
201
controllerObj
= JSRef<JSObject>::Cast(controller);
in Create()
202
xcomponentController = GetXComponentController(
controllerObj
, idOpt, info.GetExecutionContext());
in Create()
211
if (!libraryNameOpt.has_value() && xcomponentController && !
controllerObj
->IsUndefined()) {
in Create()
212
SetControllerCallback(
controllerObj
, info.GetExecutionContext());
in Create()
H
A
D
js_video.cpp
59
auto
controllerObj
= videoObj->GetProperty("controller");
in Create()
local
61
if (
controllerObj
->IsObject()) {
in Create()
62
auto* jsVideoController = JSRef<JSObject>::Cast(
controllerObj
)->Unwrap<JSVideoController>();
in Create()
H
A
D
js_calendar.cpp
105
auto
controllerObj
= obj->GetProperty("controller");
in Create()
local
124
if (
controllerObj
->IsObject()) {
in Create()
125
auto jsCalendarController = JSRef<JSObject>::Cast(
controllerObj
)->Unwrap<JSCalendarController>();
in Create()
H
A
D
js_textfield.cpp
161
auto
controllerObj
= paramObject->GetProperty("controller");
in CreateTextInput()
local
162
if (!
controllerObj
->IsUndefined() && !
controllerObj
->IsNull()) {
in CreateTextInput()
163
jsController = JSRef<JSObject>::Cast(
controllerObj
)->Unwrap<JSTextEditableController>();
in CreateTextInput()
210
auto
controllerObj
= paramObject->GetProperty("controller");
in CreateTextArea()
local
211
if (!
controllerObj
->IsUndefined() && !
controllerObj
->IsNull()) {
in CreateTextArea()
212
jsController = JSRef<JSObject>::Cast(
controllerObj
)->Unwrap<JSTextEditableController>();
in CreateTextArea()
H
A
D
js_text.cpp
790
auto
controllerObj
= paramObject->GetProperty("controller");
in Create()
local
791
if (!
controllerObj
->IsUndefined() && !
controllerObj
->IsNull() &&
controllerObj
->IsObject()) {
in Create()
792
jsController = JSRef<JSObject>::Cast(
controllerObj
)->Unwrap<JSTextController>();
in Create()
H
A
D
js_search.cpp
232
auto
controllerObj
= param->GetProperty("controller");
in Create()
local
233
if (!
controllerObj
->IsUndefined() && !
controllerObj
->IsNull() &&
controllerObj
->IsObject()) {
in Create()
234
jsController = JSRef<JSObject>::Cast(
controllerObj
)->Unwrap<JSTextEditableController>();
in Create()
H
A
D
js_richeditor.cpp
181
auto
controllerObj
= paramObject->GetProperty("controller");
in Create()
local
182
if (!
controllerObj
->IsUndefined() && !
controllerObj
->IsNull() &&
controllerObj
->IsObject()) {
in Create()
183
jsBaseController = JSRef<JSObject>::Cast(
controllerObj
)->Unwrap<JSRichEditorBaseController>();
in Create()
H
A
D
js_web.cpp
2352
auto
controllerObj
= paramObject->GetProperty("controller");
in Create()
2353
if (!
controllerObj
->IsObject()) {
in Create()
2386
auto controller = JSRef<JSObject>::Cast(
controllerObj
);
in Create()
3479
auto
controllerObj
= paramObject->GetProperty("controller");
in JavaScriptProxy()
local
3485
if (!
controllerObj
->IsObject()) {
in JavaScriptProxy()
3488
auto controller = JSRef<JSObject>::Cast(
controllerObj
);
in JavaScriptProxy()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/
H
A
D
arkts_native_xcomponent_bridge.cpp
257
Framework::JSRef<Framework::JSObject>
controllerObj
;
in SetXComponentInitialize()
local
260
controllerObj
= Framework::JSRef<Framework::JSObject>::Cast(args);
in SetXComponentInitialize()
262
controllerObj
->Unwrap<Framework::JSXComponentController>();
in SetXComponentInitialize()
285
!
controllerObj
->IsUndefined()) {
in SetXComponentInitialize()
H
A
D
arkts_native_text_bridge.cpp
705
auto
controllerObj
= paramObject->GetProperty("controller");
in SetTextController()
local
707
if (
controllerObj
->IsObject()) {
in SetTextController()
709
Framework::JSRef<Framework::JSObject>::Cast(
controllerObj
)->Unwrap<Framework::JSTextController>();
in SetTextController()
Completed in 33 milliseconds