Home
last modified time | relevance | path

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

/development/vndk/tools/header-checker/src/repr/symbol/
Dversion_script_parser.cpp80 bool VersionScriptParser::AddModeTag(std::string_view mode_tag) { in AddModeTag() argument
81 auto parsed_mode_tag = ParseModeTag(mode_tag, MAX_MODE_TAG_LEVEL); in AddModeTag()
175 auto mode_tag = ParseModeTag(tag, MIN_MODE_TAG_LEVEL); in ParseSymbolTags() local
176 if (mode_tag.has_value() && in ParseSymbolTags()
177 (KNOWN_MODE_TAGS.count(mode_tag->first) > 0 || in ParseSymbolTags()
178 included_mode_tags_.count(mode_tag->first) > 0)) { in ParseSymbolTags()
179 result.mode_tags_[std::string(mode_tag->first)] = mode_tag->second; in ParseSymbolTags()
192 for (const auto &mode_tag : tags.mode_tags_) { in MatchModeTags() local
193 auto included_mode_tag = included_mode_tags_.find(mode_tag.first); in MatchModeTags()
195 included_mode_tag->second >= mode_tag.second) { in MatchModeTags()
Dversion_script_parser.h95 bool AddModeTag(std::string_view mode_tag);