Lines Matching refs:val
204 void jsonw_bool(json_writer_t *self, bool val)
206 jsonw_printf(self, "%s", val ? "true" : "false");
247 void jsonw_string_field(json_writer_t *self, const char *prop, const char *val)
250 jsonw_string(self, val);
253 void jsonw_bool_field(json_writer_t *self, const char *prop, bool val)
256 jsonw_bool(self, val);
260 void jsonw_float_field(json_writer_t *self, const char *prop, double val)
263 jsonw_float(self, val);
270 double val)
273 jsonw_float_fmt(self, fmt, val);