Home
last modified time | relevance | path

Searched refs:intervals (Results 1 – 12 of 12) sorted by relevance

/frameworks/layoutlib/bridge/src/android/graphics/
DDashPathEffect_Delegate.java76 /*package*/ static long nativeCreate(float intervals[], float phase) { in nativeCreate() argument
77 DashPathEffect_Delegate newDelegate = new DashPathEffect_Delegate(intervals, phase); in nativeCreate()
83 private DashPathEffect_Delegate(float intervals[], float phase) { in DashPathEffect_Delegate() argument
84 mIntervals = new float[intervals.length]; in DashPathEffect_Delegate()
85 System.arraycopy(intervals, 0, mIntervals, 0, intervals.length); in DashPathEffect_Delegate()
/frameworks/base/services/tests/servicestests/src/com/android/server/
DGestureLauncherServiceTest.java224 List<Integer> intervals = intervalCaptor.getAllValues(); in testInterceptPowerKeyDown_intervalInBoundsCameraPowerGestureOffInteractive() local
225 assertEquals((int) INITIAL_EVENT_TIME_MILLIS, intervals.get(0).intValue()); in testInterceptPowerKeyDown_intervalInBoundsCameraPowerGestureOffInteractive()
226 assertEquals((int) interval, intervals.get(1).intValue()); in testInterceptPowerKeyDown_intervalInBoundsCameraPowerGestureOffInteractive()
268 List<Integer> intervals = intervalCaptor.getAllValues(); in testInterceptPowerKeyDown_intervalMidBoundsCameraPowerGestureOffInteractive() local
269 assertEquals((int) INITIAL_EVENT_TIME_MILLIS, intervals.get(0).intValue()); in testInterceptPowerKeyDown_intervalMidBoundsCameraPowerGestureOffInteractive()
270 assertEquals((int) interval, intervals.get(1).intValue()); in testInterceptPowerKeyDown_intervalMidBoundsCameraPowerGestureOffInteractive()
314 List<Integer> intervals = intervalCaptor.getAllValues(); in testInterceptPowerKeyDown_intervalOutOfBoundsCameraPowerGestureOffInteractive() local
315 assertEquals((int) INITIAL_EVENT_TIME_MILLIS, intervals.get(0).intValue()); in testInterceptPowerKeyDown_intervalOutOfBoundsCameraPowerGestureOffInteractive()
316 assertEquals((int) interval, intervals.get(1).intValue()); in testInterceptPowerKeyDown_intervalOutOfBoundsCameraPowerGestureOffInteractive()
362 List<Integer> intervals = intervalCaptor.getAllValues(); in testInterceptPowerKeyDown_intervalInBoundsCameraPowerGestureOnInteractiveSetupComplete() local
[all …]
/frameworks/base/graphics/java/android/graphics/
DDashPathEffect.java34 public DashPathEffect(float intervals[], float phase) { in DashPathEffect() argument
35 if (intervals.length < 2) { in DashPathEffect()
38 native_instance = nativeCreate(intervals, phase); in DashPathEffect()
41 private static native long nativeCreate(float intervals[], float phase); in nativeCreate() argument
/frameworks/base/telephony/java/android/telephony/
DTelephonyHistogram.java248 StringBuffer intervals = new StringBuffer(" Interval Endpoints:");
250 intervals.append(" " + mBucketEndPoints[i]);
252 intervals.append(" Interval counters:");
254 intervals.append(" " + mBucketCounters[i]);
256 return basic + intervals;
/frameworks/base/core/jni/android/graphics/
DPathEffect.cpp42 SkScalar* intervals = autoInterval.ptr(); in Dash_constructor() local
46 SkPathEffect* effect = SkDashPathEffect::Make(intervals, count, phase).release(); in Dash_constructor()
/frameworks/base/core/java/android/app/admin/
DFreezePeriod.java220 static List<FreezePeriod> canonicalizePeriods(List<FreezePeriod> intervals) { in canonicalizePeriods() argument
223 for (FreezePeriod interval : intervals) { in canonicalizePeriods()
/frameworks/base/tools/orientationplot/
DREADME.txt38 intervals for the proposed orientation and accelerometer latency.
52 it 90 degrees. Note that the confidence intervals will all drop to 0 at some
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DREADME.txt61 could change it to perform 4 retries at 5 second intervals:
/frameworks/base/cmds/statsd/src/metrics/
DValueMetricProducer.h193 const std::vector<Interval>& intervals);
DValueMetricProducer.cpp888 const std::vector<Interval>& intervals) { in buildPartialBucket() argument
892 for (const auto& interval : intervals) { in buildPartialBucket()
/frameworks/rs/tests/java_api/Refocus/dataExtraction/
DRefocusTestTimingProcess.txt9 3. You might want to run the script several times with some short intervals (a few seconds) and ave…
/frameworks/native/libs/gui/tests/
DSurface_test.cpp1335 int32_t intervals = big_timestamp / interval; in TEST_F() local
1337 EXPECT_LT(intervals, 0); in TEST_F()