Lines Matching defs:JSString
215 typedef struct JSString JSString; typedef
496 struct JSString { struct
497 JSRefCountHeader header; /* must come first, 32-bit */
498 uint32_t len : 31;
499 uint8_t is_wide_char : 1; /* 0 = 8 bits, 1 = 16 bits characters */
503 uint32_t hash : 30;
504 uint8_t atom_type : 2; /* != 0 if atom, JS_ATOM_TYPE_x */
505 uint32_t hash_next; /* atom_index for JS_ATOM_TYPE_SYMBOL */
507 struct list_head link; /* string list */
509 union {
512 } u;