OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:fillType
(Results
1 - 7
of
7
) sorted by null
/frameworks/base/graphics/tests/graphicstests/src/android/graphics/
PathTest.java
29
final Path.
FillType
defaultFillType = path.getFillType();
30
final Path.
FillType
fillType
= Path.
FillType
.INVERSE_EVEN_ODD;
31
assertFalse(
fillType
.equals(defaultFillType)); // Sanity check for the test itself.
33
path.setFillType(
fillType
);
35
assertEquals(path.getFillType(),
fillType
);
/external/chromium_org/third_party/skia/src/pathops/
SkPathOpsSimplify.cpp
155
SkPath::
FillType
fillType
= path.isInverseFillType() ? SkPath::kInverseEvenOdd_FillType
168
result->setFillType(
fillType
);
192
temp.setFillType(
fillType
);
196
result->setFillType(
fillType
);
SkPathOpsOp.cpp
256
SkPath::
FillType
fillType
= gOutInverse[op][one.isInverseFillType()][two.isInverseFillType()]
278
result->setFillType(
fillType
);
313
temp.setFillType(
fillType
);
317
result->setFillType(
fillType
);
/external/skia/src/pathops/
SkPathOpsSimplify.cpp
155
SkPath::
FillType
fillType
= path.isInverseFillType() ? SkPath::kInverseEvenOdd_FillType
168
result->setFillType(
fillType
);
192
temp.setFillType(
fillType
);
196
result->setFillType(
fillType
);
SkPathOpsOp.cpp
256
SkPath::
FillType
fillType
= gOutInverse[op][one.isInverseFillType()][two.isInverseFillType()]
278
result->setFillType(
fillType
);
313
temp.setFillType(
fillType
);
317
result->setFillType(
fillType
);
/external/skia/tests/
PathOpsExtendedTest.cpp
137
SkPath::
FillType
fillType
= path.getFillType();
138
SkASSERT(
fillType
>= SkPath::kWinding_FillType &&
fillType
<= SkPath::kInverseEvenOdd_FillType);
142
SkDebugf(" %s.setFillType(SkPath::%s);\n", pathName, gFillTypeStr[
fillType
]);
509
SkPath::
FillType
fillType
= useXor ? SkPath::kEvenOdd_FillType : SkPath::kWinding_FillType;
510
path.setFillType(
fillType
);
529
if (
fillType
== SkPath::kEvenOdd_FillType) {
668
void outputProgress(char* ramStr, const char* pathStr, SkPath::
FillType
pathFillType)
[
all
...]
/frameworks/base/graphics/java/android/graphics/
Path.java
83
final
FillType
fillType
= getFillType();
85
setFillType(
fillType
);
182
public enum
FillType
{
203
FillType
(int ni) {
211
static final
FillType
[] sFillTypeArray = {
212
FillType
.WINDING,
213
FillType
.EVEN_ODD,
214
FillType
.INVERSE_WINDING,
215
FillType
.INVERSE_EVEN_OD
[
all
...]
Completed in 533 milliseconds