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:literal_type
(Results
1 - 7
of
7
) sorted by relevance
/third_party/jerryscript/jerry-core/parser/js/
H
A
D
common.h
65
#define LEXER_IS_IDENT_OR_STRING(
literal_type
) ((
literal_type
) <= LEXER_STRING_LITERAL)
H
A
D
js-lexer.c
2341
uint8_t
literal_type
) /**< final literal type */
in lexer_construct_literal_object()
2354
bool search_scope_stack = (
literal_type
== LEXER_IDENT_LITERAL);
in lexer_construct_literal_object()
2356
if (JERRY_UNLIKELY (
literal_type
== LEXER_NEW_IDENT_LITERAL))
in lexer_construct_literal_object()
2358
literal_type
= LEXER_IDENT_LITERAL;
in lexer_construct_literal_object()
2361
JERRY_ASSERT (
literal_type
== LEXER_IDENT_LITERAL
in lexer_construct_literal_object()
2362
||
literal_type
== LEXER_STRING_LITERAL);
in lexer_construct_literal_object()
2364
JERRY_ASSERT (
literal_type
!= LEXER_IDENT_LITERAL || length <= PARSER_MAXIMUM_IDENT_LENGTH);
in lexer_construct_literal_object()
2365
JERRY_ASSERT (
literal_type
!= LEXER_STRING_LITERAL || length <= PARSER_MAXIMUM_STRING_LENGTH);
in lexer_construct_literal_object()
2371
if (literal_p->type ==
literal_type
in lexer_construct_literal_object()
2415
literal_p->type =
literal_type
;
in lexer_construct_literal_object()
2339
lexer_construct_literal_object(parser_context_t *context_p, const lexer_lit_location_t *lit_location_p, uint8_t
literal_type
)
lexer_construct_literal_object()
argument
2892
lexer_expect_identifier(parser_context_t *context_p, uint8_t
literal_type
)
lexer_expect_identifier()
argument
[all...]
H
A
D
js-parser-expr.c
120
JERRY_ASSERT (context_p->last_cbc.
literal_type
== LEXER_IDENT_LITERAL);
in parser_check_invalid_assign()
203
&& context_p->last_cbc.
literal_type
== LEXER_IDENT_LITERAL)
in parser_emit_unary_lvalue_opcode()
1300
context_p->last_cbc.
literal_type
= LEXER_FUNCTION_LITERAL;
in parser_parse_function_expression()
1363
context_p->last_cbc.
literal_type
= context_p->token.lit_location.type;
in parser_parse_template_literal()
1707
context_p->last_cbc.
literal_type
= context_p->token.lit_location.type;
in parser_parse_unary_expression()
1716
context_p->last_cbc.
literal_type
= context_p->token.lit_location.type;
in parser_parse_unary_expression()
1798
context_p->last_cbc.
literal_type
= LEXER_REGEXP_LITERAL;
in parser_parse_unary_expression()
2029
&& context_p->last_cbc.
literal_type
== LEXER_IDENT_LITERAL)
in parser_process_unary_expression()
2057
&& context_p->last_cbc.
literal_type
== LEXER_IDENT_LITERAL)
in parser_process_unary_expression()
2317
&& context_p->last_cbc.
literal_type
in parser_process_unary_expression()
[all...]
H
A
D
js-parser-internal.h
239
uint8_t
literal_type
; /**< last literal type */
member
699
void lexer_expect_identifier (parser_context_t *context_p, uint8_t
literal_type
);
708
uint8_t
literal_type
);
H
A
D
js-parser-util.c
321
context_p->last_cbc.
literal_type
= LEXER_UNUSED_LITERAL;
in parser_emit_cbc_literal()
343
context_p->last_cbc.
literal_type
= LEXER_UNUSED_LITERAL;
in parser_emit_cbc_literal_value()
364
context_p->last_cbc.
literal_type
= context_p->token.lit_location.type;
in parser_emit_cbc_literal_from_token()
H
A
D
js-scanner-util.c
1257
uint8_t
literal_type
= SCANNER_LITERAL_IS_ARG;
in scanner_append_argument()
local
1266
literal_type
= SCANNER_LITERAL_IS_ARG | SCANNER_LITERAL_EARLY_CREATE;
in scanner_append_argument()
1274
literal_p->type =
literal_type
;
in scanner_append_argument()
H
A
D
js-parser-statm.c
1138
&& context_p->last_cbc.
literal_type
== LEXER_IDENT_LITERAL)
in parser_check_left_hand_side_expression()
Completed in 16 milliseconds