Lines Matching refs:pThis
2340 JsonNode *pThis = &p->sParse.aNode[p->i]; in jsonEachColumn() local
2345 jsonReturn(pThis, ctx, 0); in jsonEachColumn()
2360 if( pThis->jnFlags & JNODE_LABEL ) pThis++; in jsonEachColumn()
2361 jsonReturn(pThis, ctx, 0); in jsonEachColumn()
2365 if( pThis->jnFlags & JNODE_LABEL ) pThis++; in jsonEachColumn()
2366 sqlite3_result_text(ctx, jsonType[pThis->eType], -1, SQLITE_STATIC); in jsonEachColumn()
2370 if( pThis->jnFlags & JNODE_LABEL ) pThis++; in jsonEachColumn()
2371 if( pThis->eType>=JSON_ARRAY ) break; in jsonEachColumn()
2372 jsonReturn(pThis, ctx, 0); in jsonEachColumn()
2377 (sqlite3_int64)p->i + ((pThis->jnFlags & JNODE_LABEL)!=0)); in jsonEachColumn()
2400 jsonAppendObjectPathElement(&x, pThis); in jsonEachColumn()