Home
last modified time | relevance | path

Searched full:json (Results 1 - 25 of 21383) sorted by relevance

12345678910>>...856

/third_party/json/tests/src/
H A Dunit-constructor1.cpp2 // __| | __| | | | JSON for Modern C++ (supporting code)
4 // |_____|_____|_____|_|___| https://github.com/nlohmann/json
12 #include <nlohmann/json.hpp>
13 using nlohmann::json;
30 auto t = json::value_t::null;
31 json j(t);
37 auto t = json::value_t::discarded;
38 json j(t);
44 auto t = json::value_t::object;
45 json
[all...]
H A Dunit-testsuites.cpp2 // __| | __| | | | JSON for Modern C++ (supporting code)
4 // |_____|_____|_____|_|___| https://github.com/nlohmann/json
11 #include <nlohmann/json.hpp>
12 using nlohmann::json;
17 TEST_CASE("compliance tests from json.org")
19 // test cases are from https://json.org/JSON_checker/
25 //TEST_DATA_DIRECTORY "/json_tests/fail1.json",
26 TEST_DATA_DIRECTORY "/json_tests/fail2.json",
27 TEST_DATA_DIRECTORY "/json_tests/fail3.json",
28 TEST_DATA_DIRECTORY "/json_tests/fail4.json",
[all...]
H A Dunit-element_access1.cpp2 // __| | __| | | | JSON for Modern C++ (supporting code)
4 // |_____|_____|_____|_|___| https://github.com/nlohmann/json
12 #include <nlohmann/json.hpp>
13 using nlohmann::json;
19 json j = {1, 1u, true, nullptr, "string", 42.23, json::object(), {1, 2, 3}};
20 const json j_const = j;
26 CHECK(j.at(0) == json(1));
27 CHECK(j.at(1) == json(1u));
28 CHECK(j.at(2) == json(tru
[all...]
H A Dunit-conversions.cpp2 // __| | __| | | | JSON for Modern C++ (supporting code)
4 // |_____|_____|_____|_|___| https://github.com/nlohmann/json
20 #include <nlohmann/json.hpp>
21 using nlohmann::json;
39 json::object_t o_reference = {{"object", json::object()},
46 json j(o_reference);
48 SECTION("json::object_t")
50 json::object_t o = j.get<json
1559 CHECK(json(TS_INVALID) == json()); global() variable
[all...]
H A Dunit-iterators2.cpp2 // __| | __| | | | JSON for Modern C++ (supporting code)
4 // |_____|_____|_____|_|___| https://github.com/nlohmann/json
18 #include <nlohmann/json.hpp>
19 using nlohmann::json;
30 json j_values = {nullptr, true, 42, 42u, 23.23, {{"one", 1}, {"two", 2}}, {1, 2, 3, 4, 5}, "Hello, world"};
32 for (json& j : j_values)
74 if (j.type() == json::value_t::object)
77 CHECK_THROWS_WITH_AS(it1 < it1, "[json.exception.invalid_iterator.213] (/5) cannot compare order of object iterators", json::invalid_iterator&);
78 CHECK_THROWS_WITH_AS(it1 < it2, "[json
[all...]
H A Dunit-modifiers.cpp2 // __| | __| | | | JSON for Modern C++ (supporting code)
4 // |_____|_____|_____|_|___| https://github.com/nlohmann/json
12 #include <nlohmann/json.hpp>
13 using nlohmann::json;
21 json j = true;
22 json k = j;
25 CHECK(j == json(json::value_t::boolean));
26 CHECK(j == json(k.type()));
31 json
[all...]
H A Dunit-msgpack.cpp2 // __| | __| | | | JSON for Modern C++ (supporting code)
4 // |_____|_____|_____|_|___| https://github.com/nlohmann/json
11 #include <nlohmann/json.hpp>
12 using nlohmann::json;
42 bool number_integer(json::number_integer_t /*unused*/) in number_integer()
47 bool number_unsigned(json::number_unsigned_t /*unused*/) in number_unsigned()
52 bool number_float(json::number_float_t /*unused*/, const std::string& /*unused*/) in number_float()
92 bool parse_error(std::size_t /*unused*/, const std::string& /*unused*/, const json::exception& /*unused*/) // NOLINT(readability-convert-member-functions-to-static) in parse_error()
109 json j = json
[all...]
H A Dunit-cbor.cpp2 // __| | __| | | | JSON for Modern C++ (supporting code)
4 // |_____|_____|_____|_|___| https://github.com/nlohmann/json
11 #include <nlohmann/json.hpp>
12 using nlohmann::json;
40 bool number_integer(json::number_integer_t /*unused*/) in number_integer()
45 bool number_unsigned(json::number_unsigned_t /*unused*/) in number_unsigned()
50 bool number_float(json::number_float_t /*unused*/, const std::string& /*unused*/) in number_float()
90 bool parse_error(std::size_t /*unused*/, const std::string& /*unused*/, const json::exception& /*unused*/) // NOLINT(readability-convert-member-functions-to-static) in parse_error()
107 json j = json
[all...]
H A Dunit-diagnostics.cpp2 // __| | __| | | | JSON for Modern C++ (supporting code)
4 // |_____|_____|_____|_|___| https://github.com/nlohmann/json
18 #include <nlohmann/json.hpp>
19 using nlohmann::json;
23 SECTION("empty JSON Pointer")
25 json j = 1;
27 CHECK_THROWS_WITH_AS(s = j.get<std::string>(), "[json.exception.type_error.302] type must be string, but is number", json::type_error);
32 json j;
35 CHECK_THROWS_WITH_AS(s = j["a"]["b"]["c"].get<std::string>(), "[json
[all...]
H A Dunit-json_patch.cpp2 // __| | __| | | | JSON for Modern C++ (supporting code)
4 // |_____|_____|_____|_|___| https://github.com/nlohmann/json
11 #include <nlohmann/json.hpp>
12 using nlohmann::json;
20 TEST_CASE("JSON patch")
26 // the ordering of members in JSON objects is not significant:
27 json op1 = R"({ "op": "add", "path": "/a/b/c", "value": "foo" })"_json;
28 json op2 = R"({ "path": "/a/b/c", "op": "add", "value": "foo" })"_json;
29 json op3 = R"({ "value": "foo", "path": "/a/b/c", "op": "add" })"_json;
38 json patch
[all...]
H A Dunit-ubjson.cpp2 // __| | __| | | | JSON for Modern C++ (supporting code)
4 // |_____|_____|_____|_|___| https://github.com/nlohmann/json
11 #include <nlohmann/json.hpp>
12 using nlohmann::json;
38 bool number_integer(json::number_integer_t /*unused*/) in number_integer()
43 bool number_unsigned(json::number_unsigned_t /*unused*/) in number_unsigned()
48 bool number_float(json::number_float_t /*unused*/, const std::string& /*unused*/) in number_float()
88 bool parse_error(std::size_t /*unused*/, const std::string& /*unused*/, const json::exception& /*unused*/) // NOLINT(readability-convert-member-functions-to-static) in parse_error()
105 json j = json
[all...]
H A Dunit-element_access2.cpp2 // __| | __| | | | JSON for Modern C++ (supporting code)
4 // |_____|_____|_____|_|___| https://github.com/nlohmann/json
12 #include <nlohmann/json.hpp>
20 TEST_CASE_TEMPLATE("element access 2", Json, nlohmann::json, nlohmann::ordered_json)
24 Json j = {{"integer", 1}, {"unsigned", 1u}, {"floating", 42.23}, {"null", nullptr}, {"string", "hello world"}, {"boolean", true}, {"object", Json::object()}, {"array", {1, 2, 3}}};
25 const Json j_const = j;
31 CHECK(j.at("integer") == Json(1));
32 CHECK(j.at("unsigned") == Json(
[all...]
H A Dunit-reference_access.cpp2 // __| | __| | | | JSON for Modern C++ (supporting code)
4 // |_____|_____|_____|_|___| https://github.com/nlohmann/json
11 #include <nlohmann/json.hpp>
12 using nlohmann::json;
16 // create a JSON value with different types
17 json json_types =
33 using test_type = json::object_t;
34 json value = {{"one", 1}, {"two", 2}};
46 CHECK_NOTHROW(value.get_ref<json::object_t&>());
47 CHECK_THROWS_WITH_AS(value.get_ref<json
[all...]
H A Dunit-bjdata.cpp2 // __| | __| | | | JSON for Modern C++ (supporting code)
4 // |_____|_____|_____|_|___| https://github.com/nlohmann/json
12 #include <nlohmann/json.hpp>
13 using nlohmann::json;
42 bool number_integer(json::number_integer_t /*unused*/) in number_integer()
47 bool number_unsigned(json::number_unsigned_t /*unused*/) in number_unsigned()
52 bool number_float(json::number_float_t /*unused*/, const std::string& /*unused*/) in number_float()
92 bool parse_error(std::size_t /*unused*/, const std::string& /*unused*/, const json::exception& /*unused*/) // NOLINT(readability-convert-member-functions-to-static) in parse_error()
215 nlohmann::detail::binary_reader<json, decltype(ia)> br{std::move(ia), json
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/
H A Dframe_capture_utils.cpp111 GroupScope(JsonSerializer *json, const std::string &name) : mJson(json) in GroupScope() argument
116 GroupScope(JsonSerializer *json, const std::string &name, int index) : mJson(json) in GroupScope() argument
124 GroupScope(JsonSerializer *json, int index) : GroupScope(json, "", index) {} in GroupScope() argument
132 void SerializeColorF(JsonSerializer *json, const ColorF &color) in SerializeColorF() argument
134 json->addScalar("red", color.red); in SerializeColorF()
135 json->addScalar("green", color.green); in SerializeColorF()
136 json in SerializeColorF()
140 SerializeColorFWithGroup(JsonSerializer *json, const char *groupName, const ColorF &color) SerializeColorFWithGroup() argument
146 SerializeColorI(JsonSerializer *json, const ColorI &color) SerializeColorI() argument
154 SerializeColorUI(JsonSerializer *json, const ColorUI &color) SerializeColorUI() argument
162 SerializeExtents(JsonSerializer *json, const gl::Extents &extents) SerializeExtents() argument
170 SerializeOffsetBindingPointerVector( JsonSerializer *json, const char *groupName, const std::vector<gl::OffsetBindingPointer<ObjectType>> &offsetBindingPointerVector) SerializeOffsetBindingPointerVector() argument
187 SerializeBindingPointerVector( JsonSerializer *json, const std::vector<gl::BindingPointer<ObjectType>> &bindingPointerVector) SerializeBindingPointerVector() argument
206 SerializeRange(JsonSerializer *json, const gl::Range<T> &range) SerializeRange() argument
219 SerializeFormat(JsonSerializer *json, GLenum glFormat) SerializeFormat() argument
225 SerializeInternalFormat(JsonSerializer *json, const gl::InternalFormat *internalFormat) SerializeInternalFormat() argument
230 SerializeANGLEFormat(JsonSerializer *json, const angle::Format *format) SerializeANGLEFormat() argument
235 SerializeGLFormat(JsonSerializer *json, const gl::Format &format) SerializeGLFormat() argument
262 SerializeImageIndex(JsonSerializer *json, const gl::ImageIndex &imageIndex) SerializeImageIndex() argument
271 SerializeFramebufferAttachment(const gl::Context *context, JsonSerializer *json, ScratchBuffer *scratchBuffer, gl::Framebuffer *framebuffer, const gl::FramebufferAttachment &framebufferAttachment, gl::GLenumGroup enumGroup) SerializeFramebufferAttachment() argument
330 SerializeFramebufferState(const gl::Context *context, JsonSerializer *json, ScratchBuffer *scratchBuffer, gl::Framebuffer *framebuffer, const gl::FramebufferState &framebufferState) SerializeFramebufferState() argument
393 SerializeFramebuffer(const gl::Context *context, JsonSerializer *json, ScratchBuffer *scratchBuffer, gl::Framebuffer *framebuffer) SerializeFramebuffer() argument
402 SerializeRasterizerState(JsonSerializer *json, const gl::RasterizerState &rasterizerState) SerializeRasterizerState() argument
417 SerializeRectangle(JsonSerializer *json, const std::string &name, const gl::Rectangle &rectangle) SerializeRectangle() argument
428 SerializeBlendStateExt(JsonSerializer *json, const gl::BlendStateExt &blendStateExt) SerializeBlendStateExt() argument
442 SerializeDepthStencilState(JsonSerializer *json, const gl::DepthStencilState &depthStencilState) SerializeDepthStencilState() argument
464 SerializeVertexAttribCurrentValueData( JsonSerializer *json, const gl::VertexAttribCurrentValueData &vertexAttribCurrentValueData) SerializeVertexAttribCurrentValueData() argument
494 SerializePixelPackState(JsonSerializer *json, const gl::PixelPackState &pixelPackState) SerializePixelPackState() argument
506 SerializePixelUnpackState(JsonSerializer *json, const gl::PixelUnpackState &pixelUnpackState) SerializePixelUnpackState() argument
517 SerializeImageUnit(JsonSerializer *json, const gl::ImageUnit &imageUnit, int imageUnitIndex) SerializeImageUnit() argument
529 SerializeResourceID(JsonSerializer *json, const char *name, const ResourceType *resource) SerializeResourceID() argument
534 SerializeContextState(JsonSerializer *json, const gl::State &state) SerializeContextState() argument
674 SerializeBufferState(JsonSerializer *json, const gl::BufferState &bufferState) SerializeBufferState() argument
686 SerializeBuffer(const gl::Context *context, JsonSerializer *json, ScratchBuffer *scratchBuffer, gl::Buffer *buffer) SerializeBuffer() argument
709 SerializeColorGeneric(JsonSerializer *json, const std::string &name, const ColorGeneric &colorGeneric) SerializeColorGeneric() argument
732 SerializeSamplerState(JsonSerializer *json, const gl::SamplerState &samplerState) SerializeSamplerState() argument
748 SerializeSampler(JsonSerializer *json, gl::Sampler *sampler) SerializeSampler() argument
755 SerializeSwizzleState(JsonSerializer *json, const gl::SwizzleState &swizzleState) SerializeSwizzleState() argument
763 SerializeRenderbufferState(JsonSerializer *json, const gl::RenderbufferState &renderbufferState) SerializeRenderbufferState() argument
774 SerializeRenderbuffer(const gl::Context *context, JsonSerializer *json, ScratchBuffer *scratchBuffer, gl::Renderbuffer *renderbuffer) SerializeRenderbuffer() argument
822 SerializeWorkGroupSize(JsonSerializer *json, const sh::WorkGroupSize &workGroupSize) SerializeWorkGroupSize() argument
830 SerializeShaderVariable(JsonSerializer *json, const sh::ShaderVariable &shaderVariable) SerializeShaderVariable() argument
860 SerializeShaderVariablesVector(JsonSerializer *json, const std::vector<sh::ShaderVariable> &shaderVariables) SerializeShaderVariablesVector() argument
869 SerializeInterfaceBlocksVector(JsonSerializer *json, const std::vector<sh::InterfaceBlock> &interfaceBlocks) SerializeInterfaceBlocksVector() argument
888 SerializeShaderState(JsonSerializer *json, const gl::ShaderState &shaderState) SerializeShaderState() argument
928 SerializeShader(JsonSerializer *json, GLuint id, gl::Shader *shader) SerializeShader() argument
946 SerializeVariableLocationsVector(JsonSerializer *json, const std::string &group_name, const std::vector<gl::VariableLocation> &variableLocations) SerializeVariableLocationsVector() argument
961 SerializeBlockMemberInfo(JsonSerializer *json, const sh::BlockMemberInfo &blockMemberInfo) SerializeBlockMemberInfo() argument
971 SerializeActiveVariable(JsonSerializer *json, const gl::ActiveVariable &activeVariable) SerializeActiveVariable() argument
976 SerializeBufferVariablesVector(JsonSerializer *json, const std::vector<gl::BufferVariable> &bufferVariables) SerializeBufferVariablesVector() argument
990 SerializeProgramAliasedBindings(JsonSerializer *json, const gl::ProgramAliasedBindings &programAliasedBindings) SerializeProgramAliasedBindings() argument
1001 SerializeProgramState(JsonSerializer *json, const gl::ProgramState &programState) SerializeProgramState() argument
1033 SerializeProgramBindings(JsonSerializer *json, const gl::ProgramBindings &programBindings) SerializeProgramBindings() argument
1042 SerializeUniformData(JsonSerializer *json, const gl::Context *context, gl::Program *program, gl::UniformLocation loc, GLenum type, GLint size, void (gl::Program::*getFunc)(const gl::Context *, gl::UniformLocation, T *) const) SerializeUniformData() argument
1057 SerializeProgram(JsonSerializer *json, const gl::Context *context, GLuint id, gl::Program *program) SerializeProgram() argument
1131 SerializeImageDesc(JsonSerializer *json, size_t descIndex, const gl::ImageDesc &imageDesc) SerializeImageDesc() argument
1147 SerializeTextureState(JsonSerializer *json, const gl::TextureState &textureState) SerializeTextureState() argument
1178 SerializeTextureData(JsonSerializer *json, const gl::Context *context, gl::Texture *texture, ScratchBuffer *scratchBuffer) SerializeTextureData() argument
1248 SerializeTexture(const gl::Context *context, JsonSerializer *json, ScratchBuffer *scratchBuffer, gl::Texture *texture) SerializeTexture() argument
1268 SerializeVertexAttributeVector(JsonSerializer *json, const std::vector<gl::VertexAttribute> &vertexAttributes) SerializeVertexAttributeVector() argument
1284 SerializeVertexBindingsVector(JsonSerializer *json, const std::vector<gl::VertexBinding> &vertexBindings) SerializeVertexBindingsVector() argument
1299 SerializeVertexArrayState(JsonSerializer *json, const gl::VertexArrayState &vertexArrayState) SerializeVertexArrayState() argument
1323 SerializeVertexArray(JsonSerializer *json, gl::VertexArray *vertexArray) SerializeVertexArray() argument
1335 JsonSerializer json; SerializeContextToString() local
[all...]
/test/xts/acts/arkui/ace_ets_module_ui/ace_ets_module_imageText/ace_ets_module_imageText_api11/entry/src/main/ets/test/textTest/
H A DtextSpanFont.test.ets34 console.info("get textSpanFont state success " + JSON.stringify(pages));
36 console.info("get textSpanFont state success " + JSON.stringify(pages.name));
38 console.info("push textSpanFont page success " + JSON.stringify(result));
59 console.info('ArkUX_Stage_Text_Font_FontWeight_0100 START :' + JSON.stringify(strJson));
61 JSON.stringify(JSON.parse(strJson).$attrs.font));
63 JSON.stringify(JSON.parse(JSON.parse(strJson).$attrs.font)));
64 expect(JSON
[all...]
/third_party/json/
H A DChangeLog.md4 ## [3.11.2](https://github.com/nlohmann/json/releases/tag/3.11.2) (2022-08-12)
6 [Full Changelog](https://github.com/nlohmann/json/compare/v3.11.1...3.11.2)
8 - MSVC natvis visualizer does not work after introduction of inline ABI namespace [\#3696](https://github.com/nlohmann/json/issues/3696)
9 - The use of parenthesis gives compilation errors in some situations [\#3682](https://github.com/nlohmann/json/issues/3682)
10 - extern from/to\_json result in linker error [\#3657](https://github.com/nlohmann/json/issues/3657)
11 - json\_fwd.hpp no longer standalone [\#3656](https://github.com/nlohmann/json/issues/3656)
12 - regression: `.value<size_t>` is compilation error. [\#3655](https://github.com/nlohmann/json/issues/3655)
13 - Regression: no match for 'operator!=' comparing json\_pointer and const char \*/string\_t [\#3654](https://github.com/nlohmann/json/issue
[all...]
/test/xts/acts/arkui/ace_ets_ux_one/ace_ets_component_GeneralLayout/entry/src/main/ets/test/
H A DGeneralLayoutMarkAnchor.test.ets40 console.info("get IndexMark state success " + JSON.stringify(pages));
42 console.info("get IndexMark state success " + JSON.stringify(pages.name));
44 console.info("push IndexMark page success " + JSON.stringify(result));
67 console.info('0100_TextM START :' + JSON.stringify(strJson));
68 original_rect_top = JSON.parse('[' + JSON.parse('[' + JSON.parse(strJson).$rect + ']')[0] + ']')[1];
69 original_rect_right = JSON.parse('[' + JSON.parse('[' + JSON
[all...]
H A DGeneralLayoutPosition.test.ets42 console.info("get Index state success " + JSON.stringify(pages));
44 console.info("get Index state success " + JSON.stringify(pages.name));
46 console.info("push Index page success " + JSON.stringify(result));
68 original_rect_left = JSON.parse('[' + JSON.parse('[' + JSON.parse(strJson).$rect + ']')[0] + ']')[0];
69 original_rect_top = JSON.parse('[' + JSON.parse('[' + JSON.parse(strJson).$rect + ']')[0] + ']')[1];
70 original_rect_right = JSON
[all...]
H A DGeneralLayoutOffset.test.ets40 console.info("get IndexOff state success " + JSON.stringify(pages));
42 console.info("get IndexOff state success " + JSON.stringify(pages.name));
44 console.info("push IndexOff page success " + JSON.stringify(result));
66 console.info('0100_Text START :' + JSON.stringify(strJson));
67 original_rect_left = JSON.parse('[' + JSON.parse('[' + JSON.parse(strJson).$rect + ']')[0] + ']')[0];
68 original_rect_top = JSON.parse('[' + JSON.parse('[' + JSON
[all...]
H A DGeneralLayoutOriginal.test.ets37 console.info("get IndexOrig state success " + JSON.stringify(pages));
39 console.info("get IndexOrig state success " + JSON.stringify(pages.name));
41 console.info("push IndexOrig page success " + JSON.stringify(result));
62 original_rect_left = JSON.parse('[' + JSON.parse('[' + JSON.parse(strJson).$rect + ']')[0] + ']')[0];
63 original_rect_top = JSON.parse('[' + JSON.parse('[' + JSON.parse(strJson).$rect + ']')[0] + ']')[1];
66 let top: number = JSON
[all...]
/test/xts/acts/arkui/ace_ets_module_ui/ace_ets_module_commonAttrsVisual/ace_ets_module_commonAttrsVisual_api11/entry/src/main/ets/test/imageEffectsTest/
H A DblendModeTest.test.ets44 console.info("get blendModeTest state pages: " + JSON.stringify(pages));
46 console.info("get blendModeTest state pages.name: " + JSON.stringify(pages.name));
49 console.info("push blendModeTest success: " + JSON.stringify(result));
70 console.info("[blendModeTest_0100] component JSON.parse(strJson) is: " + JSON.stringify(JSON.parse(strJson)));
71 console.info("[blendModeTest_0100] component JSON.parse(strJson).$attrs is: " + JSON.stringify(JSON.parse(strJson).$attrs));
72 console.info("[blendModeTest_0100] text: " + JSON
[all...]
/applications/standard/app_samples/code/BasicFeature/DeviceManagement/Vibrator/CustomHaptic/entry/src/main/ets/module/
H A DImageData.ets32 vibratorFileL: "CarCrash_l.json",
33 vibratorFileM: "CarCrash_m.json",
34 vibratorFileH: "CarCrash_h.json",
41 vibratorFileL: "CarIgnite_l.json",
42 vibratorFileM: "CarIgnite_m.json",
43 vibratorFileH: "CarIgnite_h.json",
50 vibratorFileL: "CarSkid_l.json",
51 vibratorFileM: "CarSkid_m.json",
52 vibratorFileH: "CarSkid_h.json",
59 vibratorFileL: "DriftingJet_l.json",
[all...]
/test/xts/acts/arkui/ace_ets_module_ui/ace_ets_module_information/ace_ets_module_information_api11/entry/src/main/ets/test/gaugeTest/
H A Dgaugeux.test.ets33 console.info("get gaugeUx state success " + JSON.stringify(pages));
35 console.info("get gaugeUx state success " + JSON.stringify(pages.name));
38 console.info("push gaugeUx page success " + JSON.stringify(result));
64 console.info('ArkUX_Gauge_Colors_InterfaceName_0100 START :' + JSON.stringify(strJson));
65 console.info("ArkUX_Gauge_Colors_InterfaceName_0100 component JSON.parse(strJson).$attrs.colors is: " +
66 JSON.stringify(JSON.parse(strJson).$attrs.colors));
71 expect(JSON.parse(strJson).$attrs.colors).assertEqual("#FF0000FF");
75 console.info('ArkUX_Gauge_Colors_InterfaceName_0100 ERR ' + JSON.stringify(err));
92 console.info('ArkUX_Gauge_Colors_InterfaceName_0200 START :' + JSON
[all...]
/test/xts/acts/arkui/ace_ets_module_ui/ace_ets_module_picker/ace_ets_module_picker_api11/entry/src/main/ets/test/CheckboxTest/
H A DcheckBox.ets27 console.info("get checkBox state success " + JSON.stringify(pages));
29 console.info("get checkBox state success " + JSON.stringify(pages.name));
31 console.info("push checkBox page success " + JSON.stringify(result));
34 console.error("push checkBox page error " + JSON.stringify(err));
49 console.info('ArkUX_Stage_Checkbox_unselectedColor_0100 START :' + JSON.stringify(strJson));
50 let obj: Record<string, ESObject> = JSON.parse(strJson);
51 console.info("ArkUX_Stage_Checkbox_unselectedColor_0100 component obj is: " + JSON.stringify(obj));
53 JSON.stringify(obj.$attrs));
55 JSON.stringify(obj.$attrs.unselectedColor));
60 console.info('ArkUX_Stage_Checkbox_unselectedColor_0100 ERR ' + JSON
[all...]

Completed in 18 milliseconds

12345678910>>...856