Searched defs:eptr (Results 1 - 2 of 2) sorted by relevance

/inkscape/src/
H A Dsp-polyline.cpp40 char * eptr; local
51 eptr = NULL;
64 x = g_ascii_strtod (cptr, &eptr);
66 if (eptr == cptr) {
70 cptr = eptr;
80 y = g_ascii_strtod (cptr, &eptr);
82 if (eptr == cptr) {
86 cptr = eptr;
H A Dviewbox.cpp35 gchar *eptr = const_cast<gchar*>(value); // const-cast necessary because of const-incorrect interface definition of g_ascii_strtod local
37 double x = g_ascii_strtod (eptr, &eptr);
39 while (*eptr && ((*eptr == ',') || (*eptr == ' '))) {
40 eptr++;
43 double y = g_ascii_strtod (eptr, &eptr);
45 while (*eptr
[all...]

Completed in 30 milliseconds