Lines Matching refs:next
23 static unsigned sp_svg_length_read_lff(gchar const *str, SVGLength::Unit *unit, float *val, float *computed, char **next);
264 char *next = (char *) str;
267 while (sp_svg_length_read_lff(next, &unit, &value, &computed, &next)) {
273 while (next && *next &&
274 (*next == ',' || *next == ' ' || *next == '\n' || *next == '\r' || *next == '\t')) {
277 next++;
280 if (!next || !*next) {
291 static unsigned sp_svg_length_read_lff(gchar const *str, SVGLength::Unit *unit, float *val, float *computed, char **next)
294 So after the number, the string does not necessarily have a \0 or a unit, it might also contain a space or comma and then the next number!
318 if (next) {
319 *next = NULL; // no more values
338 if (next) {
339 *next = (char *) e + 1;
355 if (next) {
356 *next = (char *) e;
432 if (next) {
433 *next = (char *) e + 2;