Home
last modified time | relevance | path

Searched refs:getValue (Results 1 – 2 of 2) sorted by relevance

/lvgl-latest/src/libs/thorvg/
DtvgLottieParser.h61 void getValue(TextDocument& doc);
62 void getValue(PathSet& path);
63 void getValue(Array<Point>& pts);
64 void getValue(ColorStop& color);
65 void getValue(float& val);
66 void getValue(uint8_t& val);
67 void getValue(int8_t& val);
68 void getValue(RGB24& color);
69 bool getValue(Point& pt);
DtvgLottieParser.cpp161 void LottieParser::getValue(TextDocument& doc) in getValue() function in LottieParser
172 else if (KEY_AS("fc")) getValue(doc.color); in getValue()
173 else if (KEY_AS("ps")) getValue(doc.bbox.pos); in getValue()
174 else if (KEY_AS("sz")) getValue(doc.bbox.size); in getValue()
175 else if (KEY_AS("sc")) getValue(doc.stroke.color); in getValue()
183 void LottieParser::getValue(PathSet& path) in getValue() function in LottieParser
195 if (KEY_AS("i")) getValue(ins); in getValue()
196 else if (KEY_AS("o")) getValue(outs); in getValue()
197 else if (KEY_AS("v")) getValue(pts); in getValue()
256 void LottieParser::getValue(ColorStop& color) in getValue() function in LottieParser
[all …]