Lines Matching refs:next
476 char* next; in simpleXmlParseW3CAttribute() local
488 next = (char*)strchr(buf, ';'); in simpleXmlParseW3CAttribute()
490 next = nullptr; in simpleXmlParseW3CAttribute()
493 if (next >= end) next = nullptr; in simpleXmlParseW3CAttribute()
498 if (sep != nullptr && next == nullptr) { in simpleXmlParseW3CAttribute()
504 } else if (sep != nullptr && sep < next) { in simpleXmlParseW3CAttribute()
508 memcpy(val, sep + 1, next - sep - 1); in simpleXmlParseW3CAttribute()
509 val[next - sep - 1] = '\0'; in simpleXmlParseW3CAttribute()
510 } else if (next) { in simpleXmlParseW3CAttribute()
511 memcpy(key, buf, next - buf); in simpleXmlParseW3CAttribute()
512 key[next - buf] = '\0'; in simpleXmlParseW3CAttribute()
528 if (!next) break; in simpleXmlParseW3CAttribute()
529 buf = next + 1; in simpleXmlParseW3CAttribute()