Searched defs:fullname (Results 1 - 7 of 7) sorted by relevance
/inkscape/src/display/ |
H A D | nr-filter-image.cpp | 145 gchar *fullname = feImageHref; local 146 if ( !g_file_test( fullname, G_FILE_TEST_EXISTS ) ) { 149 fullname = g_build_filename( document->getBase(), feImageHref, NULL ); 152 if ( !g_file_test( fullname, G_FILE_TEST_EXISTS ) ) { 157 image = Inkscape::Pixbuf::create_from_file(fullname); 158 if( fullname != feImageHref ) g_free( fullname );
|
/inkscape/src/ |
H A D | deptool.cpp | 252 void parseName(const String &fullname, 492 void DepTool::parseName(const String &fullname, argument 497 if (fullname.size() < 2) 500 String::size_type pos = fullname.find_last_of('/'); 501 if (pos != fullname.npos && pos<fullname.size()-1) 503 path = fullname.substr(0, pos); 505 basename = fullname.substr(pos, fullname.size()-pos); 510 basename = fullname; [all...] |
H A D | sp-image.cpp | 550 gchar *fullname = g_filename_from_uri(filename, NULL, NULL); local 551 if (fullname) { 552 inkpb = Inkscape::Pixbuf::create_from_file(fullname); 553 g_free(fullname); 573 gchar *fullname = g_build_filename(docbase, filename, NULL); local 578 if (g_file_test (fullname, G_FILE_TEST_EXISTS) && !g_file_test (fullname, G_FILE_TEST_IS_DIR)) { 579 inkpb = Inkscape::Pixbuf::create_from_file(fullname); 581 g_free (fullname); 585 g_free (fullname); [all...] |
H A D | color-profile.cpp | 333 gchar* fullname = g_uri_unescape_string(fullpath.c_str(), ""); local 335 this->impl->_profHandle = cmsOpenProfileFromFile( fullname, "r" ); 340 DEBUG_MESSAGE( lcmsOne, "cmsOpenProfileFromFile( '%s'...) = %p", fullname, (void*)this->impl->_profHandle ); 343 g_free(fullname);
|
/inkscape/src/ui/dialog/ |
H A D | symbols.cpp | 503 SPDocument* read_vss( gchar* fullname, gchar* filename ) { argument 505 RVNGFileStream input(fullname); 605 gchar *fullname = g_build_filename((*it).c_str(), filename, NULL); local 607 if ( !Inkscape::IO::file_test( fullname, G_FILE_TEST_IS_DIR ) 608 && ( Glib::str_has_suffix(fullname, ".svg") || Glib::str_has_suffix(fullname, ".vss") ) ) { 618 symbol_doc = read_vss( fullname, filename ); 628 symbol_doc = SPDocument::createNewDoc( fullname, FALSE ); 646 g_free( fullname );
|
/inkscape/src/ui/ |
H A D | interface.cpp | 2076 Glib::ustring fullname; local 2112 fullname = name; 2114 fullname = Glib::build_filename(SP_ACTIVE_DOCUMENT->getBase(), name); 2116 fullname = Glib::build_filename(Glib::get_current_dir(), name); 2120 cmdline.append(fullname.c_str());
|
/inkscape/ |
H A D | buildtool.cpp | 5866 void parseName(const String &fullname, 5975 void DepTool::parseName(const String &fullname, argument 5980 if (fullname.size() < 2) 5983 std::size_t pos = fullname.find_last_of('/'); 5984 if (pos != fullname.npos && pos<fullname.size()-1) 5986 path = fullname.substr(0, pos); 5988 basename = fullname.substr(pos, fullname.size()-pos); 5993 basename = fullname; [all...] |
Completed in 2167 milliseconds