Home | History | Annotate | Download | only in cts

Lines Matching defs:edgeType

21 import android.graphics.Canvas.EdgeType;
35 assertEquals(EdgeType.BW, EdgeType.valueOf("BW"));
36 assertEquals(EdgeType.AA, EdgeType.valueOf("AA"));
41 EdgeType[] edgeType = EdgeType.values();
43 assertEquals(2, edgeType.length);
44 assertEquals(EdgeType.BW, edgeType[0]);
45 assertEquals(EdgeType.AA, edgeType[1]);
49 //EdgeType is used as a argument here for all the methods that use it
50 c.quickReject(new Path(), EdgeType.AA);
51 c.quickReject(new Path(), EdgeType.BW);
52 c.quickReject(new RectF(), EdgeType.AA);
53 c.quickReject(new RectF(), EdgeType.BW);
54 c.quickReject(10, 100, 100, 10, EdgeType.AA);
55 c.quickReject(10, 100, 100, 10, EdgeType.BW);