Home
last modified time | relevance | path

Searched refs:bufLength (Results 1 – 3 of 3) sorted by relevance

/lvgl-latest/src/libs/thorvg/
DtvgXmlParser.h53 bool simpleXmlParseAttributes(const char* buf, unsigned bufLength, simpleXMLAttributeCb func, const…
54 bool simpleXmlParse(const char* buf, unsigned bufLength, bool strip, simpleXMLCb func, const void* …
55 bool simpleXmlParseW3CAttribute(const char* buf, unsigned bufLength, simpleXMLAttributeCb func, con…
56 const char* simpleXmlParseCSSAttribute(const char* buf, unsigned bufLength, char** tag, char** name…
57 const char* simpleXmlFindAttributesTag(const char* buf, unsigned bufLength);
DtvgXmlParser.cpp301 bool simpleXmlParseAttributes(const char* buf, unsigned bufLength, simpleXMLAttributeCb func, const… in simpleXmlParseAttributes() argument
303 const char *itr = buf, *itrEnd = buf + bufLength; in simpleXmlParseAttributes()
304 char* tmpBuf = (char*)malloc(bufLength + 1); in simpleXmlParseAttributes()
378 bool simpleXmlParse(const char* buf, unsigned bufLength, bool strip, simpleXMLCb func, const void* … in simpleXmlParse() argument
380 const char *itr = buf, *itrEnd = buf + bufLength; in simpleXmlParse()
471 bool simpleXmlParseW3CAttribute(const char* buf, unsigned bufLength, simpleXMLAttributeCb func, con… in simpleXmlParseW3CAttribute() argument
480 end = buf + bufLength; in simpleXmlParseW3CAttribute()
540 const char* simpleXmlParseCSSAttribute(const char* buf, unsigned bufLength, char** tag, char** name… in simpleXmlParseCSSAttribute() argument
547 auto itr = _simpleXmlSkipWhiteSpace(buf, buf + bufLength); in simpleXmlParseCSSAttribute()
548 auto itrEnd = (const char*)memchr(buf, '{', bufLength); in simpleXmlParseCSSAttribute()
[all …]
DtvgSvgLoader.cpp79 typedef bool (*parseAttributes)(const char* buf, unsigned bufLength, simpleXMLAttributeCb func, con…
80 …thod)(SvgLoaderData* loader, SvgNode* parent, const char* buf, unsigned bufLength, parseAttributes…
81 …tyleGradient* (*GradientFactoryMethod)(SvgLoaderData* loader, const char* buf, unsigned bufLength);
1465 …aderData* loader, TVG_UNUSED SvgNode* parent, const char* buf, unsigned bufLength, TVG_UNUSED pars… in _createDefsNode() argument
1476 …NUSED SvgLoaderData* loader, SvgNode* parent, const char* buf, unsigned bufLength, parseAttributes… in _createGNode() argument
1481 func(buf, bufLength, _attrParseGNode, loader); in _createGNode()
1486 …gNode(SvgLoaderData* loader, SvgNode* parent, const char* buf, unsigned bufLength, parseAttributes… in _createSvgNode() argument
1498 func(buf, bufLength, _attrParseSvgNode, loader); in _createSvgNode()
1512 …oader, SvgNode* parent, TVG_UNUSED const char* buf, TVG_UNUSED unsigned bufLength, parseAttributes… in _createMaskNode() argument
1520 func(buf, bufLength, _attrParseMaskNode, loader); in _createMaskNode()
[all …]