Lines Matching defs:array
593 /* Build an array from input text. */
599 } /* not an array! */
603 if (*value == ']') return value + 1; /* empty array. */
627 if (*value == ']') return value + 1; /* end of array */
632 /* Render an array to text */
641 /* How many entries in the array? */
654 /* Compose the output array. */
681 /* Allocate an array to hold the values for each */
710 /* Compose the output array. */
742 if (*value == '}') return value + 1; /* empty array. */
782 if (*value == '}') return value + 1; /* end of array */
937 int loader_cJSON_GetArraySize(cJSON *array) {
938 cJSON *c = array->child;
943 cJSON *loader_cJSON_GetArrayItem(cJSON *array, int item) {
944 cJSON *c = array->child;