Searched refs:jsmntok_t (Results 1 – 6 of 6) sorted by relevance
/external/jsmn/ |
D | jsmn.h | 83 } jsmntok_t; typedef 106 jsmntok_t *tokens, const unsigned int num_tokens); 112 static jsmntok_t *jsmn_alloc_token(jsmn_parser *parser, jsmntok_t *tokens, in jsmn_alloc_token() 114 jsmntok_t *tok; in jsmn_alloc_token() 130 static void jsmn_fill_token(jsmntok_t *token, const jsmntype_t type, in jsmn_fill_token() 142 const size_t len, jsmntok_t *tokens, in jsmn_parse_primitive() 144 jsmntok_t *token; in jsmn_parse_primitive() 197 const size_t len, jsmntok_t *tokens, in jsmn_parse_string() 199 jsmntok_t *token; in jsmn_parse_string() 272 jsmntok_t *tokens, const unsigned int num_tokens) { in jsmn_parse() [all …]
|
D | README.md | 89 jsmntok_t t[128]; /* We expect no more than 128 JSON tokens */ 130 Token is an object of `jsmntok_t` type: 137 } jsmntok_t; 146 jsmntok_t tokens[10];
|
/external/jsmn/test/ |
D | testutil.h | 6 static int vtokeq(const char *s, jsmntok_t *t, unsigned long numtok, in vtokeq() 64 static int tokeq(const char *s, jsmntok_t *tokens, int numtok, ...) { in tokeq() 78 jsmntok_t *t = malloc(numtok * sizeof(jsmntok_t)); in parse()
|
D | tests.c | 103 jsmntok_t tok[5]; in test_partial_string() 126 jsmntok_t tok[10]; in test_partial_array() 149 jsmntok_t toksmall[10], toklarge[10]; in test_array_nomem() 176 jsmntok_t tok[10]; in test_unquoted_keys() 193 jsmntok_t tokens[128]; in test_issue_22() 224 jsmntok_t tokens[10]; in test_input_length()
|
/external/jsmn/example/ |
D | simple.c | 15 static int jsoneq(const char *json, jsmntok_t *tok, const char *s) { in jsoneq() 27 jsmntok_t t[128]; /* We expect no more than 128 tokens */ in main() 67 jsmntok_t *g = &t[i + j + 2]; in main()
|
D | jsondump.c | 28 static int dump(const char *js, jsmntok_t *t, size_t count, int indent) { in dump() 30 jsmntok_t *key; in dump() 80 jsmntok_t *tok; in main()
|