HomeSort by relevance Sort by last modified time
    Searched refs:PathData (Results 1 - 25 of 46) sorted by null

1 2

  /frameworks/base/libs/hwui/utils/
VectorDrawableUtils.h 31 ANDROID_API static bool canMorph(const PathData& morphFrom, const PathData& morphTo);
32 ANDROID_API static bool interpolatePathData(PathData* outData, const PathData& morphFrom,
33 const PathData& morphTo, float fraction);
34 ANDROID_API static void verbsToPath(SkPath* outPath, const PathData& data);
35 static void interpolatePaths(PathData* outPathData, const PathData& from, const PathData& to,
VectorDrawableUtils.cpp 39 bool VectorDrawableUtils::canMorph(const PathData& morphFrom, const PathData& morphTo) {
53 bool VectorDrawableUtils::interpolatePathData(PathData* outData, const PathData& morphFrom,
54 const PathData& morphTo, float fraction) {
65 void VectorDrawableUtils::verbsToPath(SkPath* outPath, const PathData& data) {
88 void VectorDrawableUtils::interpolatePaths(PathData* outData, const PathData& from,
89 const PathData& to, float fraction) {
  /frameworks/base/core/jni/
android_util_PathParser.cpp 45 PathData* pathData = new PathData();
46 return reinterpret_cast<jlong>(pathData);
50 PathData* pathData = reinterpret_cast<PathData*>(pathDataPtr);
51 PathData* newPathData = new PathData(*pathData);
    [all...]
android_graphics_drawable_AnimatedVectorDrawable.cpp 118 PathData* startData = reinterpret_cast<PathData*>(startValuePtr);
119 PathData* endData = reinterpret_cast<PathData*>(endValuePtr);
  /frameworks/base/core/java/android/util/
PathParser.java 41 * Interpret PathData as path commands and insert the commands to the given path.
43 * @param data The source PathData to be converted.
46 public static void createPathFromPathData(Path outPath, PathData data) {
51 * @param pathDataFrom The source path represented in PathData
52 * @param pathDataTo The target path represented in PathData
55 public static boolean canMorph(PathData pathDataFrom, PathData pathDataTo) {
60 * PathData class is a wrapper around the native PathData object, which contains
62 * associated with each verb stored in PathData. This data can then be used t
    [all...]
  /external/pdfium/core/fpdfapi/page/
cpdf_clippath.h 47 class PathData : public Retainable {
51 PathData();
52 PathData(const PathData& that);
53 ~PathData() override;
59 SharedCopyOnWrite<PathData> m_Ref;
cpdf_clippath.cpp 79 PathData* pData = m_Ref.GetPrivateCopy();
96 PathData* pData = m_Ref.GetPrivateCopy();
106 PathData* pData = m_Ref.GetPrivateCopy();
115 CPDF_ClipPath::PathData::PathData() {}
117 CPDF_ClipPath::PathData::PathData(const PathData& that) {
127 CPDF_ClipPath::PathData::~PathData() {}
    [all...]
  /frameworks/base/libs/hwui/
PathParser.h 43 ANDROID_API static void getPathDataFromAsciiString(PathData* outData, ParseResult* result,
45 static void dump(const PathData& data);
PropertyValuesHolder.h 58 class ANDROID_API PathEvaluator : public Evaluator<PathData> {
59 virtual void evaluate(PathData* out, const PathData& from, const PathData& to,
135 class ANDROID_API PathDataPropertyValuesHolder : public PropertyValuesHolderImpl<PathData> {
137 PathDataPropertyValuesHolder(VectorDrawable::Path* ptr, PathData* startValue,
138 PathData* endValue)
146 PathData mPathData;
PropertyValuesHolder.cpp 49 void PathEvaluator::evaluate(PathData* out, const PathData& from, const PathData& to,
PathParser.cpp 218 void PathParser::getPathDataFromAsciiString(PathData* data, ParseResult* result,
269 void PathParser::dump(const PathData& data) {
292 PathData pathData;
293 getPathDataFromAsciiString(&pathData, result, pathStr, strLen);
298 if (pathData.verbs.size() == 0) {
300 result->failureMessage = "No verbs found in the string for pathData: ";
304 VectorDrawableUtils::verbsToPath(skPath, pathData);
  /external/libmojo/base/
path_service.cc 111 struct PathData {
118 PathData() : cache_disabled(false) {
131 static PathData* GetPathData() {
132 static auto* path_data = new PathData();
137 bool LockedGetFromCache(int key, const PathData* path_data, FilePath* result) {
151 bool LockedGetFromOverrides(int key, PathData* path_data, FilePath* result) {
170 PathData* path_data = GetPathData();
233 PathData* path_data = GetPathData();
270 PathData* path_data = GetPathData();
290 PathData* path_data = GetPathData()
    [all...]
  /frameworks/base/libs/hwui/tests/unit/
VectorDrawableTests.cpp 31 const PathData pathData;
249 static bool hasSameVerbs(const PathData& from, const PathData& to) {
257 PathData pathData;
259 PathParser::getPathDataFromAsciiString(&pathData, &result, testData.pathString, length);
260 EXPECT_EQ(testData.pathData, pathData);
265 PathData pathData
    [all...]
  /frameworks/base/libs/hwui/tests/microbench/
PathParserBench.cpp 45 PathData outData;
  /frameworks/base/core/java/android/animation/
AnimatorInflater.java 258 private static class PathDataEvaluator implements TypeEvaluator<PathParser.PathData> {
259 private final PathParser.PathData mPathData = new PathParser.PathData();
262 public PathParser.PathData evaluate(float fraction, PathParser.PathData startPathData,
263 PathParser.PathData endPathData) {
266 + " two incompatible pathData");
298 PathParser.PathData nodesFrom = fromString == null
299 ? null : new PathParser.PathData(fromString);
300 PathParser.PathData nodesTo = toString == nul
    [all...]
  /external/skia/src/gpu/ops/
GrAALinearizingConvexPathRenderer.cpp 162 PathData{color, viewMatrix, path, strokeWidth, style, join, miterLimit});
265 const PathData& args = fPaths[i];
317 struct PathData {
327 SkSTArray<1, PathData, true> fPaths;
GrDefaultPathRenderer.cpp 371 fPaths.emplace_back(PathData{path, tolerance});
406 const PathData& args = fPaths[i];
423 const PathData& args = fPaths[i];
460 struct PathData {
465 SkSTArray<1, PathData, true> fPaths;
GrAAConvexPathRenderer.cpp 749 fPaths.emplace_back(PathData{viewMatrix, path, color});
802 const PathData& args = fPaths[i];
859 const PathData& args = fPaths[i];
    [all...]
  /external/skqp/src/gpu/ops/
GrAALinearizingConvexPathRenderer.cpp 162 PathData{color, viewMatrix, path, strokeWidth, style, join, miterLimit});
265 const PathData& args = fPaths[i];
318 struct PathData {
328 SkSTArray<1, PathData, true> fPaths;
GrDefaultPathRenderer.cpp 371 fPaths.emplace_back(PathData{path, tolerance});
406 const PathData& args = fPaths[i];
423 const PathData& args = fPaths[i];
460 struct PathData {
465 SkSTArray<1, PathData, true> fPaths;
  /external/skia/src/core/
SkGlyph.h 140 struct PathData {
148 PathData* fPathData;
  /external/skqp/src/core/
SkGlyph.h 140 struct PathData {
148 PathData* fPathData;
  /external/pdfium/xfa/fwl/
cfwl_edit.h 137 void AddSpellCheckObj(CXFA_GEPath& PathData,
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplustypes.h 433 typedef struct PathData {
441 PathData(): Count(0), Points(NULL), Types(NULL) {}
442 ~PathData() {
450 } PathData;
  /frameworks/base/graphics/java/android/graphics/drawable/
VectorDrawable.java 140 * <dt><code>android:pathData</code></dt>
190 * <dt><code>android:pathData</code></dt>
211 * android:pathData=&quot;M300,70 l 0,-70 70,70 0,0 -70,70z&quot; /&gt;
    [all...]

Completed in 1342 milliseconds

1 2