Home
last modified time | relevance | path

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

/frameworks/base/libs/hwui/jni/
Dandroid_graphics_drawable_VectorDrawable.cpp45 VectorDrawable::FullPath* newPath = new VectorDrawable::FullPath(); in createEmptyFullPath()
50 VectorDrawable::FullPath* srcFullPath = in createFullPath()
51 reinterpret_cast<VectorDrawable::FullPath*>(srcFullPathPtr); in createFullPath()
52 VectorDrawable::FullPath* newPath = new VectorDrawable::FullPath(*srcFullPath); in createFullPath()
139 VectorDrawable::FullPath* fullPath = reinterpret_cast<VectorDrawable::FullPath*>(fullPathPtr); in updateFullPathPropertiesAndStrokeStyles()
146 VectorDrawable::FullPath* path = reinterpret_cast<VectorDrawable::FullPath*>(pathPtr); in updateFullPathFillGradient()
152 VectorDrawable::FullPath* path = reinterpret_cast<VectorDrawable::FullPath*>(pathPtr); in updateFullPathStrokeGradient()
159 VectorDrawable::FullPath* fullPath = reinterpret_cast<VectorDrawable::FullPath*>(fullPathPtr); in getFullPathProperties()
277 VectorDrawable::FullPath* fullPath = reinterpret_cast<VectorDrawable::FullPath*>(fullPathPtr); in getStrokeWidth()
282 VectorDrawable::FullPath* fullPath = reinterpret_cast<VectorDrawable::FullPath*>(fullPathPtr); in setStrokeWidth()
[all …]
Dandroid_graphics_drawable_AnimatedVectorDrawable.cpp124 VectorDrawable::FullPath* fullPath = reinterpret_cast<VectorDrawable::FullPath*>(nativePtr); in createPathColorPropertyHolder()
132 VectorDrawable::FullPath* fullPath = reinterpret_cast<VectorDrawable::FullPath*>(nativePtr); in createPathPropertyHolder()
/frameworks/base/libs/hwui/
DVectorDrawable.cpp80 FullPath::FullPath(const FullPath& path) : Path(path) { in FullPath() function in android::uirenderer::VectorDrawable::FullPath
110 const SkPath& FullPath::getUpdatedPath(bool useStagingData, SkPath* tempStagingPath) { in getUpdatedPath()
140 void FullPath::dump() { in dump()
152 void FullPath::draw(SkCanvas* outCanvas, bool useStagingData) { in draw()
196 void FullPath::syncProperties() { in syncProperties()
208 REQUIRE_COMPATIBLE_LAYOUT(FullPath::FullPathProperties::PrimitiveFields);
213 bool FullPath::FullPathProperties::copyProperties(int8_t* outProperties, int length) const { in copyProperties()
226 void FullPath::FullPathProperties::setColorPropertyValue(int propertyId, int32_t value) { in setColorPropertyValue()
240 void FullPath::FullPathProperties::setPropertyValue(int propertyId, float value) { in setPropertyValue()
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.h204 class FullPath : public Path {
329 FullPath(const FullPath& path); // for cloning
330 FullPath(const char* path, size_t strLength) : Path(path, strLength) {} in FullPath() function
331 FullPath() : Path() {} in FullPath() function
/frameworks/base/libs/hwui/tests/unit/
DVectorDrawableTests.cpp399 VectorDrawable::FullPath path("m1 1", 4); in TEST()