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:val
(Results
1 - 5
of
5
) sorted by relevance
/napi_generator/src/cli/h2dtscpp/src/src/tools/
H
A
D
Tool.js
100
function calculate(
val
, target, at) {
102
if ((
val
& 0xffffff80) === 0) { // 1-byte
103
target[at++] =
val
; // ASCII
105
} else if ((
val
& 0xffe00000) === 0) { // 4-byte
106
target[at++] = ((
val
>> MOVE_EIGHTEEN) & 0x07) | 0xf0;
107
target[at++] = ((
val
>> MOVE_TWELVE) & 0x3f) | 0x80;
108
target[at++] = ((
val
>> MOVE_SIX) & 0x3f) | 0x80;
109
} else if ((
val
& 0xffff0000) === 0) { // 3-byte
110
target[at++] = ((
val
>> MOVE_TWELVE) & 0x0f) | 0xe0;
111
target[at++] = ((
val
>> MOVE_SI
[all...]
/napi_generator/test/storytest/test_on/
H
A
D
test.js
23
function onCallback(
val
) {
25
console.info('onAsyncCallback
val
= ' +
val
)
87
function onCallback(
val
) {
89
console.info('onCallback err = ' +
val
)
93
function onCallback2(
val
, inter) {
95
console.info('onCallback2
val
= ' +
val
)
139
function onCallback(
val
) {
141
console.info('onCallback
val
[all...]
/napi_generator/examples/napitutorials/entry/src/main/cpp/javascriptapi/jsobjectwrap/
H
A
D
napiunwrap.cpp
27
MyNode(napi_env env, napi_value
val
)
in MyNode()
argument
30
status = napi_typeof(env,
val
, &result);
in MyNode()
/napi_generator/examples/akitutorials/entry/src/main/cpp/
H
A
D
napi_init.cpp
150
aki::Value
val
= aki::Value::NewObject();
in ConvertToString()
local
151
val
.Set("name", obj.As<std::string>());
in ConvertToString()
152
aki::Value strObj = aki::Value::FromGlobal("JSON")["stringify"](
val
);
in ConvertToString()
/napi_generator/src/cli/dts2cpp/src/gen/extend/
H
A
D
tool_utility.js
1190
uint32_t
val
= std::any_cast<uint32_t>(iter->second);
1191
napi_value value = SwapC2JsUint32(
val
);
1195
int32_t
val
= std::any_cast<int32_t>(iter->second);
1196
napi_value value = SwapC2JsInt32(
val
);
1200
int64_t
val
= std::any_cast<int64_t>(iter->second);
1201
napi_value value = SwapC2JsInt64(
val
);
1205
double_t
val
= std::any_cast<double_t>(iter->second);
1206
napi_value value = SwapC2JsDouble(
val
);
1210
const char *
val
= std::any_cast<const char *>(iter->second);
1211
napi_value value = SwapC2JsUtf8(
val
);
[all...]
Completed in 3 milliseconds