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:LEXER_ASSIGN
(Results
1 - 7
of
7
) sorted by relevance
/third_party/jerryscript/jerry-core/parser/js/
H
A
D
js-lexer.h
74
((token_type) >=
LEXER_ASSIGN
&& (token_type) <= LEXER_EXPONENTIATION)
77
((token_type) >=
LEXER_ASSIGN
&& (token_type) <= LEXER_MODULO)
81
((token_type) >=
LEXER_ASSIGN
&& (token_type) <= LEXER_ASSIGN_BIT_XOR)
83
#define LEXER_FIRST_BINARY_OP
LEXER_ASSIGN
85
LEXER_ASSIGN
, /**< "=" (prec: 3) */
enumerator
H
A
D
js-parser-expr.c
151
&& (context_p->token.type ==
LEXER_ASSIGN
in parser_check_invalid_new_target()
2491
parser_stack_push_uint8 (context_p,
LEXER_ASSIGN
);
in parser_append_binary_single_assignment_token()
2506
if (context_p->token.type ==
LEXER_ASSIGN
)
in parser_append_binary_token()
2588
if (token ==
LEXER_ASSIGN
)
in parser_process_binary_opcodes()
2649
parser_stack_push_uint8 (context_p,
LEXER_ASSIGN
);
in parser_process_binary_opcodes()
2835
if (context_p->token.type ==
LEXER_ASSIGN
)
in parser_pattern_form_assignment()
2965
&& context_p->token.type !=
LEXER_ASSIGN
in parser_pattern_process_assignment()
3095
&& context_p->token.type !=
LEXER_ASSIGN
in parser_parse_object_initializer()
3105
|| context_p->token.type ==
LEXER_ASSIGN
in parser_parse_object_initializer()
3273
if (JERRY_UNLIKELY (context_p->token.type ==
LEXER_ASSIGN
in parser_process_group_expression()
[all...]
H
A
D
js-scanner.c
863
if (context_p->token.type !=
LEXER_ASSIGN
)
in scanner_scan_primary_expression_end()
2626
else if (context_p->token.type ==
LEXER_ASSIGN
)
in scanner_scan_all()
2670
case
LEXER_ASSIGN
:
in scanner_scan_all()
2812
if (context_p->token.type ==
LEXER_ASSIGN
)
in scanner_scan_all()
2970
|| context_p->token.type ==
LEXER_ASSIGN
))
in scanner_scan_all()
2996
if (context_p->token.type ==
LEXER_ASSIGN
)
in scanner_scan_all()
3131
if (context_p->token.type !=
LEXER_ASSIGN
)
in scanner_scan_all()
H
A
D
js-scanner-ops.c
202
if (context_p->token.type ==
LEXER_ASSIGN
)
in scanner_check_arrow_arg()
H
A
D
js-parser-statm.c
544
if (context_p->token.type ==
LEXER_ASSIGN
)
in parser_parse_var_statement()
1352
if (context_p->token.type ==
LEXER_ASSIGN
)
in parser_parse_for_statement_start()
2475
context_p->token.type =
LEXER_ASSIGN
;
in parser_parse_export_statement()
H
A
D
js-lexer.c
1678
context_p->token.type =
LEXER_ASSIGN
;
in lexer_next_token()
3481
JERRY_ASSERT (token !=
LEXER_ASSIGN
);
in lexer_convert_binary_lvalue_token_to_binary()
H
A
D
js-parser.c
1872
if (context_p->token.type ==
LEXER_ASSIGN
)
in parser_parse_function_arguments()
1890
/*
LEXER_ASSIGN
does not overwrite lit_object. */
in parser_parse_function_arguments()
Completed in 16 milliseconds