Home | History | Annotate | Download | only in keystore

Lines Matching refs:Tag

27     template<TagType tag_type, Tag tag>
28 static TypedTag<tag_type, tag> chooseString(TypedTag<tag_type, tag> ttag, Tag runtime_tag,
30 if (tag == runtime_tag) {
31 *result = Tag2String<tag>::value();
35 static const char* stringify(Tag tag) {
36 const char* result = "unknown tag";
37 [] (Tags&&...) {}(chooseString(Tags(), tag, &result)...);
42 const char* stringifyTag(Tag tag) {
43 return TagStringifier<all_tags_t>::stringify(tag);