Searched refs:jsonObj (Results 1 – 5 of 5) sorted by relevance
59 const jsonObj = JSON.parse(txtRes); constant63 if (typeof jsonObj.function == 'string') {67 startPosition: jsonObj.sourcePosition,68 endPosition: jsonObj.sourcePosition + jsonObj.source.length,69 sourceText: jsonObj.source,73 fnc = Object.assign(jsonObj.function, { backwardsCompatibility: false });76 sourceResolver.setInlinings(jsonObj.inlinings);77 sourceResolver.setSourceLineToBytecodePosition(jsonObj.sourceLineToBytecodePosition);78 sourceResolver.setSources(jsonObj.sources, fnc);79 sourceResolver.setNodePositionMap(jsonObj.nodePositions);[all …]
59 const jsonObj: Record<string, any> = {}; constant62 jsonObj[p as string] = this[p];71 jsonObj[key] = this[key];74 return jsonObj; property in Evt
104 JSONObject jsonObj = new JSONObject(rulesJSON); in parsePackageNames() local105 JSONArray rules = jsonObj.getJSONArray("Rules"); in parsePackageNames()
650 nlohmann::ordered_json jsonObj; variable653 jsonObj[data.first] = data.second;655 CHECK(jsonObj["aaaa"] == 11);656 CHECK(jsonObj["bbb"] == 222);
359 CefRefPtr<CefValue> jsonObj = CefParseJSON(request, JSON_PARSER_RFC); in handleBoundsQuery() local360 if (jsonObj.get()) { in handleBoundsQuery()361 CefRefPtr<CefDictionaryValue> dict = jsonObj->GetDictionary(); in handleBoundsQuery()