Lines Matching refs:HistogramBase

42 HistogramBase::HistogramBase(
51 HistogramBase::HistogramBase(
60 void HistogramBase::MemoryInfo(MemoryTracker* tracker) const {
64 void HistogramBase::GetCount(const v8::FunctionCallbackInfo<v8::Value>& args) {
65 HistogramBase* histogram;
71 void HistogramBase::GetCountBigInt(
74 HistogramBase* histogram;
80 void HistogramBase::GetMin(const FunctionCallbackInfo<Value>& args) {
81 HistogramBase* histogram;
87 void HistogramBase::GetMinBigInt(const FunctionCallbackInfo<Value>& args) {
89 HistogramBase* histogram;
94 void HistogramBase::GetMax(const FunctionCallbackInfo<Value>& args) {
95 HistogramBase* histogram;
101 void HistogramBase::GetMaxBigInt(const FunctionCallbackInfo<Value>& args) {
103 HistogramBase* histogram;
109 void HistogramBase::GetMean(const FunctionCallbackInfo<Value>& args) {
110 HistogramBase* histogram;
115 void HistogramBase::GetExceeds(const FunctionCallbackInfo<Value>& args) {
116 HistogramBase* histogram;
122 void HistogramBase::GetExceedsBigInt(const FunctionCallbackInfo<Value>& args) {
124 HistogramBase* histogram;
130 void HistogramBase::GetStddev(const FunctionCallbackInfo<Value>& args) {
131 HistogramBase* histogram;
136 void HistogramBase::GetPercentile(const FunctionCallbackInfo<Value>& args) {
137 HistogramBase* histogram;
145 void HistogramBase::GetPercentileBigInt(
148 HistogramBase* histogram;
156 void HistogramBase::GetPercentiles(const FunctionCallbackInfo<Value>& args) {
158 HistogramBase* histogram;
170 void HistogramBase::GetPercentilesBigInt(
173 HistogramBase* histogram;
185 void HistogramBase::DoReset(const FunctionCallbackInfo<Value>& args) {
186 HistogramBase* histogram;
191 void HistogramBase::RecordDelta(const FunctionCallbackInfo<Value>& args) {
192 HistogramBase* histogram;
197 void HistogramBase::Record(const FunctionCallbackInfo<Value>& args) {
206 HistogramBase* histogram;
211 void HistogramBase::Add(const FunctionCallbackInfo<Value>& args) {
213 HistogramBase* histogram;
217 HistogramBase* other;
224 BaseObjectPtr<HistogramBase> HistogramBase::Create(
231 return BaseObjectPtr<HistogramBase>();
234 return MakeBaseObject<HistogramBase>(env, obj, options);
237 BaseObjectPtr<HistogramBase> HistogramBase::Create(
244 return BaseObjectPtr<HistogramBase>();
246 return MakeBaseObject<HistogramBase>(env, obj, std::move(histogram));
249 void HistogramBase::New(const FunctionCallbackInfo<Value>& args) {
275 new HistogramBase(env, args.This(), Histogram::Options {
280 Local<FunctionTemplate> HistogramBase::GetConstructorTemplate(
292 HistogramBase::kInternalFieldCount);
319 void HistogramBase::RegisterExternalReferences(
342 void HistogramBase::Initialize(Environment* env, Local<Object> target) {
350 BaseObjectPtr<BaseObject> HistogramBase::HistogramTransferData::Deserialize(
357 std::unique_ptr<worker::TransferData> HistogramBase::CloneForMessaging() const {
361 void HistogramBase::HistogramTransferData::MemoryInfo(
375 HistogramBase::kInternalFieldCount);
632 return std::make_unique<HistogramBase::HistogramTransferData>(histogram());