Lines Matching refs:func
301 bool simpleXmlParseAttributes(const char* buf, unsigned bufLength, simpleXMLAttributeCb func, const… in simpleXmlParseAttributes() argument
306 if (!buf || !func || !tmpBuf) goto error; in simpleXmlParseAttributes()
361 if (!func((void*)data, tmpBuf, tval)) { in simpleXmlParseAttributes()
378 bool simpleXmlParse(const char* buf, unsigned bufLength, bool strip, simpleXMLCb func, const void* … in simpleXmlParse() argument
382 if (!buf || !func) return false; in simpleXmlParse()
436 if (!func((void*)data, type, start, (unsigned int)(end - start))) return false; in simpleXmlParse()
449 … if (!func((void*)data, SimpleXMLType::Ignored, itr, (unsigned int)(p - itr))) return false; in simpleXmlParse()
460 …if (itr != end && !func((void*)data, SimpleXMLType::Data, itr, (unsigned int)(end - itr))) return … in simpleXmlParse()
462 …if (strip && (end < p) && !func((void*)data, SimpleXMLType::Ignored, end, (unsigned int)(p - end))… in simpleXmlParse()
471 bool simpleXmlParseW3CAttribute(const char* buf, unsigned bufLength, simpleXMLAttributeCb func, con… in simpleXmlParseW3CAttribute() argument
521 if (!func((void*)data, key, val)) { in simpleXmlParseW3CAttribute()