Lines Matching refs:doc
161 void LottieParser::getValue(TextDocument& doc) in getValue() argument
165 if (KEY_AS("s")) doc.size = getFloat() * 0.01f; in getValue()
166 else if (KEY_AS("f")) doc.name = getStringCopy(); in getValue()
167 else if (KEY_AS("t")) doc.text = getStringCopy(); in getValue()
168 else if (KEY_AS("j")) doc.justify = getInt(); in getValue()
169 else if (KEY_AS("tr")) doc.tracking = getFloat() * 0.1f; in getValue()
170 else if (KEY_AS("lh")) doc.height = getFloat(); in getValue()
171 else if (KEY_AS("ls")) doc.shift = getFloat(); in getValue()
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()
176 else if (KEY_AS("sw")) doc.stroke.width = getFloat(); in getValue()
177 else if (KEY_AS("of")) doc.stroke.render = getBool(); in getValue()
1192 if (KEY_AS("d")) parseProperty<LottieProperty::Type::TextDoc>(text->doc, text); in parseText()
1456 parseSlotProperty<LottieProperty::Type::TextDoc>(static_cast<LottieText*>(obj)->doc); in apply()