Home
last modified time | relevance | path

Searched refs:intervals (Results 1 – 14 of 14) 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.java247 StringBuffer intervals = new StringBuffer(" Interval Endpoints:");
249 intervals.append(" " + mBucketEndPoints[i]);
251 intervals.append(" Interval counters:");
253 intervals.append(" " + mBucketCounters[i]);
255 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/
DREADME.txt61 could change it to perform 4 retries at 5 second intervals:
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/objectivec/Tests/
DGPBWellKnownTypesTest.m53 // equality requires the time intervals to be exactly the same, and the
/frameworks/opt/gamesdk/src/swappy/
DSwappy.cpp465 const int intervals = (mPipelineMode) ? 2 : 1; in startFrame() local
469 mPresentationTime = currentFrameTimestamp + (mAutoSwapInterval * intervals) * mRefreshPeriod; in startFrame()
/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/base/cmds/statsd/src/metrics/
DValueMetricProducer.h195 const std::vector<Interval>& intervals);
DValueMetricProducer.cpp893 const std::vector<Interval>& intervals) { in buildPartialBucket() argument
897 for (const auto& interval : intervals) { in buildPartialBucket()
/frameworks/native/libs/gui/tests/
DSurface_test.cpp1209 int32_t intervals = big_timestamp / interval; in TEST_F() local
1211 EXPECT_LT(intervals, 0); in TEST_F()