Lines Matching defs:const

35   StatsTable(const StatsTable&) = delete;
36 StatsTable& operator=(const StatsTable&) = delete;
54 bool HasCounterFunction() const { return lookup_function_ != nullptr; }
62 int* FindLocation(const char* name) {
72 void* CreateHistogram(const char* name, int min, int max, size_t buckets) {
126 void Init(Counters* counters, const char* name) {
148 const char* name_ = nullptr;
163 const char* name() const { return name_; }
165 int min() const { return min_; }
166 int max() const { return max_; }
167 int num_buckets() const { return num_buckets_; }
177 Histogram(const Histogram&) = delete;
178 Histogram& operator=(const Histogram&) = delete;
180 void Initialize(const char* name, int min, int max, int num_buckets,
191 Counters* counters() const { return counters_; }
209 V8_EXPORT_PRIVATE void* CreateHistogram() const;
211 const char* name_;
239 bool ToggleRunningState(bool expected_is_running) const;
251 TimedHistogram(const TimedHistogram&) = delete;
252 TimedHistogram& operator=(const TimedHistogram&) = delete;
254 void Initialize(const char* name, int min, int max,
269 NestedTimedHistogram(const char* name, int min, int max,
294 NestedTimedHistogram(const NestedTimedHistogram&) = delete;
295 NestedTimedHistogram& operator=(const NestedTimedHistogram&) = delete;
330 AggregatableHistogramTimer(const AggregatableHistogramTimer&) = delete;
331 AggregatableHistogramTimer& operator=(const AggregatableHistogramTimer&) =
426 const double kEpsilon = 1e-6;
427 const int kMaxSamples = 1000;
626 int* FindLocation(const char* name) {
630 void* CreateHistogram(const char* name, int min, int max, size_t buckets) {