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:func_p
(Results
1 - 4
of
4
) sorted by relevance
/third_party/jerryscript/jerry-core/ecma/operations/
H
A
D
ecma-function-object.c
237
ecma_object_t *
func_p
= ecma_create_object (prototype_obj_p,
in ecma_op_create_function_object()
local
255
ecma_extended_object_t *ext_func_p = (ecma_extended_object_t *)
func_p
;
in ecma_op_create_function_object()
266
((ecma_static_function_t *)
func_p
)->bytecode_p = bytecode_data_p;
in ecma_op_create_function_object()
282
return
func_p
;
in ecma_op_create_function_object()
456
ecma_object_t *
func_p
= ecma_create_object (prototype_obj_p,
in ecma_op_create_arrow_function_object()
local
460
ecma_arrow_function_t *arrow_func_p = (ecma_arrow_function_t *)
func_p
;
in ecma_op_create_arrow_function_object()
468
((ecma_static_arrow_function_t *)
func_p
)->bytecode_p = bytecode_data_p;
in ecma_op_create_arrow_function_object()
486
return
func_p
;
in ecma_op_create_arrow_function_object()
/third_party/jerryscript/jerry-ext/arg/
H
A
D
arg-transform-functions.c
432
jerry_value_t *
func_p
= c_arg_p->dest;
in jerryx_arg_transform_function()
local
433
*
func_p
= jerry_acquire_value (js_arg);
in jerryx_arg_transform_function()
/third_party/jerryscript/jerry-core/vm/
H
A
D
opcodes.c
885
opfunc_set_home_object (ecma_object_t *
func_p
, /**< function object */
in opfunc_set_home_object()
argument
888
if (ecma_get_object_type (
func_p
) == ECMA_OBJECT_TYPE_FUNCTION)
in opfunc_set_home_object()
890
JERRY_ASSERT (!ecma_get_object_is_builtin (
func_p
));
in opfunc_set_home_object()
892
ECMA_SET_NON_NULL_POINTER_TAG (((ecma_extended_object_t *)
func_p
)->u.function.scope_cp, parent_env_p, 0);
in opfunc_set_home_object()
H
A
D
vm.c
1267
ecma_object_t *
func_p
= ecma_get_object_from_value (left_value);
in vm_loop()
local
1269
JERRY_ASSERT (ecma_get_object_type (
func_p
) == ECMA_OBJECT_TYPE_FUNCTION);
in vm_loop()
1271
ecma_extended_object_t *ext_func_p = (ecma_extended_object_t *)
func_p
;
in vm_loop()
Completed in 10 milliseconds