Home | History | Annotate | Download | only in parser

Lines Matching refs:fCurrElement

41         fXMLWriter(&fStream), fCurrElement(nullptr), fInSVG(false), fSuppressPaint(false) {
153 if (fCurrElement == nullptr) // this signals we should ignore attributes for this element
155 if (fCurrElement->fIsDef == false && fCurrElement->fIsNotDef == false)
158 int attrIndex = findAttribute(fCurrElement, name, nameLen, false);
160 attrIndex = findAttribute(&fCurrElement->fPaintState, name, nameLen, true);
162 fCurrElement->fPaintState.addAttribute(*this, attrIndex, value, len);
166 fCurrElement->f_id.set(value, len);
173 fCurrElement->addAttribute(*this, attrIndex, value, len);
215 fCurrElement = element;
222 SkSVGTypes type = fCurrElement->getType();
225 SkSVGText* textElement = (SkSVGText*) fCurrElement;