OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MITER
(Results
1 - 7
of
7
) sorted by null
/cts/tests/tests/graphics/src/android/graphics/cts/
Paint_JoinTest.java
37
assertEquals(Join.
MITER
, Join.valueOf("
MITER
"));
63
assertEquals(Join.
MITER
, actual[0]);
71
assertEquals(Join.
MITER
, p.getStrokeJoin());
PaintTest.java
553
p.setStrokeJoin(Join.
MITER
);
554
assertEquals(Join.
MITER
, p.getStrokeJoin());
[
all
...]
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Paint.java
48
private Join mJoin = Join.
MITER
;
148
* join on a stroked path. The default is
MITER
.
154
MITER
(0),
173
case
MITER
:
621
public void setStrokeMiter(float
miter
) {
622
mStrokeMiter =
miter
;
[
all
...]
/frameworks/base/graphics/java/android/graphics/
Paint.java
50
Join.
MITER
, Join.ROUND, Join.BEVEL
134
* join on a stroked path. The default is
MITER
.
140
MITER
(0),
520
* Return the paint's stroke
miter
value. Used to control the behavior
521
* of
miter
joins when the joins angle is sharp.
523
* @return the paint's
miter
limit, used whenever the paint's style is
529
* Set the paint's stroke
miter
value. This is used to control the behavior
530
* of
miter
joins when the joins angle is sharp. This value must be >= 0.
532
* @param
miter
set the
miter
limit on the paint, used whenever the paint'
[
all
...]
/frameworks/base/awt/com/android/internal/awt/
AndroidGraphics2D.java
641
mP.setStrokeJoin(Paint.Join.
MITER
);
[
all
...]
/prebuilt/sdk/4/
android.jar
/prebuilt/sdk/6/
android.jar
Completed in 299 milliseconds