Home
last modified time | relevance | path

Searched refs:Cumulative (Results 1 – 25 of 35) sorted by relevance

12

/external/opencensus-java/api/src/main/java/io/opencensus/stats/
DView.java157 name, description, measure, aggregation, columns, AggregationWindow.Cumulative.create()); in create()
216 Function<? super Cumulative, T> p0, in match() argument
230 public abstract static class Cumulative extends AggregationWindow { class in View.AggregationWindow
232 private static final Cumulative CUMULATIVE =
235 Cumulative() {} in Cumulative() method in View.AggregationWindow.Cumulative
245 public static Cumulative create() { in create()
251 Function<? super Cumulative, T> p0, in match() argument
299 Function<? super Cumulative, T> p0, in match() argument
DViewData.java209 new Function<View.AggregationWindow.Cumulative, Void>() {
211 public Void apply(View.AggregationWindow.Cumulative arg) {
/external/opencensus-java/exporters/stats/signalfx/src/test/java/io/opencensus/exporter/stats/signalfx/
DSignalFxSessionAdaptorTest.java83 null, AggregationWindow.Cumulative.create())); in checkMetricTypeFromAggregation()
87 Aggregation.Mean.create(), AggregationWindow.Cumulative.create())); in checkMetricTypeFromAggregation()
95 Aggregation.Count.create(), AggregationWindow.Cumulative.create())); in checkMetricTypeFromAggregation()
99 Aggregation.Sum.create(), AggregationWindow.Cumulative.create())); in checkMetricTypeFromAggregation()
112 AggregationWindow.Cumulative.create())); in checkMetricTypeFromAggregation()
116 Aggregation.LastValue.create(), AggregationWindow.Cumulative.create())); in checkMetricTypeFromAggregation()
157 Mockito.when(view.getWindow()).thenReturn(AggregationWindow.Cumulative.create()); in unsupportedAggregationYieldsNoDatapoints()
165 Mockito.when(view.getWindow()).thenReturn(AggregationWindow.Cumulative.create()); in noAggregationDataYieldsNoDatapoints()
248 Mockito.when(view.getWindow()).thenReturn(AggregationWindow.Cumulative.create()); in adaptViewIntoDatapoints()
289 Mockito.when(view.getWindow()).thenReturn(AggregationWindow.Cumulative.create()); in adaptViewWithEmptyTagValueIntoDatapoints()
DSignalFxStatsExporterWorkerThreadTest.java121 Mockito.when(view.getWindow()).thenReturn(AggregationWindow.Cumulative.create()); in setsDatapointsFromViewOnSession()
/external/opencensus-java/impl_core/src/test/java/io/opencensus/implcore/stats/
DMeasureToViewMapTest.java26 import io.opencensus.stats.View.AggregationWindow.Cumulative;
46 private static final Cumulative CUMULATIVE = Cumulative.create();
DStatsRecorderImplTest.java42 import io.opencensus.stats.View.AggregationWindow.Cumulative;
96 Cumulative.create()); in record_CurrentContextNotSet()
115 Cumulative.create()); in record_CurrentContextSet()
141 Cumulative.create()); in record_UnregisteredMeasure()
275 Cumulative.create()); in recordTwice()
303 Cumulative.create()); in record_StatsDisabled()
324 Cumulative.create()); in record_StatsReenabled()
DViewManagerImplTest.java47 import io.opencensus.stats.View.AggregationWindow.Cumulative;
100 private static final Cumulative CUMULATIVE = Cumulative.create();
/external/opencensus-java/api/src/test/java/io/opencensus/stats/
DViewTest.java24 import io.opencensus.stats.View.AggregationWindow.Cumulative;
71 assertThat(view.getWindow()).isEqualTo(Cumulative.create()); in testDistributionView()
90 View.create(NAME, DESCRIPTION, MEASURE, MEAN, KEYS, Cumulative.create())) in testViewEquals()
92 View.create(NAME, DESCRIPTION + 2, MEASURE, MEAN, KEYS, Cumulative.create())) in testViewEquals()
DNoopViewManagerTest.java25 import io.opencensus.stats.View.AggregationWindow.Cumulative;
48 private static final Cumulative CUMULATIVE = Cumulative.create();
DViewDataTest.java40 import io.opencensus.stats.View.AggregationWindow.Cumulative;
277 private static final AggregationWindow CUMULATIVE = Cumulative.create();
/external/opencensus-java/exporters/stats/prometheus/src/test/java/io/opencensus/exporter/stats/prometheus/
DPrometheusStatsCollectorTest.java32 import io.opencensus.stats.View.AggregationWindow.Cumulative;
54 private static final Cumulative CUMULATIVE = Cumulative.create();
DPrometheusExportUtilsTest.java44 import io.opencensus.stats.View.AggregationWindow.Cumulative;
69 private static final Cumulative CUMULATIVE = Cumulative.create();
/external/opencensus-java/exporters/stats/stackdriver/src/test/java/io/opencensus/exporter/stats/stackdriver/
DStackdriverExporterWorkerTest.java47 import io.opencensus.stats.View.AggregationWindow.Cumulative;
81 private static final Cumulative CUMULATIVE = Cumulative.create();
DStackdriverExportUtilsTest.java54 import io.opencensus.stats.View.AggregationWindow.Cumulative;
92 private static final Cumulative CUMULATIVE = Cumulative.create();
/external/opencensus-java/contrib/grpc_metrics/src/test/java/io/opencensus/contrib/grpc/metrics/
DRpcViewConstantsTest.java26 import io.opencensus.stats.View.AggregationWindow.Cumulative;
89 assertThat(RpcViewConstants.CUMULATIVE).isEqualTo(Cumulative.create()); in testConstants()
/external/v8/src/arm64/
Dinstrument-arm64.h29 Cumulative = 1 // Cumulative counters keep their value after reading. enumerator
Dinstrument-arm64.cc65 {"Instruction", Cumulative},
145 DCHECK(counter->type() == Cumulative); in Update()
/external/vixl/src/aarch64/
Dinstrument-aarch64.h49 Cumulative = 1 // Cumulative counters keep their value after reading. enumerator
Dinstrument-aarch64.cc81 {{"Instruction", Cumulative},
161 VIXL_ASSERT(counter->GetType() == Cumulative); in Update()
/external/opencensus-java/contrib/zpages/src/test/java/io/opencensus/contrib/zpages/
DStatszZPageHandlerTest.java43 import io.opencensus.stats.View.AggregationWindow.Cumulative;
73 Cumulative.create());
/external/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/stats/
DMutableViewData.java434 implements Function<View.AggregationWindow.Cumulative, MutableViewData> {
436 public MutableViewData apply(View.AggregationWindow.Cumulative arg) { in apply()
DMeasureToViewMap.java91 if (view.getWindow() instanceof View.AggregationWindow.Cumulative) { in filterExportedViews()
/external/opencensus-java/exporters/stats/signalfx/src/main/java/io/opencensus/exporter/stats/signalfx/
DSignalFxSessionAdaptor.java95 if (window instanceof View.AggregationWindow.Cumulative) { in getMetricTypeForAggregation()
/external/opencensus-java/exporters/stats/stackdriver/src/main/java/io/opencensus/exporter/stats/stackdriver/
DStackdriverExportUtils.java207 if (!(view.getWindow() instanceof View.AggregationWindow.Cumulative)) { in createMetricDescriptor()
308 if (!(view.getWindow() instanceof View.AggregationWindow.Cumulative)) { in createTimeSeriesList()
/external/opencensus-java/exporters/stats/prometheus/src/main/java/io/opencensus/exporter/stats/prometheus/
DPrometheusExportUtils.java133 if (!(window instanceof View.AggregationWindow.Cumulative)) { in getType()

12