Searched refs:jpath (Results 1 – 8 of 8) sorted by relevance
/third_party/skia/modules/skottie/src/ |
D | Path.cpp | 21 PathAdapter(const skjson::Value& jpath, const AnimationBuilder& abuilder) in PathAdapter() argument 23 this->bind(abuilder, jpath, fShape); in PathAdapter() 46 sk_sp<sksg::Path> AnimationBuilder::attachPath(const skjson::Value& jpath) const { in attachPath() 47 return this->attachDiscardableAdapter<PathAdapter>(jpath, *this); in attachPath()
|
/third_party/skia/modules/skottie/src/text/ |
D | TextAdapter.cpp | 246 const auto attach_path = [&](const skjson::ObjectValue* jpath) -> std::unique_ptr<PathInfo> { in Make() argument 247 if (!jpath) { in Make() 253 ParseDefault<size_t>((*jpath)["m"], std::numeric_limits<size_t>::max()); in Make() 266 adapter->bind(*abuilder, (*jpath)["f"], &pinfo->fPathFMargin); in Make() 267 adapter->bind(*abuilder, (*jpath)["l"], &pinfo->fPathLMargin); in Make() 268 adapter->bind(*abuilder, (*jpath)["p"], &pinfo->fPathPerpendicular); in Make() 269 adapter->bind(*abuilder, (*jpath)["r"], &pinfo->fPathReverse); in Make() 275 skottie::Parse((*jpath)["p"], &pinfo->fPathPerpendicular); in Make() 276 skottie::Parse((*jpath)["r"], &pinfo->fPathReverse); in Make()
|
/third_party/skia/modules/skottie/src/layers/ |
D | TextLayer.cpp | 216 const skjson::StringValue* jpath = (*jfont)["fPath"]; in parseFonts() local 229 jpath ? SkString( jpath->begin(), jpath->size()) : SkString(), in parseFonts()
|
/third_party/flutter/skia/modules/skottie/src/layers/ |
D | TextLayer.cpp | 131 const skjson::StringValue* jpath = (*jfont)["fPath"]; in parseFonts() local 149 jpath ? jpath->begin() in parseFonts()
|
D | ShapeLayer.cpp | 36 sk_sp<sksg::GeometryNode> AttachPathGeometry(const skjson::ObjectValue& jpath, in AttachPathGeometry() argument 38 return abuilder->attachPath(jpath["ks"]); in AttachPathGeometry()
|
/third_party/ejdb/cmake/Modules/ |
D | FindJNI.cmake | 296 get_filename_component(jpath "${JAVA_PROG}" PATH) 298 if(EXISTS ${jpath}/${JAVA_INC_PATH}) 299 list(APPEND JAVA_AWT_INCLUDE_DIRECTORIES "${jpath}/${JAVA_INC_PATH}") 306 if(EXISTS ${jpath}/${JAVA_LIB_PATH}) 307 list(APPEND JAVA_AWT_LIBRARY_DIRECTORIES "${jpath}/${JAVA_LIB_PATH}")
|
/third_party/skia/modules/skottie/src/layers/shapelayer/ |
D | ShapeLayer.cpp | 146 sk_sp<sksg::GeometryNode> ShapeBuilder::AttachPathGeometry(const skjson::ObjectValue& jpath, in AttachPathGeometry() argument 148 return abuilder->attachPath(jpath["ks"]); in AttachPathGeometry()
|
/third_party/flutter/skia/modules/skottie/src/ |
D | Skottie.cpp | 243 sk_sp<sksg::Path> AnimationBuilder::attachPath(const skjson::Value& jpath) const { in attachPath() 245 return this->bindProperty<ShapeValue>(jpath, in attachPath()
|