Home
last modified time | relevance | path

Searched refs:toPoint (Results 1 – 4 of 4) sorted by relevance

/external/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/stats/
DMutableAggregation.java69 abstract Point toPoint(Timestamp timestamp); in toPoint() method in MutableAggregation
104 Point toPoint(Timestamp timestamp) { in toPoint() method in MutableAggregation.MutableSumDouble
135 Point toPoint(Timestamp timestamp) { in toPoint() method in MutableAggregation.MutableSumLong
173 Point toPoint(Timestamp timestamp) { in toPoint() method in MutableAggregation.MutableCount
225 Point toPoint(Timestamp timestamp) { in toPoint() method in MutableAggregation.MutableMean
408 Point toPoint(Timestamp timestamp) { in toPoint() method in MutableAggregation.MutableDistribution
521 Point toPoint(Timestamp timestamp) { in toPoint() method in MutableAggregation.MutableLastValueDouble
552 Point toPoint(Timestamp timestamp) { in toPoint() method in MutableAggregation.MutableLastValueLong
DMutableViewData.java141 Point point = entry.getValue().toPoint(now); in toMetric()
/external/opencensus-java/impl_core/src/test/java/io/opencensus/implcore/stats/
DMutableAggregationTest.java293 assertThat(MutableSumDouble.create().toPoint(TIMESTAMP)) in mutableAggregation_ToPoint()
295 assertThat(MutableSumLong.create().toPoint(TIMESTAMP)) in mutableAggregation_ToPoint()
297 assertThat(MutableCount.create().toPoint(TIMESTAMP)) in mutableAggregation_ToPoint()
299 assertThat(MutableMean.create().toPoint(TIMESTAMP)) in mutableAggregation_ToPoint()
304 assertThat(MutableDistribution.create(BUCKET_BOUNDARIES).toPoint(TIMESTAMP)) in mutableAggregation_ToPoint()
/external/skia/modules/particles/src/
DSkParticleAffector.cpp115 SkVector toPoint = fPoint - ps[i].fPose.fPosition; in REFLECTED() local
116 SkScalar lenSquare = toPoint.dot(toPoint); in REFLECTED()
117 toPoint.normalize(); in REFLECTED()
119 toPoint * (fConstant + (fInvSquare / lenSquare)) * params.fDeltaTime; in REFLECTED()