Lines Matching defs:args
225 static double get_x_coord(const char *args)
230 if (args == NULL) {
234 while (*args && !apr_isdigit(*args) && *args != ',') {
235 args++; /* jump to the first digit, but not past
239 x_coord = strtod(args, &endptr);
241 if (endptr > args) { /* if a conversion was made */
246 or if no args was given */
249 static double get_y_coord(const char *args)
255 if (args == NULL) {
259 start_of_y = ap_strchr_c(args, ','); /* the comma */
279 no comma was found in args */
629 testpoint[X] = get_x_coord(r->args);
630 testpoint[Y] = get_y_coord(r->args);