Home
last modified time | relevance | path

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

/external/perfetto/src/tracing/
Dtraced_value_unittest.cc492 enum class EnumWithPrettyPrint { kValue1, kValue2 }; enum
497 struct TraceFormatTraits<EnumWithPrettyPrint> {
499 EnumWithPrettyPrint value) { in WriteIntoTracedValue()
501 case EnumWithPrettyPrint::kValue1: in WriteIntoTracedValue()
504 case EnumWithPrettyPrint::kValue2: in WriteIntoTracedValue()
514 EXPECT_EQ(TracedValueToString(EnumWithPrettyPrint::kValue2), "value2"); in TEST()