Searched refs:mp_obj_new_str_copy (Results 1 – 3 of 3) sorted by relevance
/AliOS-Things-master/components/py_engine/engine/py/ |
A D | objstr.h | 68 mp_obj_t mp_obj_new_str_copy(const mp_obj_type_t *type, const byte *data, size_t len);
|
A D | objstr.c | 176 mp_obj_str_t *o = MP_OBJ_TO_PTR(mp_obj_new_str_copy(type, NULL, str_len)); in mp_obj_str_make_new() 221 mp_obj_str_t *o = MP_OBJ_TO_PTR(mp_obj_new_str_copy(&mp_type_bytes, NULL, str_len)); in bytes_make_new() 2028 mp_obj_t mp_obj_new_str_copy(const mp_obj_type_t *type, const byte *data, size_t len) { in mp_obj_new_str_copy() function 2095 return mp_obj_new_str_copy(&mp_type_str, (const byte *)data, len); in mp_obj_new_str() 2111 return mp_obj_new_str_copy(&mp_type_bytes, data, len); in mp_obj_new_bytes()
|
A D | parse.c | 526 mp_obj_t o = mp_obj_new_str_copy( in push_result_token()
|
Completed in 10 milliseconds