Home | History | Annotate | Download | only in common

Lines Matching defs:tail

175  * returning tail points to the first character that is not part of
176 * the integer number. If no number was found then tail points to the
178 static GLint strToI (const XML_Char *string, const XML_Char **tail, int base) {
222 *tail = numberFound ? string : start;
233 * returning tail points to the first character that is not part of
234 * the floating point number. If no number was found then tail points
238 static GLfloat strToF (const XML_Char *string, const XML_Char **tail) {
267 *tail = start;
270 *tail = string;
277 *tail = expTail;
302 const XML_Char *tail = NULL;
309 tail = string + 5;
312 tail = string + 4;
319 v->_int = strToI (string, &tail, 0);
322 v->_float = strToF (string, &tail);
326 if (tail == string)
329 if (*tail)
330 tail += strspn (tail, " \f\n\r\t\v");
331 if (*tail)