Lines Matching defs:YlongJson
35 pub type YlongJson = c_void; typedef
43 ) -> *mut YlongJson { in ylong_json_parse()
95 pub unsafe extern "C" fn ylong_json_delete(item: *mut YlongJson) { in ylong_json_delete()
107 item: *const YlongJson, in ylong_json_duplicate()
109 ) -> *mut YlongJson { in ylong_json_duplicate()
149 pub unsafe extern "C" fn ylong_json_create_bool(boolean: c_int) -> *mut YlongJson { in ylong_json_create_bool()
170 boolean: *const YlongJson, in ylong_json_get_value_from_bool()
191 boolean: *mut YlongJson, in ylong_json_set_value_to_bool()
211 pub unsafe extern "C" fn ylong_json_create_double_number(number: c_double) -> *mut YlongJson { in ylong_json_create_double_number()
218 pub unsafe extern "C" fn ylong_json_create_int_number(number: c_longlong) -> *mut YlongJson { in ylong_json_create_int_number()
268 number: *const YlongJson, in ylong_json_get_double_value_from_number()
293 number: *const YlongJson, in ylong_json_get_int_value_from_number()
318 number: *mut YlongJson, in ylong_json_set_double_value_to_number()
338 number: *mut YlongJson, in ylong_json_set_int_value_to_number()
357 pub unsafe extern "C" fn ylong_json_create_string(string: *const c_char) -> *mut YlongJson { in ylong_json_create_string()
384 string: *const YlongJson, in ylong_json_get_value_from_string()
406 string: *mut YlongJson, in ylong_json_set_value_to_string()
446 array: *const YlongJson, in ylong_json_get_array_size()
467 array: *const YlongJson, in ylong_json_get_array_item()
469 ) -> *mut YlongJson { in ylong_json_get_array_item()
491 array: *mut YlongJson, in ylong_json_add_item_to_array()
492 item: *mut YlongJson, in ylong_json_add_item_to_array()
514 array: *mut YlongJson, in ylong_json_replace_array_item_by_index()
516 new_item: *mut YlongJson, in ylong_json_replace_array_item_by_index()
542 array: *mut YlongJson, in ylong_json_remove_array_item_by_index()
544 ) -> *mut YlongJson { in ylong_json_remove_array_item_by_index()
565 array: *mut YlongJson, in ylong_json_delete_array_item_by_index()
584 array: *mut YlongJson, in ylong_json_get_array_node()
586 ) -> *mut YlongJson { in ylong_json_get_array_node()
609 array_node: *mut YlongJson, in ylong_json_get_item_from_array_node()
610 ) -> *mut YlongJson { in ylong_json_get_item_from_array_node()
623 array: *mut YlongJson, in ylong_json_add_item_to_array_then_get_node()
624 item: *mut YlongJson, in ylong_json_add_item_to_array_then_get_node()
625 ) -> *mut YlongJson { in ylong_json_add_item_to_array_then_get_node()
647 array_node: *mut YlongJson, in ylong_json_replace_item_of_array_node()
648 new_item: *mut YlongJson, in ylong_json_replace_item_of_array_node()
666 array_node: *mut YlongJson, in ylong_json_remove_array_node()
667 ) -> *mut YlongJson { in ylong_json_remove_array_node()
679 pub unsafe extern "C" fn ylong_json_delete_array_node(array_node: *mut YlongJson) { in ylong_json_delete_array_node()
710 object: *mut YlongJson, in ylong_json_get_object_size()
731 object: *mut YlongJson, in ylong_json_has_object_item()
758 object: *const YlongJson, in ylong_json_get_object_item()
760 ) -> *mut YlongJson { in ylong_json_get_object_item()
792 object: *mut YlongJson, in ylong_json_add_item_to_object()
794 item: *mut YlongJson, in ylong_json_add_item_to_object()
825 object: *mut YlongJson, in ylong_json_replace_object_item_by_index()
827 new_item: *mut YlongJson, in ylong_json_replace_object_item_by_index()
861 object: *mut YlongJson, in ylong_json_remove_object_item_by_index()
863 ) -> *mut YlongJson { in ylong_json_remove_object_item_by_index()
887 object: *mut YlongJson, in ylong_json_delete_object_item_by_index()
910 object: *mut YlongJson, in ylong_json_get_all_object_items()
912 value: *mut *mut YlongJson, in ylong_json_get_all_object_items()
940 object: *mut YlongJson, in ylong_json_for_each_object_item()
941 func: unsafe extern "C" fn(*mut YlongJson), in ylong_json_for_each_object_item()
965 object: *const YlongJson, in ylong_json_get_object_node()
967 ) -> *mut YlongJson { in ylong_json_get_object_node()
1001 object_node: *mut YlongJson, in ylong_json_get_item_from_object_node()
1002 ) -> *mut YlongJson { in ylong_json_get_item_from_object_node()
1016 object: *mut YlongJson, in ylong_json_add_item_to_object_then_get_node()
1018 item: *mut YlongJson, in ylong_json_add_item_to_object_then_get_node()
1019 ) -> *mut YlongJson { in ylong_json_add_item_to_object_then_get_node()
1050 object_node: *mut YlongJson, in ylong_json_replace_item_of_object_node()
1051 new_item: *mut YlongJson, in ylong_json_replace_item_of_object_node()
1070 object_node: *mut YlongJson, in ylong_json_remove_object_node()
1071 ) -> *mut YlongJson { in ylong_json_remove_object_node()
1083 pub unsafe extern "C" fn ylong_json_delete_object_node(object_node: *mut YlongJson) { in ylong_json_delete_object_node()
3124 unsafe extern "C" fn func(target: *mut YlongJson) { in ut_ylong_json_for_each_object_item()