Home
last modified time | relevance | path

Searched refs:jsonObj (Results 1 – 5 of 5) sorted by relevance

/third_party/node/deps/v8/tools/turbolizer/src/
Dturbo-visualizer.ts59 const jsonObj = JSON.parse(txtRes); constant
63 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 …]
/third_party/jsframework/runtime/main/model/
Devents.ts59 const jsonObj: Record<string, any> = {}; constant
62 jsonObj[p as string] = this[p];
71 jsonObj[key] = this[key];
74 return jsonObj; property in Evt
/third_party/skia/third_party/externals/angle2/src/android_system_settings/src/com/android/angle/common/
DReceiver.java104 JSONObject jsonObj = new JSONObject(rulesJSON); in parsePackageNames() local
105 JSONArray rules = jsonObj.getJSONArray("Rules"); in parsePackageNames()
/third_party/json/tests/src/
Dunit-regression2.cpp650 nlohmann::ordered_json jsonObj; variable
653 jsonObj[data.first] = data.second;
655 CHECK(jsonObj["aaaa"] == 11);
656 CHECK(jsonObj["bbb"] == 222);
/third_party/cef/tests/ceftests/
Dos_rendering_unittest.cc359 CefRefPtr<CefValue> jsonObj = CefParseJSON(request, JSON_PARSER_RFC); in handleBoundsQuery() local
360 if (jsonObj.get()) { in handleBoundsQuery()
361 CefRefPtr<CefDictionaryValue> dict = jsonObj->GetDictionary(); in handleBoundsQuery()