Lines Matching refs:jx

1434   JsonString jx;  in jsonQuoteFunc()  local
1437 jsonInit(&jx, ctx); in jsonQuoteFunc()
1438 jsonAppendValue(&jx, argv[0]); in jsonQuoteFunc()
1439 jsonResult(&jx); in jsonQuoteFunc()
1454 JsonString jx; in jsonArrayFunc() local
1456 jsonInit(&jx, ctx); in jsonArrayFunc()
1457 jsonAppendChar(&jx, '['); in jsonArrayFunc()
1459 jsonAppendSeparator(&jx); in jsonArrayFunc()
1460 jsonAppendValue(&jx, argv[i]); in jsonArrayFunc()
1462 jsonAppendChar(&jx, ']'); in jsonArrayFunc()
1463 jsonResult(&jx); in jsonArrayFunc()
1544 JsonString jx; in jsonExtractFunc() local
1563 jsonInit(&jx, ctx); in jsonExtractFunc()
1565 jsonAppendRaw(&jx, "$[", 2); in jsonExtractFunc()
1566 jsonAppendRaw(&jx, zPath, (int)strlen(zPath)); in jsonExtractFunc()
1567 jsonAppendRaw(&jx, "]", 2); in jsonExtractFunc()
1569 jsonAppendRaw(&jx, "$.", 1 + (zPath[0]!='[')); in jsonExtractFunc()
1570 jsonAppendRaw(&jx, zPath, (int)strlen(zPath)); in jsonExtractFunc()
1571 jsonAppendChar(&jx, 0); in jsonExtractFunc()
1573 pNode = jx.bErr ? 0 : jsonLookup(p, jx.zBuf, 0, ctx); in jsonExtractFunc()
1574 jsonReset(&jx); in jsonExtractFunc()
1594 jsonInit(&jx, ctx); in jsonExtractFunc()
1595 jsonAppendChar(&jx, '['); in jsonExtractFunc()
1600 jsonAppendSeparator(&jx); in jsonExtractFunc()
1602 jsonRenderNode(pNode, &jx, 0); in jsonExtractFunc()
1604 jsonAppendRaw(&jx, "null", 4); in jsonExtractFunc()
1608 jsonAppendChar(&jx, ']'); in jsonExtractFunc()
1609 jsonResult(&jx); in jsonExtractFunc()
1612 jsonReset(&jx); in jsonExtractFunc()
1738 JsonString jx; in jsonObjectFunc() local
1747 jsonInit(&jx, ctx); in jsonObjectFunc()
1748 jsonAppendChar(&jx, '{'); in jsonObjectFunc()
1752 jsonReset(&jx); in jsonObjectFunc()
1755 jsonAppendSeparator(&jx); in jsonObjectFunc()
1758 jsonAppendString(&jx, z, n); in jsonObjectFunc()
1759 jsonAppendChar(&jx, ':'); in jsonObjectFunc()
1760 jsonAppendValue(&jx, argv[i+1]); in jsonObjectFunc()
1762 jsonAppendChar(&jx, '}'); in jsonObjectFunc()
1763 jsonResult(&jx); in jsonObjectFunc()