Home
last modified time | relevance | path

Searched refs:right_p (Results 1 – 2 of 2) sorted by relevance

/third_party/jerryscript/jerry-core/parser/js/
Djs-lexer.c3196 const uint8_t *right_p, /**< right identifier string */ in lexer_compare_identifier_to_chars() argument
3203 if (*left_p == *right_p) in lexer_compare_identifier_to_chars()
3206 right_p++; in lexer_compare_identifier_to_chars()
3236 if (*right_p++ != *utf8_p++) in lexer_compare_identifier_to_chars()
3258 const uint8_t *right_p, /**< right identifier string */ in lexer_compare_identifier_to_string() argument
3268 return memcmp (left_p->char_p, right_p, size) == 0; in lexer_compare_identifier_to_string()
3271 return lexer_compare_identifier_to_chars (left_p->char_p, right_p, size); in lexer_compare_identifier_to_string()
3285 const lexer_lit_location_t *right_p) /**< right literal */ in lexer_compare_identifiers() argument
3289 if (length != right_p->length) in lexer_compare_identifiers()
3296 return lexer_compare_identifier_to_chars (right_p->char_p, left_p->char_p, length); in lexer_compare_identifiers()
[all …]
Djs-parser-internal.h713 bool lexer_compare_identifier_to_string (const lexer_lit_location_t *left_p, const uint8_t *right_p
715 const lexer_lit_location_t *right_p);