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