Home
last modified time | relevance | path

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

/third_party/node/deps/npm/node_modules/yargs/lib/
Dapply-extends.js38 const isPath = /\.json|\..*rc$/.test(config.extends)
40 if (!isPath) {
51 if (!pathToDefault && !isPath) return config
57 …defaultConfig = isPath ? JSON.parse(fs.readFileSync(pathToDefault, 'utf8')) : require(config.exten…
/third_party/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()
/third_party/skia/experimental/graphite/src/geom/
DShape.h62 bool isPath() const { return fType == Type::kPath; } in isPath() function
109 const SkPath& path() const { SkASSERT(this->isPath()); return fPath; } in path()
157 if (this->isPath() && type != Type::kPath) { in setType()
DShape.cpp63 if (this->isPath()) { in convex()
/third_party/flutter/skia/src/gpu/geometry/
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) {
/third_party/node/deps/npm/lib/config/
Dcore.js364 var isPath = typeList.indexOf(path) !== -1
391 if (isPath) {
/third_party/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.cpp1780 REPORTER_ASSERT(r, aaPathElement.fShape.isPath(), "Expected path element"); in DEF_TEST()
/third_party/skia/src/gpu/v1/
DClipStack.cpp501 } else if (fShape.isPath() && e.fShape.isPath()) { in contains()
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/
DContext_gles_ext_autogen.h228 GLboolean isPath(GLuint path); \
DvalidationES2.cpp80 if (context->isPathGenerated(pathName) && !context->isPath(pathName)) in ValidatePathInstances()
3971 if (context->isPathGenerated(path) && !context->isPath(path)) in ValidateStencilFillPathCHROMIUM()
4005 if (context->isPathGenerated(path) && !context->isPath(path)) in ValidateStencilStrokePathCHROMIUM()
4021 if (context->isPathGenerated(path) && !context->isPath(path)) in ValidateCoverPathCHROMIUM()
DContext.cpp829 GLboolean Context::isPath(GLuint path) in isPath() function in gl::Context
/third_party/flutter/skia/third_party/externals/angle2/src/libGLESv2/
Dentry_points_gles_ext_autogen.cpp2960 returnValue = context->isPath(path); in IsPathCHROMIUM()
20323 returnValue = context->isPath(path); in IsPathCHROMIUMContextANGLE()