Home
last modified time | relevance | path

Searched refs:isPath (Results 1 – 11 of 11) sorted by relevance

/external/skia/src/gpu/geometry/
DGrShape.h87 bool isPath() const { return this->type() == Type::kPath; } in isPath() function
99 return this->isPath() ? fPath.isInverseFillType() : SkToBool(fInverted); in inverted()
119 if (this->isPath()) { in setInverted()
139 SkPath& path() { SkASSERT(this->isPath()); return fPath; } in path()
140 const SkPath& path() const { SkASSERT(this->isPath()); return fPath; } in path()
175 if (this->isPath()) { in setPath()
236 if (this->isPath() && type != Type::kPath) { in setType()
DGrStyledShape.cpp245 if (fShape.isPath()) { in setInheritedKey()
294 } else if (fShape.isPath() && !fShape.path().isVolatile()) { in originalPathForListeners()
352 if (parent.fShape.isPath()) { in GrStyledShape()
402 if (parent.fShape.isPath()) { in GrStyledShape()
418 } else if (parent.fShape.isPath() && !parent.fShape.path().isVolatile()) { in GrStyledShape()
523 if (!fShape.isPath()) { in asNestedRects()
575 SkASSERT(!fShape->isPath() || fInverted == fShape->path().isInverseFillType()); in ~AutoRestoreInverseness()
603 if (fShape.isPath()) { in simplify()
DGrStyledShape.h205 return !fShape.isPath() || in knownDirection()
212 SkASSERT(!fShape.isPath() || fShape.inverted() == fShape.path().isInverseFillType()); in inverseFilled()
DGrShape.cpp47 uint32_t key = this->isPath() ? static_cast<uint32_t>(fPath.getFillType()) in stateKey()
56 SkASSERT(this->isPath()); in simplifyPath()
419 if (!this->isPath() && !this->isArc()) { in asPath()
/external/jsilver/src/com/google/clearsilver/jsilver/data/
DDefaultDataContext.java98 local.isPath = false; in createLocalVariableByValue()
106 local.isPath = false; in createLocalVariableByValue()
115 local.isPath = true; in createLocalVariableByPath()
192 if (curr.isPath) { in findVariable()
255 boolean isPath; field in DefaultDataContext.LocalVariable
/external/skqp/src/gpu/
DGrShape.h480 bool isPath = Type::kPath == type; variable
481 SkASSERT(!path || isPath);
482 if (wasPath && !isPath) {
484 } else if (!wasPath && isPath) {
490 } else if (isPath && path) {
/external/skqp/src/gpu/gl/
DGrGLTestInterface.cpp193 fFunctions.fIsPath = bind_to_member(this, &GrGLTestInterface::isPath); in GrGLTestInterface()
DGrGLTestInterface.h194 virtual GrGLboolean isPath(GrGLuint path) { return true; } in isPath() function
/external/skia/tests/
DGrStyledShapeTest.cpp31 return fShape.isPath(); in testingOnly_isPath()
35 return fShape.isPath() && !fShape.path().isVolatile(); in testingOnly_isNonVolatilePath()
2371 REPORTER_ASSERT(r, inverseRRect.inverted() && inverseRRect.isPath()); in DEF_TEST()
2372 REPORTER_ASSERT(r, !rrect.inverted() && rrect.isPath()); in DEF_TEST()
DGrClipStackTest.cpp1695 REPORTER_ASSERT(r, aaPathElement.fShape.isPath(), "Expected path element"); in DEF_TEST()
/external/skia/src/gpu/
DGrClipStack.cpp509 } else if (fShape.isPath() && e.fShape.isPath()) { in contains()