Lines Matching defs:uri
40 #include "extract-uri.h"
54 void sp_style_set_ipaint_to_uri(SPStyle *style, SPIPaint *paint, const Inkscape::URI *uri, SPDocument *document);
55 void sp_style_set_ipaint_to_uri_string (SPStyle *style, SPIPaint *paint, const gchar *uri);
1192 gchar *uri = extract_uri( str, &str );
1193 if(uri == NULL || uri[0] == '\0') {
1212 // std::cout << "uri: " << (uri?uri:"null") << std::endl;
1214 sp_style_set_ipaint_to_uri_string ( style, this, uri);
1216 g_free( uri );
1293 const gchar* uri = this->value.href->getURI()->toString();
1294 css << "url(" << uri << ")";
1295 g_free((void *)uri);
1659 gchar *uri = extract_uri(str);
1660 if(uri == NULL || uri[0] == '\0') {
1685 href->attach(Inkscape::URI(uri));
1690 g_free (uri);
1708 gchar *uri = this->href->getURI()->toString();
1709 Glib::ustring retval = name + ":url(" + uri + ");";
1710 g_free(uri);