/AliOS-Things-master/components/cjson/ |
A D | README.md | 6 cJSON是符合ANSI C标准的极轻量级JSON解析器。 31 ## 将字符串解析为JSON结构体 39 ## 删除JSON结构体 47 ## 获取JSON数组包含成员个数 55 ## 获取JSON数组成员 64 ## 获取JSON对象成员 78 ## 判断JSON结构体是否为布尔类型 86 ## 判断JSON结构体是否为数值类型 94 ## 判断JSON结构体是否为字符串类型 102 ## 判断JSON结构体是否为数组类型 [all …]
|
/AliOS-Things-master/solutions/javascript_demo/agriculture_demo/ |
A D | app.js | 78 console.log("geo data " + JSON.stringify(geoLocation_data, null, 4)) 105 device.postProps(JSON.stringify({ 123 device.postProps(JSON.stringify({ 126 device.postProps(JSON.stringify({ 141 device.postProps(JSON.stringify({ 166 device.postProps(JSON.stringify({ 177 var payload = JSON.parse(res.params); 182 device.postProps(JSON.stringify({ 190 device.postProps(JSON.stringify({ 198 device.postProps(JSON.stringify({
|
/AliOS-Things-master/solutions/miniapp_agent_demo/miniapp/utils/ |
A D | ble_util.js | 30 reject({ content: JSON.stringify(error) }); 44 reject({ content: JSON.stringify(error) }); 58 reject({ content: JSON.stringify(error) }); 72 reject({ content: JSON.stringify(error) }); 100 resolve({ devices: null, content: '获取设备失败' + JSON.stringify(error) }); 106 resolve({ devices: null, content: '启动扫描失败' + JSON.stringify(error) });
|
/AliOS-Things-master/components/jsoncpp/doc/ |
A D | jsoncpp.dox | 5 <a HREF="http://www.json.org/">JSON (JavaScript Object Notation)</a> 8 Here is an example of JSON data: 41 - read and write JSON document 43 - rewrite JSON document preserving original comments 45 Notes: Comments used to be supported in JSON but were removed for 113 you can configure your JSON parser using JSON. 141 - <a HREF="http://www.json.org/">JSON</a> Specification and alternate language implementations.
|
A D | web_doxyfile.in | 47 PROJECT_BRIEF = "JSON data format manipulation library" 234 … "json_ref=<a HREF='http://www.json.org/'>JSON (JavaScript Object Notation)</a>"
|
/AliOS-Things-master/components/amp/example-js/ |
A D | iot.js | 47 var propertyPayload = JSON.stringify({ 55 var eventPayload = JSON.stringify({
|
A D | gateway.js | 27 var payload = JSON.stringify({ 44 var payload = JSON.stringify({
|
/AliOS-Things-master/components/amp/test/ |
A D | test_iot.js | 88 console.log('iot: [success] iot.on(\'props\'), payload: ' + JSON.stringify(payload)); 93 …console.log('iot: [success] iot.on(\'service\'), id: ' + id + ', payload: ' + JSON.stringify(paylo…
|
/AliOS-Things-master/components/jsoncpp/ |
A D | CONTRIBUTING.md | 79 * a `TESTNAME.json` file, that contains the input document in JSON format. 85 * Each line represents a JSON element of the element tree represented by the 99 * `test_complex_01.json`: input JSON document. 100 * `test_complex_01.expected`: flattened JSON element tree used to check if 102 * `test_complex_01.actual`: flattened JSON element tree produced by `jsontest` 104 * `test_complex_01.rewrite`: JSON document written by `jsontest` using the 107 * `test_complex_01.actual-rewrite`: flattened JSON element tree produced by
|
A D | README.md | 7 JSON是一种轻量级的数据交换格式。它可以表示数字,字符串,值的有序序列以及名称/值对的集合。 9 JsonCpp是一个C ++库,它允许处理JSON值,包括在字符串之间进行序列化和反序列化。它还可以在反序列化/序列化步骤中保留现有注释,从而使其成为存储用户输入文件的便捷格式。
|
A D | meson.build | 63 description : 'A C++ library for interacting with JSON')
|
/AliOS-Things-master/components/jsoncpp/test/data/ |
A D | fail_invalid_quote.json | 1 {'//this is bad JSON.'}
|
/AliOS-Things-master/components/jsoncpp/pkg-config/ |
A D | jsoncpp.pc.in | 7 Description: A C++ library for interacting with JSON
|
/AliOS-Things-master/components/jsoncpp/src/test_lib_json/ |
A D | fuzz.dict | 2 # AFL dictionary for JSON
|
/AliOS-Things-master/components/oss/src/model/ |
A D | ObjectCallbackBuilder.cc | 54 if (callbackBodyType_ == Type::JSON) in build()
|
/AliOS-Things-master/solutions/miniapp_agent_demo/miniapp/pages/linkLP/ |
A D | linkLP.js | 51 let Triad = JSON.parse(res.code) 129 console.log({ content: '监听失败' + JSON.stringify(error) });
|
/AliOS-Things-master/components/oss/include/alibabacloud/oss/model/ |
A D | ObjectCallbackBuilder.h | 32 JSON enumerator
|
/AliOS-Things-master/components/ucloud_ai/src/model/aliyun-openapi/test/httpserver/ |
A D | http_test_server.js | 21 res.send(JSON.stringify(req.query));
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/tests/ |
A D | test_language.js | 335 assert(JSON.stringify(a), '{"get":2,"set":3,"async":4}'); 338 assert(JSON.stringify(a), '{"x":0,"get":1,"set":2,"async":3}');
|
A D | test_builtin.js | 431 a = JSON.parse(s); 435 assert(JSON.stringify(a), s); 438 assert(JSON.stringify([[{x:1,y:{},z:[]},2,3]],undefined,1),
|
A D | test_std.js | 139 assert(JSON.stringify(obj), expected);
|
A D | microbench.js | 937 res = JSON.parse(str); 948 f.puts(JSON.stringify(obj, null, 2));
|
/AliOS-Things-master/solutions/miniapp_agent_demo/miniapp/pages/netCfg/ |
A D | netCfg.js | 118 console.log({ content: '监听失败' + JSON.stringify(error) }); 192 console.log({ content: '监听失败' + JSON.stringify(error) });
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/ |
A D | quickjs-atom.h | 195 DEF(JSON, "JSON")
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/doc/ |
A D | quickjs.texi | 475 Parse @code{str} using a superset of @code{JSON.parse}. The 964 @subsection Binary JSON 968 modules) can be used as binary JSON. The example @file{test_bjson.js} 971 Warning: the binary JSON format may change without notice, so it
|