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:module_node_p
(Results
1 - 3
of
3
) sorted by relevance
/third_party/jerryscript/jerry-core/parser/js/
H
A
D
js-parser-module.c
58
ecma_module_node_t *
module_node_p
= JERRY_CONTEXT (module_top_context_p)->imports_p;
in parser_module_check_duplicate_import()
local
59
while (
module_node_p
!= NULL)
in parser_module_check_duplicate_import()
61
module_names_p =
module_node_p
->module_names_p;
in parser_module_check_duplicate_import()
73
module_node_p
=
module_node_p
->next_p;
in parser_module_check_duplicate_import()
172
ecma_module_node_t *
module_node_p
= context_p->module_current_node_p;
in parser_module_add_export_node_to_context()
local
177
if (
module_node_p
->module_request_p)
in parser_module_add_export_node_to_context()
180
if (!
module_node_p
->module_names_p)
in parser_module_add_export_node_to_context()
200
if (stored_exports_p->module_request_p ==
module_node_p
->module_request_p)
in parser_module_add_export_node_to_context()
202
ecma_module_names_t *module_names_p =
module_node_p
in parser_module_add_export_node_to_context()
233
ecma_module_node_t *
module_node_p
= context_p->module_current_node_p;
parser_module_add_import_node_to_context()
local
279
ecma_module_node_t *
module_node_p
= context_p->module_current_node_p;
parser_module_add_names_to_node()
local
571
ecma_module_node_t *
module_node_p
= context_p->module_current_node_p;
parser_module_handle_module_specifier()
local
[all...]
/third_party/jerryscript/jerry-core/ecma/base/
H
A
D
ecma-module.c
1004
ecma_module_release_module_nodes (ecma_module_node_t *
module_node_p
) /**< first module node */
in ecma_module_release_module_nodes()
argument
1006
while (
module_node_p
!= NULL)
in ecma_module_release_module_nodes()
1008
ecma_module_node_t *next_p =
module_node_p
->next_p;
in ecma_module_release_module_nodes()
1010
ecma_module_release_module_names (
module_node_p
->module_names_p);
in ecma_module_release_module_nodes()
1011
jmem_heap_free_block (
module_node_p
, sizeof (ecma_module_node_t));
in ecma_module_release_module_nodes()
1013
module_node_p
= next_p;
in ecma_module_release_module_nodes()
H
A
D
ecma-module.h
140
void ecma_module_release_module_nodes (ecma_module_node_t *
module_node_p
);
Completed in 3 milliseconds