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:u8_arg
(Results
1 - 6
of
6
) sorted by relevance
/third_party/jerryscript/jerry-core/parser/js/
H
A
D
js-scanner.h
74
uint8_t
u8_arg
; /**< custom 8-bit value */
member
215
* Constants for
u8_arg
flags in scanner_function_info_t.
H
A
D
js-scanner-util.c
708
uint8_t
u8_arg
= 0;
in scanner_pop_literal_pool()
local
712
u8_arg
|= SCANNER_FUNCTION_ARGUMENTS_NEEDED;
in scanner_pop_literal_pool()
731
u8_arg
|= SCANNER_FUNCTION_MAPPED_ARGUMENTS;
in scanner_pop_literal_pool()
738
u8_arg
|= SCANNER_FUNCTION_ASYNC;
in scanner_pop_literal_pool()
742
u8_arg
|= SCANNER_FUNCTION_STATEMENT;
in scanner_pop_literal_pool()
748
u8_arg
|= SCANNER_FUNCTION_LEXICAL_ENV_NEEDED;
in scanner_pop_literal_pool()
752
info_p->
u8_arg
=
u8_arg
;
in scanner_pop_literal_pool()
1986
uint8_t info_u8_arg = info_p->
u8_arg
;
in scanner_create_variables()
H
A
D
js-parser-statm.c
726
if (context_p->next_scanner_info_p->
u8_arg
& SCANNER_FUNCTION_ASYNC)
in parser_parse_function_statement()
3094
is_statement = (context_p->next_scanner_info_p->
u8_arg
& SCANNER_FUNCTION_STATEMENT) != 0;
in parser_parse_statements()
3096
JERRY_ASSERT (!is_statement || (context_p->next_scanner_info_p->
u8_arg
& SCANNER_FUNCTION_ASYNC));
in parser_parse_statements()
H
A
D
js-parser.c
1751
bool has_mapped_arguments = (context_p->next_scanner_info_p->
u8_arg
& SCANNER_FUNCTION_MAPPED_ARGUMENTS) != 0;
in parser_parse_function_arguments()
1965
if ((context_p->next_scanner_info_p->
u8_arg
& SCANNER_FUNCTION_LEXICAL_ENV_NEEDED)
in parser_parse_function_arguments()
H
A
D
js-parser-expr.c
1621
if (context_p->next_scanner_info_p->
u8_arg
& SCANNER_FUNCTION_ASYNC)
in parser_parse_unary_expression()
1624
JERRY_ASSERT (!(context_p->next_scanner_info_p->
u8_arg
& SCANNER_FUNCTION_STATEMENT));
in parser_parse_unary_expression()
H
A
D
js-scanner.c
3262
(int) info_p->
u8_arg
,
in scanner_scan_all()
Completed in 16 milliseconds