Home
last modified time | relevance | path

Searched refs:JSMN_OBJECT (Results 1 – 4 of 4) sorted by relevance

/external/jsmn/
Djsmn_test.c54 check(t[0].type == JSMN_OBJECT); in test_empty()
68 check(t[0].type == JSMN_OBJECT && t[0].start == 0 && t[0].end == 8); in test_empty()
77 check(t[1].type == JSMN_OBJECT && t[1].start == 1 && t[1].end == 3); in test_empty()
78 check(t[2].type == JSMN_OBJECT && t[2].start == 4 && t[2].end == 6); in test_empty()
93 check(TOKEN_EQ(tokens[0], 0, 8, JSMN_OBJECT)); in test_simple()
376 } else if (tokens[i].type == JSMN_OBJECT) { in test_issue_22()
572 #define JSMN_OBJECT JSMN_OBJECT_NONSTRICT macro
Djsmn.h17 JSMN_OBJECT = 1, enumerator
Djsmn.c180 token->type = (c == '{' ? JSMN_OBJECT : JSMN_ARRAY); in jsmn_parse()
187 type = (c == '}' ? JSMN_OBJECT : JSMN_ARRAY); in jsmn_parse()
DREADME.md45 JSMN_OBJECT = 1,