Searched refs:ArrayT (Results 1 – 13 of 13) sorted by relevance
| /arkcompiler/runtime_core/libpandabase/tests/ |
| D | json_parser_test.cpp | 60 ASSERT_NE(obj.GetValue<JsonObject::ArrayT>("key_0"), nullptr); 61 auto &main_array = *obj.GetValue<JsonObject::ArrayT>("key_0"); 68 ASSERT_NE(main_array[1].Get<JsonObject::ArrayT>(), nullptr); 69 auto &inner_array = *main_array[1].Get<JsonObject::ArrayT>(); 81 ASSERT_NE(obj.GetValue<JsonObject::ArrayT>("key_1"), nullptr); 82 auto &empty_array = *obj.GetValue<JsonObject::ArrayT>("key_1");
|
| /arkcompiler/runtime_core/static_core/libpandabase/tests/ |
| D | json_parser_test.cpp | 59 ASSERT_NE(obj.GetValue<JsonObject::ArrayT>("key_0"), nullptr); in TEST() 60 auto &mainArray = *obj.GetValue<JsonObject::ArrayT>("key_0"); in TEST() 67 ASSERT_NE(mainArray[1U].Get<JsonObject::ArrayT>(), nullptr); in TEST() 68 auto &innerArray = *mainArray[1U].Get<JsonObject::ArrayT>(); in TEST() 80 ASSERT_NE(obj.GetValue<JsonObject::ArrayT>("key_1"), nullptr); in TEST() 81 auto &emptyArray = *obj.GetValue<JsonObject::ArrayT>("key_1"); in TEST()
|
| /arkcompiler/runtime_core/static_core/runtime/tooling/inspector/types/ |
| D | remote_object.h | 106 return RemoteObject(ArrayT {std::move(className), objectId, length}); 135 struct ArrayT { struct 148 ArrayT, FunctionT>; argument 182 static std::string GetDescription(const ArrayT &array);
|
| D | remote_object.cpp | 72 } else if (auto array = std::get_if<ArrayT>(&value)) { in GeneratePreview() 111 std::string RemoteObject::GetDescription(const RemoteObject::ArrayT &array) in GetDescription() 139 if (auto array = std::get_if<ArrayT>(&value_)) { in GetObjectId() 174 if (std::holds_alternative<ArrayT>(value_)) { in GetType() 253 } else if (auto array = std::get_if<ArrayT>(&value_)) { in ToJson()
|
| /arkcompiler/runtime_core/static_core/runtime/tooling/inspector/tests/ |
| D | json_object_matcher.cpp | 31 if (auto *array = value.Get<JsonObject::ArrayT>()) { in operator <<()
|
| D | json_object_matcher.h | 40 constexpr const char *PropertyTypeName<JsonObject::ArrayT>() 221 inline std::ostream &operator<<(std::ostream &os, const JsonObject::ArrayT &array)
|
| D | inspector_server.cpp | 212 …JsonProperties(JsonProperty<JsonObject::ArrayT> {"callFrames", JsonElementsAreArray(callFrames)})); in TEST_F() 255 … JsonProperties(JsonProperty<JsonObject::ArrayT> {"locations", JsonElementsAreArray(locations)})); in __anon8a42feb10d02() 477 … JsonProperty<JsonObject::ArrayT> {"locations", JsonElementsAreArray(locations)})); in TEST_F() 615 … JsonProperties(JsonProperty<JsonObject::ArrayT> {"result", JsonElementsAreArray(result)})); in TEST_F()
|
| /arkcompiler/runtime_core/static_core/libpandabase/utils/ |
| D | json_parser.h | 38 using ArrayT = std::vector<Value>; variable 77 std::variant<std::monostate, StringT, NumT, BoolT, ArrayT, JsonObjPointer> value_;
|
| D | json_parser.cpp | 318 ArrayT temp; in GetArray()
|
| /arkcompiler/runtime_core/libpandabase/utils/ |
| D | json_parser.h | 38 using ArrayT = std::vector<Value>; variable 76 std::variant<std::monostate, StringT, NumT, BoolT, ArrayT, JsonObjPointer> value_;
|
| D | json_parser.cpp | 305 ArrayT temp; in GetArray()
|
| /arkcompiler/runtime_core/static_core/compiler/tools/paoc/ |
| D | paoc_clusters.h | 39 using ArrayT = JsonObject::ArrayT; variable 113 const auto *curClustersJson = clustersArray.Get<ArrayT>(); in InitClustersMap()
|
| /arkcompiler/ets_frontend/ets2panda/util/ |
| D | arktsconfig.cpp | 198 auto values = paths->get()->GetValue<JsonObject::ArrayT>(key); in ParsePaths() 273 auto arr = config->GetValue<JsonObject::ArrayT>(target); in ParseCollection()
|