Home
last modified time | relevance | path

Searched refs:stringMap (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/ets_runtime/tools/ap_file_viewer/native/include/
Dprof_convert_json.h120 cJSON* HandleStringMap(const ProfileType::StringMap& stringMap) const in HandleStringMap() argument
126 for (const auto& [mapKey, mapValue] : stringMap) { in HandleStringMap()
138 for (const auto& stringMap : vecMap) { in HandleMapVector() local
139 cJSON* mapObject = HandleStringMap(stringMap); in HandleMapVector()
159 for (const auto& stringMap : vec1) { in HandleNestedMapVector() local
160 cJSON* mapObject = HandleStringMap(stringMap); in HandleNestedMapVector()
/arkcompiler/runtime_core/static_core/libpandafile/tests/
Dfile_item_container_test.cpp991 std::unordered_map<std::string, StringItem *> *stringMap = container.GetStringMap(); in TEST() local
992 ASSERT_TRUE(stringMap != nullptr && stringMap->size() == 4); in TEST()
993 auto sit0 = stringMap->find("field"); in TEST()
994 auto sit1 = stringMap->find("source_file"); in TEST()
995 auto sit2 = stringMap->find("foo1"); in TEST()
996 auto sit3 = stringMap->find("foo2"); in TEST()
997 ASSERT_TRUE(sit0 != stringMap->end() && sit1 != stringMap->end() && sit2 != stringMap->end() && in TEST()
998 sit3 != stringMap->end()); in TEST()