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:ValueIsFunction
(Results
1 - 8
of
8
) sorted by relevance
/foundation/arkui/ace_engine_lite/frameworks/src/core/dialog/
H
A
D
js_dialog.cpp
200
if (JSI::
ValueIsFunction
(jsSuccessFunc_)) {
in OnClick()
203
if (JSI::
ValueIsFunction
(jsCompleteFunc_)) {
in OnClick()
222
if (JSI::
ValueIsFunction
(jsCancelFunc_)) {
in OnClick()
225
if (JSI::
ValueIsFunction
(jsCompleteFunc_)) {
in OnClick()
/foundation/communication/netstack/frameworks/js/builtin/fetch/src/
H
A
D
http_async_callback.cpp
103
if (success == nullptr || JSI::ValueIsUndefined(success) || !JSI::
ValueIsFunction
(success)) {
in OnSuccess()
119
if (fail == nullptr || JSI::ValueIsUndefined(fail) || !JSI::
ValueIsFunction
(fail)) {
in OnFail()
132
if (complete == nullptr || JSI::ValueIsUndefined(complete) || !JSI::
ValueIsFunction
(complete)) {
in OnComplete()
/foundation/arkui/ace_engine_lite/frameworks/src/core/modules/
H
A
D
app_module.cpp
161
if ((!JSI::ValueIsUndefined(callback)) && JSI::
ValueIsFunction
(callback)) {
in OnSetActionSuccess()
171
if ((!JSI::ValueIsUndefined(fail)) && JSI::
ValueIsFunction
(fail)) {
in OnSetActionFail()
184
if ((!JSI::ValueIsUndefined(callback)) && JSI::
ValueIsFunction
(callback)) {
in OnSetActionComplete()
/foundation/arkui/ace_engine_lite/interfaces/inner_api/builtin/jsi/
H
A
D
jsi.h
199
static bool
ValueIsFunction
(JSIValue value);
/foundation/arkui/ace_engine_lite/frameworks/native_engine/jsi/test/unittest/common/
H
A
D
jsi_interface_tdd_test.cpp
194
* @tc.steps: step2. call JSI
ValueIsFunction
with Function object
in JSIInterfaceTest005()
196
bool res1 = JSI::
ValueIsFunction
(func);
in JSIInterfaceTest005()
200
* @tc.steps: step3. call JSI
ValueIsFunction
with Undefined object
in JSIInterfaceTest005()
202
bool res2 = JSI::
ValueIsFunction
(undefined);
in JSIInterfaceTest005()
1074
* @tc.steps: step2. call JSI
ValueIsFunction
with Function object
in JSIInterfaceTest029()
1076
bool res1 = JSI::
ValueIsFunction
(func);
in JSIInterfaceTest029()
1080
* @tc.steps: step3. call JSI
ValueIsFunction
with Undefined object
in JSIInterfaceTest029()
1082
bool res2 = JSI::
ValueIsFunction
(undefined);
in JSIInterfaceTest029()
/foundation/arkui/ace_engine_lite/frameworks/native_engine/jsi/
H
A
D
jsi.cpp
216
bool JSI::
ValueIsFunction
(JSIValue value)
in ValueIsFunction()
function in OHOS::ACELite::JSI
221
HILOG_ERROR(HILOG_MODULE_ACE, "JSI:
ValueIsFunction
has not been implemented in this js engine!");
in ValueIsFunction()
430
if (!
ValueIsFunction
(funcObj)) {
in CallFunction()
/foundation/multimedia/media_lite/interfaces/kits/player_lite/js/builtin/src/
H
A
D
audio_player.cpp
72
if (JSI::
ValueIsFunction
(callback_)) {
in OnTrigger()
H
A
D
audio_module.cpp
321
if (!JSI::
ValueIsFunction
(callback)) {
in CreateAudioEventListener()
Completed in 9 milliseconds