Lines Matching refs:json
37 ($json: expr) => {{
39 let image = ylong_json_get_object_item($json, target);
181 let mut json = Some(ylong_json_parse(
187 let curr = json.take().unwrap();
198 json = Some(new);
202 ylong_json_delete(json.take().unwrap());
227 let json = ylong_json_parse(text, &msg as *const *mut c_char as *mut *mut c_char);
231 let result = ylong_json_print_unformatted(json);
234 let duplicate = ylong_json_duplicate(json, 1);
241 let string = ylong_json_get_object_item(json, index);
248 ylong_json_add_item_to_object(json, index, null);
252 ylong_json_replace_object_item_by_index(json, index, string);
255 let removed = ylong_json_remove_object_item_by_index(json, index);
260 ylong_json_for_each_object_item(json, func);
262 ylong_json_delete(json);