Searched refs:end_ptr (Results 1 - 9 of 9) sorted by relevance

/inkscape/src/filters/
H A Dspotlight.cpp78 gchar *end_ptr; local
82 end_ptr = NULL;
85 this->x = g_ascii_strtod(value, &end_ptr);
87 if (end_ptr) {
92 if(!value || !end_ptr) {
104 end_ptr = NULL;
107 this->y = g_ascii_strtod(value, &end_ptr);
109 if (end_ptr) {
114 if(!value || !end_ptr) {
126 end_ptr
[all...]
H A Dpointlight.cpp69 gchar *end_ptr; local
73 end_ptr = NULL;
76 this->x = g_ascii_strtod(value, &end_ptr);
78 if (end_ptr) {
83 if (!value || !end_ptr) {
95 end_ptr = NULL;
98 this->y = g_ascii_strtod(value, &end_ptr);
100 if (end_ptr) {
105 if (!value || !end_ptr) {
117 end_ptr
[all...]
H A Ddistantlight.cpp68 gchar *end_ptr; local
72 end_ptr =NULL;
75 this->azimuth = g_ascii_strtod(value, &end_ptr);
77 if (end_ptr) {
82 if (!value || !end_ptr) {
94 end_ptr =NULL;
97 this->elevation = g_ascii_strtod(value, &end_ptr);
99 if (end_ptr) {
104 if (!value || !end_ptr) {
H A Dspecularlighting.cpp82 gchar *end_ptr = NULL; local
88 end_ptr = NULL;
90 this->surfaceScale = g_ascii_strtod(value, &end_ptr);
91 if (end_ptr) {
99 if (!value || !end_ptr) {
109 end_ptr = NULL;
111 this->specularConstant = g_ascii_strtod(value, &end_ptr);
112 if (end_ptr && this->specularConstant >= 0) {
115 end_ptr = NULL;
119 if (!value || !end_ptr) {
[all...]
H A Ddiffuselighting.cpp79 gchar *end_ptr = NULL; local
85 end_ptr = NULL;
88 this->surfaceScale = g_ascii_strtod(value, &end_ptr);
90 if (end_ptr) {
95 if (!value || !end_ptr) {
107 end_ptr = NULL;
110 this->diffuseConstant = g_ascii_strtod(value, &end_ptr);
112 if (end_ptr && this->diffuseConstant >= 0) {
115 end_ptr = NULL;
120 if (!value || !end_ptr) {
[all...]
H A Dflood.cpp61 gchar *end_ptr = NULL; local
102 read_num = g_ascii_strtod(value, &end_ptr);
104 if (end_ptr != NULL) {
105 if (*end_ptr) {
/inkscape/src/svg/
H A Dsvg-color.h8 guint32 sp_svg_read_color(char const *str, char const **end_ptr, guint32 def);
11 bool sp_svg_read_icc_color( char const *str, char const **end_ptr, SVGICCColor* dest );
H A Dsvg-color.cpp214 static guint32 internal_sp_svg_read_color(gchar const *str, gchar const **end_ptr, guint32 def) argument
247 if (end_ptr) {
248 *end_ptr = str + i;
309 if (end_ptr) {
310 *end_ptr = s;
347 if (end_ptr) {
348 *end_ptr = ptr;
388 if (end_ptr) {
389 *end_ptr = str + i;
396 guint32 sp_svg_read_color(gchar const *str, gchar const **end_ptr, guint3 argument
[all...]
H A Dsvg-affine.cpp72 char *end_ptr; local
79 args[n_args] = g_ascii_strtod (str + idx, &end_ptr);
82 // end_ptr-(str+idx),
86 idx = end_ptr - (char *) str;

Completed in 137 milliseconds