Lines Matching full:metric
1 //===-- Metric.cpp ----------------------------------------------*- C++ -*-===//
10 #include "Metric.h"
17 Metric<T>::Metric () : Metric ("")
22 Metric<T>::Metric (const char* n, const char* d) :
31 Metric<T>::Append (T v)
38 Metric<T>::GetCount () const
45 Metric<T>::GetSum () const
55 Metric<T>::GetAverage () const
64 Metric<T>::GetStandardDeviation (StandardDeviationMode mode) const
84 template class lldb_perf::Metric<double>;
85 template class lldb_perf::Metric<MemoryStats>;