Lines Matching refs:iKey
119 u32 iKey; /* 3: Key for ARRAY objects in json_tree() */ member
1021 int iKey; in jsonParseCached() local
1026 for(iKey=0; iKey<JSON_CACHE_SZ; iKey++){ in jsonParseCached()
1027 p = (JsonParse*)sqlite3_get_auxdata(pCtx, JSON_CACHE_ID+iKey); in jsonParseCached()
1029 iMinKey = iKey; in jsonParseCached()
1040 iMinKey = iKey; in jsonParseCached()
2251 pUp->u.iKey = 0; in jsonEachNext()
2253 pUp->u.iKey++; in jsonEachNext()
2323 assert( pUp->eU==3 || (pUp->eU==0 && pUp->u.iKey==0) ); in jsonEachComputePath()
2325 jsonPrintf(30, pStr, "[%d]", pUp->u.iKey); in jsonEachComputePath()
2347 u32 iKey; in jsonEachColumn() local
2351 iKey = p->sParse.aNode[p->sParse.aUp[p->i]].u.iKey; in jsonEachColumn()
2353 iKey = p->iRowid; in jsonEachColumn()
2355 sqlite3_result_int64(ctx, (sqlite3_int64)iKey); in jsonEachColumn()
2567 pNode->u.iKey = 0; in jsonEachFilter()