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:arrow_func_p
(Results
1 - 2
of
2
) sorted by relevance
/third_party/jerryscript/jerry-core/ecma/operations/
H
A
D
ecma-function-object.c
460
ecma_arrow_function_t *
arrow_func_p
= (ecma_arrow_function_t *) func_p;
in ecma_op_create_arrow_function_object()
local
462
ECMA_SET_NON_NULL_POINTER_TAG (
arrow_func_p
->header.u.function.scope_cp, scope_p, 0);
in ecma_op_create_arrow_function_object()
467
arrow_func_p
->header.u.function.bytecode_cp = ECMA_NULL_POINTER;
in ecma_op_create_arrow_function_object()
473
ECMA_SET_INTERNAL_VALUE_POINTER (
arrow_func_p
->header.u.function.bytecode_cp, bytecode_data_p);
in ecma_op_create_arrow_function_object()
479
arrow_func_p
->this_binding = ecma_copy_value_if_not_object (this_binding);
in ecma_op_create_arrow_function_object()
480
arrow_func_p
->new_target = ECMA_VALUE_UNDEFINED;
in ecma_op_create_arrow_function_object()
484
arrow_func_p
->new_target = ecma_make_object_value (JERRY_CONTEXT (current_new_target));
in ecma_op_create_arrow_function_object()
823
ecma_arrow_function_t *
arrow_func_p
= (ecma_arrow_function_t *) func_obj_p;
in ecma_op_function_call_simple()
local
825
if (ecma_is_value_undefined (
arrow_func_p
->new_target))
in ecma_op_function_call_simple()
831
JERRY_CONTEXT (current_new_target) = ecma_get_object_from_value (
arrow_func_p
in ecma_op_function_call_simple()
[all...]
/third_party/jerryscript/jerry-core/ecma/base/
H
A
D
ecma-gc.c
718
ecma_arrow_function_t *
arrow_func_p
= (ecma_arrow_function_t *) object_p;
in ecma_gc_mark()
local
720
if (ecma_is_value_object (
arrow_func_p
->this_binding))
in ecma_gc_mark()
722
ecma_gc_set_object_visited (ecma_get_object_from_value (
arrow_func_p
->this_binding));
in ecma_gc_mark()
725
if (ecma_is_value_object (
arrow_func_p
->new_target))
in ecma_gc_mark()
727
ecma_gc_set_object_visited (ecma_get_object_from_value (
arrow_func_p
->new_target));
in ecma_gc_mark()
Completed in 4 milliseconds