Home
last modified time | relevance | path

Searched refs:FullPath (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/core/jni/
Dandroid_graphics_drawable_VectorDrawable.cpp47 VectorDrawable::FullPath* newPath = new VectorDrawable::FullPath(); in createEmptyFullPath()
52 VectorDrawable::FullPath* srcFullPath = in createFullPath()
53 reinterpret_cast<VectorDrawable::FullPath*>(srcFullPathPtr); in createFullPath()
54 VectorDrawable::FullPath* newPath = new VectorDrawable::FullPath(*srcFullPath); in createFullPath()
140 VectorDrawable::FullPath* fullPath = reinterpret_cast<VectorDrawable::FullPath*>(fullPathPtr); in updateFullPathPropertiesAndStrokeStyles()
147 VectorDrawable::FullPath* path = reinterpret_cast<VectorDrawable::FullPath*>(pathPtr); in updateFullPathFillGradient()
153 VectorDrawable::FullPath* path = reinterpret_cast<VectorDrawable::FullPath*>(pathPtr); in updateFullPathStrokeGradient()
160 VectorDrawable::FullPath* fullPath = reinterpret_cast<VectorDrawable::FullPath*>(fullPathPtr); in getFullPathProperties()
278 VectorDrawable::FullPath* fullPath = reinterpret_cast<VectorDrawable::FullPath*>(fullPathPtr); in getStrokeWidth()
283 VectorDrawable::FullPath* fullPath = reinterpret_cast<VectorDrawable::FullPath*>(fullPathPtr); in setStrokeWidth()
[all …]
Dandroid_graphics_drawable_AnimatedVectorDrawable.cpp127 VectorDrawable::FullPath* fullPath = reinterpret_cast<VectorDrawable::FullPath*>(nativePtr); in createPathColorPropertyHolder()
135 VectorDrawable::FullPath* fullPath = reinterpret_cast<VectorDrawable::FullPath*>(nativePtr); in createPathPropertyHolder()
/frameworks/base/libs/hwui/
DPropertyValuesHolder.h104 FullPathColorPropertyValuesHolder(VectorDrawable::FullPath* ptr, int propertyId, in FullPathColorPropertyValuesHolder()
115 VectorDrawable::FullPath* mFullPath;
121 FullPathPropertyValuesHolder(VectorDrawable::FullPath* ptr, int propertyId, float startValue, in FullPathPropertyValuesHolder()
131 VectorDrawable::FullPath* mFullPath;
DVectorDrawable.cpp77 FullPath::FullPath(const FullPath& path) : Path(path) { in FullPath() function in android::uirenderer::VectorDrawable::FullPath
107 const SkPath& FullPath::getUpdatedPath(bool useStagingData, SkPath* tempStagingPath) { in getUpdatedPath()
138 void FullPath::dump() { in dump()
150 void FullPath::draw(SkCanvas* outCanvas, bool useStagingData) { in draw()
194 void FullPath::syncProperties() { in syncProperties()
206 REQUIRE_COMPATIBLE_LAYOUT(FullPath::FullPathProperties::PrimitiveFields);
211 bool FullPath::FullPathProperties::copyProperties(int8_t* outProperties, int length) const { in copyProperties()
224 void FullPath::FullPathProperties::setColorPropertyValue(int propertyId, int32_t value) { in setColorPropertyValue()
238 void FullPath::FullPathProperties::setPropertyValue(int propertyId, float value) { in setPropertyValue()
DVectorDrawable.h203 class ANDROID_API FullPath : public Path {
328 FullPath(const FullPath& path); // for cloning
329 FullPath(const char* path, size_t strLength) : Path(path, strLength) {} in FullPath() function
330 FullPath() : Path() {} in FullPath() function
/frameworks/base/libs/hwui/tests/unit/
DVectorDrawableTests.cpp393 VectorDrawable::FullPath path("m1 1", 4); in TEST()