Home
last modified time | relevance | path

Searched refs:ArrayT (Results 1 – 13 of 13) sorted by relevance

/arkcompiler/runtime_core/libpandabase/tests/
Djson_parser_test.cpp60 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/
Djson_parser_test.cpp59 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/
Dremote_object.h106 return RemoteObject(ArrayT {std::move(className), objectId, length});
135 struct ArrayT { struct
148 ArrayT, FunctionT>; argument
182 static std::string GetDescription(const ArrayT &array);
Dremote_object.cpp72 } 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/
Djson_object_matcher.cpp31 if (auto *array = value.Get<JsonObject::ArrayT>()) { in operator <<()
Djson_object_matcher.h40 constexpr const char *PropertyTypeName<JsonObject::ArrayT>()
221 inline std::ostream &operator<<(std::ostream &os, const JsonObject::ArrayT &array)
Dinspector_server.cpp212 …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/
Djson_parser.h38 using ArrayT = std::vector<Value>; variable
77 std::variant<std::monostate, StringT, NumT, BoolT, ArrayT, JsonObjPointer> value_;
Djson_parser.cpp318 ArrayT temp; in GetArray()
/arkcompiler/runtime_core/libpandabase/utils/
Djson_parser.h38 using ArrayT = std::vector<Value>; variable
76 std::variant<std::monostate, StringT, NumT, BoolT, ArrayT, JsonObjPointer> value_;
Djson_parser.cpp305 ArrayT temp; in GetArray()
/arkcompiler/runtime_core/static_core/compiler/tools/paoc/
Dpaoc_clusters.h39 using ArrayT = JsonObject::ArrayT; variable
113 const auto *curClustersJson = clustersArray.Get<ArrayT>(); in InitClustersMap()
/arkcompiler/ets_frontend/ets2panda/util/
Darktsconfig.cpp198 auto values = paths->get()->GetValue<JsonObject::ArrayT>(key); in ParsePaths()
273 auto arr = config->GetValue<JsonObject::ArrayT>(target); in ParseCollection()