Home
last modified time | relevance | path

Searched refs:string_desc (Results 1 – 7 of 7) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/operations/
Decma-symbol-object.c50 ecma_value_t string_desc; in ecma_op_create_symbol() local
55 string_desc = ecma_make_magic_string_value (LIT_MAGIC_STRING__EMPTY); in ecma_op_create_symbol()
67 string_desc = ecma_make_string_value (str_p); in ecma_op_create_symbol()
71 return ecma_make_symbol_value (ecma_new_symbol_from_descriptor_string (string_desc)); in ecma_op_create_symbol()
/third_party/gettext/gettext-tools/src/
Dwrite-mo.c164 struct string_desc *orig_tab; in write_table()
165 struct string_desc *trans_tab; in write_table()
436 offset += nstrings * sizeof (struct string_desc); in write_table()
437 orig_tab = XNMALLOC (nstrings, struct string_desc); in write_table()
441 offset += nstrings * sizeof (struct string_desc); in write_table()
442 trans_tab = XNMALLOC (nstrings, struct string_desc); in write_table()
524 fwrite (orig_tab, nstrings * sizeof (struct string_desc), 1, output_file); in write_table()
544 fwrite (trans_tab, nstrings * sizeof (struct string_desc), 1, output_file); in write_table()
/third_party/gettext/gettext-runtime/intl/
DgettextP.h174 const struct string_desc *orig_tab;
176 const struct string_desc *trans_tab;
Dgmo.h106 struct string_desc struct
Dloadmsgcat.c875 domain->orig_tab = (const struct string_desc *) in _nl_load_domain()
877 domain->trans_tab = (const struct string_desc *) in _nl_load_domain()
/third_party/jerryscript/jerry-core/ecma/base/
Decma-helpers-string.c214 ecma_new_symbol_from_descriptor_string (ecma_value_t string_desc) /**< ecma-string */ in ecma_new_symbol_from_descriptor_string() argument
216 JERRY_ASSERT (!ecma_is_value_symbol (string_desc)); in ecma_new_symbol_from_descriptor_string()
220 symbol_p->u.symbol_descriptor = string_desc; in ecma_new_symbol_from_descriptor_string()
Decma-helpers.h286 ecma_string_t *ecma_new_symbol_from_descriptor_string (ecma_value_t string_desc);