Lines Matching refs:sep

2501     int i, c, sep;  in JS_DumpString()  local
2508 sep = (p->header.ref_count == 1) ? '\"' : '\''; in JS_DumpString()
2509 putchar(sep); in JS_DumpString()
2515 if (c == sep || c == '\\') { in JS_DumpString()
2527 putchar(sep); in JS_DumpString()
10065 int sep, is_neg; in js_atof2() local
10074 sep = (flags & ATOD_ACCEPT_UNDERSCORES) ? '_' : 256; in js_atof2()
10109 sep = 256; in js_atof2()
10152 …while (to_digit((uint8_t)*p) < radix || (*p == sep && (radix != 10 || p != p_start + 1 || p[-1] !=… in js_atof2()
10160 if (*p == sep) in js_atof2()
10163 (*p == sep && to_digit((uint8_t)p[1]) < radix)) in js_atof2()
10178 while (is_digit((uint8_t)*p) || (*p == sep && is_digit((uint8_t)p[1]))) in js_atof2()
19952 int sep; member
20199 s->token.u.str.sep = c; in js_parse_template_part()
20211 static __exception int js_parse_string(JSParseState* s, int sep, in js_parse_string() argument
20232 if (sep == '`') { in js_parse_string()
20243 if (c == sep) in js_parse_string()
20245 if (c == '$' && *p == '{' && sep == '`') { in js_parse_string()
20271 if (sep != '`') in js_parse_string()
20278 if (!(s->cur_func->js_mode & JS_MODE_STRICT) && sep != '`') in js_parse_string()
20326 token->u.str.sep = c; in js_parse_string()
22011 if (s->token.u.str.sep == '`') in js_parse_template()
22021 if (s->token.u.str.sep == '`') in js_parse_template()
22301 if (s->token.u.str.sep != '`') { in js_parse_skip_parens_token()
38142 JSValue obj, sep = JS_UNDEFINED, el; in js_array_join() local
38154 sep = JS_ToString(ctx, argv[0]); in js_array_join()
38155 if (JS_IsException(sep)) in js_array_join()
38157 p = JS_VALUE_GET_STRING(sep); in js_array_join()
38184 JS_FreeValue(ctx, sep); in js_array_join()
38190 JS_FreeValue(ctx, sep); in js_array_join()
43197 JSValue indent1, sep, sep1, tab, v, prop; in js_json_to_str() local
43204 sep = JS_UNDEFINED; in js_json_to_str()
43250 sep = JS_ConcatString3(ctx, "\n", JS_DupValue(ctx, indent1), ""); in js_json_to_str()
43251 if (JS_IsException(sep)) in js_json_to_str()
43257 sep = JS_DupValue(ctx, jsc->empty); in js_json_to_str()
43273 string_buffer_concat_value(jsc->b, sep); in js_json_to_str()
43326 string_buffer_concat_value(jsc->b, sep); in js_json_to_str()
43345 JS_FreeValue(ctx, sep); in js_json_to_str()
43381 JS_FreeValue(ctx, sep); in js_json_to_str()
51603 JSValue sep = JS_UNDEFINED, el; in js_typed_array_join() local
51615 sep = JS_ToString(ctx, argv[0]); in js_typed_array_join()
51616 if (JS_IsException(sep)) in js_typed_array_join()
51618 p = JS_VALUE_GET_STRING(sep); in js_typed_array_join()
51646 JS_FreeValue(ctx, sep); in js_typed_array_join()
51651 JS_FreeValue(ctx, sep); in js_typed_array_join()