Lines Matching defs:nplurals
109 const char *nplurals;
112 nplurals = strstr (nullentry, "nplurals=");
113 if (plural == NULL || nplurals == NULL)
122 nplurals += 9;
123 while (*nplurals != '\0' && isspace ((unsigned char) *nplurals))
124 ++nplurals;
125 if (!(*nplurals >= '0' && *nplurals <= '9'))
128 n = strtoul (nplurals, &endp, 10);
130 for (endp = nplurals, n = 0; *endp >= '0' && *endp <= '9'; endp++)
133 if (nplurals == endp)