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:item_p
(Results
1 - 4
of
4
) sorted by relevance
/third_party/jerryscript/jerry-core/jcontext/
H
A
D
jcontext.h
106
#define JERRY_CONTEXT_DATA_HEADER_USER_DATA(
item_p
) \
107
((uint8_t *) (
item_p
+ 1))
/third_party/jerryscript/jerry-core/parser/js/
H
A
D
js-scanner-util.c
1508
scanner_binding_item_t *
item_p
= binding_list_p->items_p;
in scanner_pop_binding_list()
local
1519
while (
item_p
!= NULL)
in scanner_pop_binding_list()
1521
scanner_binding_item_t *next_p =
item_p
->next_p;
in scanner_pop_binding_list()
1523
JERRY_ASSERT (
item_p
->literal_p->type & (SCANNER_LITERAL_IS_LOCAL | SCANNER_LITERAL_IS_ARG));
in scanner_pop_binding_list()
1525
scanner_free (
item_p
, sizeof (scanner_binding_item_t));
in scanner_pop_binding_list()
1526
item_p
= next_p;
in scanner_pop_binding_list()
1533
while (
item_p
!= NULL)
in scanner_pop_binding_list()
1535
scanner_binding_item_t *next_p =
item_p
->next_p;
in scanner_pop_binding_list()
1537
item_p
->next_p = prev_binding_list_p->items_p;
in scanner_pop_binding_list()
1538
prev_binding_list_p->items_p =
item_p
;
in scanner_pop_binding_list()
[all...]
H
A
D
js-scanner.c
565
scanner_binding_item_t *
item_p
= scanner_context_p->active_binding_list_p->items_p;
in scanner_scan_primary_expression_end()
local
567
while (
item_p
!= NULL)
in scanner_scan_primary_expression_end()
569
if (
item_p
->literal_p->type & SCANNER_LITERAL_IS_USED)
in scanner_scan_primary_expression_end()
571
item_p
->literal_p->type |= SCANNER_LITERAL_EARLY_CREATE;
in scanner_scan_primary_expression_end()
573
item_p
=
item_p
->next_p;
in scanner_scan_primary_expression_end()
884
scanner_binding_item_t *
item_p
= scanner_context_p->active_binding_list_p->items_p;
in scanner_scan_primary_expression_end()
local
886
while (
item_p
!= NULL)
in scanner_scan_primary_expression_end()
888
item_p
->literal_p->type &= (uint8_t) ~SCANNER_LITERAL_IS_USED;
in scanner_scan_primary_expression_end()
889
item_p
in scanner_scan_primary_expression_end()
[all...]
/third_party/jerryscript/jerry-core/api/
H
A
D
jerry.c
306
jerry_context_data_header_t *
item_p
;
in jerry_get_context_data()
local
308
for (
item_p
= JERRY_CONTEXT (context_data_p);
item_p
!= NULL;
item_p
=
item_p
->next_p)
in jerry_get_context_data()
310
if (
item_p
->manager_p == manager_p)
in jerry_get_context_data()
312
return (manager_p->bytes_needed > 0) ? JERRY_CONTEXT_DATA_HEADER_USER_DATA (
item_p
) : NULL;
in jerry_get_context_data()
316
item_p
= jmem_heap_alloc_block (sizeof (jerry_context_data_header_t) + manager_p->bytes_needed);
in jerry_get_context_data()
317
item_p
->manager_p = manager_p;
in jerry_get_context_data()
318
item_p
in jerry_get_context_data()
[all...]
Completed in 7 milliseconds