Lines Matching refs:current
141 json_object_put(tok->stack[depth].current); in json_tokener_reset_level()
142 tok->stack[depth].current = NULL; in json_tokener_reset_level()
189 #define current tok->stack[tok->depth].current macro
284 current = json_object_new_object(); in json_tokener_parse_ex()
289 current = json_object_new_array(); in json_tokener_parse_ex()
349 obj = json_object_get(current); in json_tokener_parse_ex()
374 current = json_object_new_double(is_negative ? -INFINITY : INFINITY); in json_tokener_parse_ex()
398 current = NULL; in json_tokener_parse_ex()
411 current = json_object_new_double(NAN); in json_tokener_parse_ex()
484 current = json_object_new_string_len(tok->pb->buf, tok->pb->bpos); in json_tokener_parse_ex()
644 current = json_object_new_boolean(1); in json_tokener_parse_ex()
653 current = json_object_new_boolean(0); in json_tokener_parse_ex()
700 current = json_object_new_int64(num64); in json_tokener_parse_ex()
704 current = json_object_new_double_s(numd, tok->pb->buf); in json_tokener_parse_ex()
739 json_object_array_add(current, obj); in json_tokener_parse_ex()
824 json_object_object_add(current, obj_field_name, obj); in json_tokener_parse_ex()
870 json_object *ret = json_object_get(current); in json_tokener_parse_ex()