Searched refs:cend_ptr (Results 1 - 3 of 3) sorted by relevance

/inkscape/src/filters/
H A Dflood.cpp60 gchar const *cend_ptr = NULL; local
69 cend_ptr = NULL;
70 read_color = sp_svg_read_color(value, &cend_ptr, 0xffffffff);
72 if (cend_ptr && read_color != this->color){
77 if (cend_ptr){
78 while (g_ascii_isspace(*cend_ptr)) {
79 ++cend_ptr;
82 if (strneq(cend_ptr, "icc-color(", 10)) {
87 if ( ! sp_svg_read_icc_color( cend_ptr, this->icc ) ) {
H A Ddiffuselighting.cpp78 gchar const *cend_ptr = NULL; local
141 cend_ptr = NULL;
142 this->lighting_color = sp_svg_read_color(value, &cend_ptr, 0xffffffff);
145 if (cend_ptr) {
146 while (g_ascii_isspace(*cend_ptr)) {
147 ++cend_ptr;
150 if (strneq(cend_ptr, "icc-color(", 10)) {
155 if ( ! sp_svg_read_icc_color( cend_ptr, this->icc ) ) {
H A Dspecularlighting.cpp81 gchar const *cend_ptr = NULL; local
158 cend_ptr = NULL;
159 this->lighting_color = sp_svg_read_color(value, &cend_ptr, 0xffffffff);
161 if (cend_ptr) {
162 while (g_ascii_isspace(*cend_ptr)) {
163 ++cend_ptr;
165 if (strneq(cend_ptr, "icc-color(", 10)) {
167 if ( ! sp_svg_read_icc_color( cend_ptr, this->icc ) ) {

Completed in 15 milliseconds