Searched refs:mode_tag (Results 1 – 2 of 2) sorted by relevance
80 bool VersionScriptParser::AddModeTag(std::string_view mode_tag) { in AddModeTag() argument81 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() local176 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() local193 auto included_mode_tag = included_mode_tags_.find(mode_tag.first); in MatchModeTags()195 included_mode_tag->second >= mode_tag.second) { in MatchModeTags()
95 bool AddModeTag(std::string_view mode_tag);