Searched refs:arc (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/core/java/android/hardware/hdmi/
H A DHdmiPortInfo.java51 * @param arc {@code true} if audio return channel is supported on the port
53 public HdmiPortInfo(int id, int type, int address, boolean cec, boolean mhl, boolean arc) { argument
58 mArcSupported = arc;
137 boolean arc = (source.readInt() == 1);
139 return new HdmiPortInfo(id, type, address, cec, mhl, arc);
171 s.append("arc: ").append(mArcSupported).append(", ");
/frameworks/base/core/java/android/widget/
H A DGridLayout.java1406 for (Arc arc : arcs) {
1407 Interval span = arc.span;
1426 for (Arc arc : arcs) {
1427 sizes[arc.span.min]++;
1432 // reuse the sizes array to hold the current last elements as we insert each arc
1434 for (Arc arc : arcs) {
1435 int i = arc.span.min;
1436 result[i][sizes[i]++] = arc;
1453 for (Arc arc : arcsByVertex[loc]) {
1454 walk(arc
[all...]
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java1283 for (Arc arc : arcs) {
1284 Interval span = arc.span;
1303 for (Arc arc : arcs) {
1304 sizes[arc.span.min]++;
1309 // reuse the sizes array to hold the current last elements as we insert each arc
1311 for (Arc arc : arcs) {
1312 int i = arc.span.min;
1313 result[i][sizes[i]++] = arc;
1330 for (Arc arc : arcsByVertex[loc]) {
1331 walk(arc
[all...]
/frameworks/base/libs/hwui/
H A DPathCache.cpp599 entry.shape.arc.mWidth = width;
600 entry.shape.arc.mHeight = height;
601 entry.shape.arc.mStartAngle = startAngle;
602 entry.shape.arc.mSweepAngle = sweepAngle;
603 entry.shape.arc.mUseCenter = useCenter;
H A DPathCache.h146 } arc; member in union:android::uirenderer::PathDescription::Shape
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPath_Delegate.java712 * Append the specified arc to the path as a new contour. If the start of
715 * start of the arc. However, if the path is empty, then we call moveTo()
716 * with the first point of the arc. The sweep angle is tread mod 360.
718 * @param left The left of oval defining shape and size of the arc
719 * @param top The top of oval defining shape and size of the arc
720 * @param right The right of oval defining shape and size of the arc
721 * @param bottom The bottom of oval defining shape and size of the arc
722 * @param startAngle Starting angle (in degrees) where the arc begins
725 * @param forceMoveTo If true, always begin a new contour with the arc
730 Arc2D arc
[all...]
H A DCanvas_Delegate.java642 Arc2D.Float arc = new Arc2D.Float(
650 graphics.fill(arc);
655 graphics.draw(arc);
/frameworks/base/core/jni/android/graphics/
H A DSkiaCanvas.cpp537 SkRect arc = SkRect::MakeLTRB(left, top, right, bottom); local
538 mCanvas->drawArc(arc, startAngle, sweepAngle, useCenter, paint);

Completed in 232 milliseconds