HomeSort by relevance Sort by last modified time
    Searched refs:PointImpl (Results 1 - 4 of 4) sorted by null

  /external/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/metrics/
DoubleGaugeImpl.java 47 private volatile Map<List<LabelValue>, PointImpl> registeredPoints =
48 Collections.<List<LabelValue>, PointImpl>emptyMap();
67 PointImpl existingPoint = registeredPoints.get(labelValues);
81 PointImpl existingPoint = registeredPoints.get(defaultLabelValues);
92 Map<List<LabelValue>, PointImpl> registeredPointsCopy =
93 new LinkedHashMap<List<LabelValue>, PointImpl>(registeredPoints);
103 registeredPoints = Collections.<List<LabelValue>, PointImpl>emptyMap();
107 PointImpl existingPoint = registeredPoints.get(labelValues);
117 PointImpl newPoint = new PointImpl(labelValues)
    [all...]
LongGaugeImpl.java 47 private volatile Map<List<LabelValue>, PointImpl> registeredPoints =
48 Collections.<List<LabelValue>, PointImpl>emptyMap();
67 PointImpl existingPoint = registeredPoints.get(labelValues);
81 PointImpl existingPoint = registeredPoints.get(defaultLabelValues);
92 Map<List<LabelValue>, PointImpl> registeredPointsCopy =
93 new LinkedHashMap<List<LabelValue>, PointImpl>(registeredPoints);
103 registeredPoints = Collections.<List<LabelValue>, PointImpl>emptyMap();
107 PointImpl existingPoint = registeredPoints.get(labelValues);
117 PointImpl newPoint = new PointImpl(labelValues)
    [all...]
  /external/opencensus-java/impl_core/src/test/java/io/opencensus/implcore/metrics/
DoubleGaugeImplTest.java 217 assertThat(doublePoint).isInstanceOf(DoubleGaugeImpl.PointImpl.class);
LongGaugeImplTest.java 212 assertThat(longPoint).isInstanceOf(LongGaugeImpl.PointImpl.class);

Completed in 248 milliseconds