Searched defs:sweep (Results 1 - 7 of 7) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
H A DAnqpCache.java74 public void sweep() { method in class:AnqpCache
76 // Check if it is time to perform the sweep.
97 out.println("Last sweep " + Utils.toHMS(mClock.getElapsedSinceBootMillis() - mLastSweep)
/frameworks/support/compat/java/android/support/v4/graphics/
H A DPathParser.java568 // (rx ry x-axis-rotation large-arc-flag sweep-flag x y)
670 double sweep = (eta1 - eta0);
671 if (isPositiveArc != (sweep >= 0)) {
672 if (sweep > 0) {
673 sweep -= 2 * Math.PI;
675 sweep += 2 * Math.PI;
685 arcToBezier(p, cx, cy, a, b, x0, y0, thetaD, eta0, sweep);
700 * @param sweep The angle (positive or negative) of the sweep of the arc on the ellipse
711 double sweep) {
702 arcToBezier(Path p, double cx, double cy, double a, double b, double e1x, double e1y, double theta, double start, double sweep) argument
[all...]
/frameworks/base/libs/hwui/utils/
H A DVectorDrawableUtils.cpp111 * @param sweep The angle (positive or negative) of the sweep of the arc on the ellipse
122 double sweep) {
127 int numSegments = ceil(fabs(sweep * 4 / M_PI));
137 double anglePerSegment = sweep / numSegments;
229 double sweep = (eta1 - eta0); local
230 if (isPositiveArc != (sweep >= 0)) {
231 if (sweep > 0) {
232 sweep -= 2 * M_PI;
234 sweep
113 arcToBezier(SkPath* p, double cx, double cy, double a, double b, double e1x, double e1y, double theta, double start, double sweep) argument
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/util/
H A DPathParser_Delegate.java653 // (rx ry x-axis-rotation large-arc-flag sweep-flag x y)
754 double sweep = (eta1 - eta0);
755 if (isPositiveArc != (sweep >= 0)) {
756 if (sweep > 0) {
757 sweep -= 2 * Math.PI;
759 sweep += 2 * Math.PI;
770 "cx, cy, a, b, x0, y0, thetaD, eta0, sweep = " + cx + " , "
773 + Math.toDegrees(eta0) + " , " + Math.toDegrees(sweep));
775 arcToBezier(p, cx, cy, a, b, x0, y0, thetaD, eta0, sweep);
791 * @param sweep Th
793 arcToBezier(@onNull Path_Delegate p, double cx, double cy, double a, double b, double e1x, double e1y, double theta, double start, double sweep) argument
[all...]
/frameworks/base/core/java/android/view/
H A DRecordingCanvas.java584 float bottom, float startAngle, float sweep, boolean useCenter, long nativePaint);
583 nDrawArc(long nativeCanvas, float left, float top, float right, float bottom, float startAngle, float sweep, boolean useCenter, long nativePaint) argument
/frameworks/base/graphics/java/android/graphics/
H A DBaseCanvas.java592 float bottom, float startAngle, float sweep, boolean useCenter, long nativePaint);
591 nDrawArc(long nativeCanvas, float left, float top, float right, float bottom, float startAngle, float sweep, boolean useCenter, long nativePaint) argument
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DBaseCanvas_Delegate.java264 final float startAngle, final float sweep,
273 -startAngle, -sweep,
262 nDrawArc(long nativeCanvas, final float left, final float top, final float right, final float bottom, final float startAngle, final float sweep, final boolean useCenter, long paint) argument

Completed in 3419 milliseconds