Lines Matching refs:options

21 static int json_encode_item(garray_T *gap, typval_T *val, int copyID, int options);
31 json_encode_gap(garray_T *gap, typval_T *val, int options) in json_encode_gap() argument
33 if (json_encode_item(gap, val, get_copyID(), options) == FAIL) in json_encode_gap()
49 json_encode(typval_T *val, int options) in json_encode() argument
55 json_encode_gap(&ga, val, options); in json_encode()
67 json_encode_nr_expr(int nr, typval_T *val, int options) in json_encode_nr_expr() argument
85 if (json_encode_gap(&ga, &listtv, options) == OK && (options & JSON_NL)) in json_encode_nr_expr()
187 json_encode_item(garray_T *gap, typval_T *val, int copyID, int options) in json_encode_item() argument
209 case VVAL_NONE: if ((options & JSON_JS) != 0 in json_encode_item()
210 && (options & JSON_NO_NONE) == 0) in json_encode_item()
274 options & JSON_JS) == FAIL) in json_encode_item()
276 if ((options & JSON_JS) in json_encode_item()
318 if ((options & JSON_JS) in json_encode_item()
325 copyID, options | JSON_NO_NONE) == FAIL) in json_encode_item()
594 json_decode_item(js_read_T *reader, typval_T *res, int options) in json_decode_item() argument
648 && (options & JSON_JS) in json_decode_item()
739 if (options & JSON_JS) in json_decode_item()
749 if ((options & JSON_JS) == 0) in json_decode_item()
1082 json_decode_all(js_read_T *reader, typval_T *res, int options) in json_decode_all() argument
1089 ret = json_decode_item(reader, res, options); in json_decode_all()
1114 json_decode(js_read_T *reader, typval_T *res, int options) in json_decode() argument
1121 ret = json_decode_item(reader, res, options); in json_decode()
1139 json_find_end(js_read_T *reader, int options) in json_find_end() argument
1147 ret = json_decode_item(reader, NULL, options); in json_find_end()