Searched refs:arc (Results 1 - 9 of 9) 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/libs/hwui/
H A DPathCache.cpp114 return compareArcs(shape.arc, rhs.shape.arc);
556 entry.shape.arc.mWidth = width;
557 entry.shape.arc.mHeight = height;
558 entry.shape.arc.mStartAngle = startAngle;
559 entry.shape.arc.mSweepAngle = sweepAngle;
560 entry.shape.arc.mUseCenter = useCenter;
H A DPathCache.h158 } arc; member in union:android::uirenderer::PathDescription::Shape
H A DSkiaCanvas.cpp606 SkRect arc = SkRect::MakeLTRB(left, top, right, bottom); local
607 mCanvas->drawArc(arc, startAngle, sweepAngle, useCenter, paint);
/frameworks/base/packages/Osu/src/com/android/hotspot2/asn1/
H A DAsn1Oid.java64 for (long arc : arcs) {
65 hashcode = hashcode * 31 + (int) arc;
84 for (long arc : mArcs) {
90 sb.append(arc);
/frameworks/base/core/java/android/widget/
H A DGridLayout.java1388 for (Arc arc : arcs) {
1389 Interval span = arc.span;
1408 for (Arc arc : arcs) {
1409 sizes[arc.span.min]++;
1414 // reuse the sizes array to hold the current last elements as we insert each arc
1416 for (Arc arc : arcs) {
1417 int i = arc.span.min;
1418 result[i][sizes[i]++] = arc;
1435 for (Arc arc : arcsByVertex[loc]) {
1436 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/tools/layoutlib/bridge/src/android/graphics/
H A DPath_Delegate.java778 * Append the specified arc to the path as a new contour. If the start of
781 * start of the arc. However, if the path is empty, then we call moveTo()
782 * with the first point of the arc. The sweep angle is tread mod 360.
784 * @param left The left of oval defining shape and size of the arc
785 * @param top The top of oval defining shape and size of the arc
786 * @param right The right of oval defining shape and size of the arc
787 * @param bottom The bottom of oval defining shape and size of the arc
788 * @param startAngle Starting angle (in degrees) where the arc begins
791 * @param forceMoveTo If true, always begin a new contour with the arc
796 Arc2D arc
[all...]
H A DCanvas_Delegate.java656 Arc2D.Float arc = new Arc2D.Float(
664 graphics.fill(arc);
669 graphics.draw(arc);

Completed in 293 milliseconds