Home
last modified time | relevance | path

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

/external/libchrome/base/metrics/
Dhistogram_unittest.nc60 #elif defined(NCTEST_FUNCTION_INT) // [r"Non enum passed to UmaHistogramEnumeration"]
63 UmaHistogramEnumeration("", 1, 2);
66 …NCTEST_FUNCTION_DIFFERENT_ENUM) // [r"no matching function for call to 'UmaHistogramEnumeration'"]
71 UmaHistogramEnumeration("", A, B);
74 …NCTEST_FUNCTION_FIRST_NOT_ENUM) // [r"no matching function for call to 'UmaHistogramEnumeration'"]
78 UmaHistogramEnumeration("", 1, B);
81 …CTEST_FUNCTION_SECOND_NOT_ENUM) // [r"no matching function for call to 'UmaHistogramEnumeration'"]
85 UmaHistogramEnumeration("", A, 2);
Dhistogram_functions.h53 void UmaHistogramEnumeration(const std::string& name, T sample, T enum_size) { in UmaHistogramEnumeration() function
65 void UmaHistogramEnumeration(const std::string& name, T sample) { in UmaHistogramEnumeration() function
Dhistogram_functions_unittest.cc44 UmaHistogramEnumeration(histogram, UMA_HISTOGRAM_TESTING_ENUM_FIRST, in TEST()