HomeSort by relevance Sort by last modified time
    Searched refs:PathData (Results 1 - 25 of 42) 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,
89 const PathData& from, 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);
android_graphics_drawable_VectorDrawable.cpp 184 PathData data;
268 PathData* pathData = reinterpret_cast<PathData*>(pathDataPtr);
269 path->mutateStagingProperties()->setData(*pathData);
  /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 48 class PathData {
52 PathData();
53 PathData(const PathData& that);
54 ~PathData();
60 CFX_SharedCopyOnWrite<PathData> m_Ref;
cpdf_clippath.cpp 83 PathData* pData = m_Ref.GetPrivateCopy();
100 PathData* pData = m_Ref.GetPrivateCopy();
110 PathData* pData = m_Ref.GetPrivateCopy();
119 CPDF_ClipPath::PathData::PathData() {}
121 CPDF_ClipPath::PathData::PathData(const PathData& that) {
131 CPDF_ClipPath::PathData::~PathData() {}
    [all...]
  /frameworks/base/libs/hwui/
PathParser.h 44 ANDROID_API static void getPathDataFromAsciiString(PathData* outData, ParseResult* result,
46 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, float fraction)
134 class ANDROID_API PathDataPropertyValuesHolder : public PropertyValuesHolderImpl<PathData> {
136 PathDataPropertyValuesHolder(VectorDrawable::Path* ptr, PathData* startValue,
137 PathData* endValue)
145 PathData mPathData;
PropertyValuesHolder.cpp 51 void PathEvaluator::evaluate(PathData* out,
52 const PathData& from, const PathData& to, float fraction) const {
PathParser.cpp 165 void PathParser::getPathDataFromAsciiString(PathData* data, ParseResult* result,
191 result->failureMessage = "Invalid pathData. Failure occurred at position "
208 result->failureMessage = "Invalid pathData. Failure occurred at position "
217 void PathParser::dump(const PathData& data) {
239 PathData pathData;
240 getPathDataFromAsciiString(&pathData, result, pathStr, strLen);
245 if (pathData.verbs.size() == 0) {
247 result->failureMessage = "No verbs found in the string for pathData: ";
251 VectorDrawableUtils::verbsToPath(skPath, pathData);
    [all...]
  /external/libmojo/base/
path_service.cc 112 struct PathData {
119 PathData() : cache_disabled(false) {
132 static LazyInstance<PathData>::Leaky g_path_data = LAZY_INSTANCE_INITIALIZER;
134 static PathData* GetPathData() {
139 bool LockedGetFromCache(int key, const PathData* path_data, FilePath* result) {
153 bool LockedGetFromOverrides(int key, PathData* path_data, FilePath* result) {
172 PathData* path_data = GetPathData();
235 PathData* path_data = GetPathData();
272 PathData* path_data = GetPathData();
292 PathData* path_data = GetPathData()
    [all...]
  /frameworks/base/libs/hwui/tests/unit/
VectorDrawableTests.cpp 31 const PathData pathData;
244 static bool hasSameVerbs(const PathData& from, const PathData& to) {
252 PathData pathData;
254 PathParser::getPathDataFromAsciiString(&pathData, &result, testData.pathString, length);
255 EXPECT_EQ(testData.pathData, pathData);
260 PathData pathData
    [all...]
  /frameworks/base/libs/hwui/tests/microbench/
PathParserBench.cpp 43 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...]
PropertyValuesHolder.java     [all...]
  /external/skia/src/gpu/ops/
GrAALinearizingConvexPathRenderer.cpp 159 PathData{color, viewMatrix, path, strokeWidth, style, join, miterLimit});
242 const PathData& args = fPaths[i];
307 struct PathData {
319 SkSTArray<1, PathData, true> fPaths;
GrDefaultPathRenderer.cpp 129 fPaths.emplace_back(PathData{path, tolerance});
169 const PathData& args = fPaths[i];
231 const PathData& args = fPaths[i];
394 struct PathData {
404 SkSTArray<1, PathData, true> fPaths;
GrAAConvexPathRenderer.cpp 746 fPaths.emplace_back(PathData{viewMatrix, path});
788 const PathData& args = fPaths[i];
846 const PathData& args = fPaths[i];
    [all...]
GrAAHairLinePathRenderer.cpp 707 fPaths.emplace_back(PathData{viewMatrix, path, devClipBounds});
774 struct PathData {
784 SkSTArray<1, PathData, true> fPaths;
819 const PathData& args = fPaths[i];
    [all...]
  /external/skia/src/core/
SkGlyph.h 140 struct PathData {
148 PathData* fPathData;
  /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 139 * <dt><code>android:pathData</code></dt>
189 * <dt><code>android:pathData</code></dt>
210 * android:pathData=&quot;M300,70 l 0,-70 70,70 0,0 -70,70z&quot; /&gt;
    [all...]
  /external/pdfium/xfa/fwl/
cfwl_edit.h 141 void AddSpellCheckObj(CFX_Path& PathData,

Completed in 527 milliseconds

1 2