Searched defs:sources (Results 1 - 6 of 6) sorted by relevance

/inkscape/src/
H A Dshortcuts.cpp213 std::list<gchar *> sources; local
214 sources.push_back( Inkscape::Application::profile_path("keys") );
215 sources.push_back( g_strdup(INKSCAPE_KEYSDIR) );
218 while (!sources.empty()) {
219 gchar *dirname = sources.front();
284 sources.pop_front();
H A Dfile.cpp181 std::list<gchar *> sources; local
182 sources.push_back( Inkscape::Application::profile_path("templates") ); // first try user's local dir
183 sources.push_back( g_strdup(INKSCAPE_TEMPLATESDIR) ); // then the system templates dir
192 for (std::list<gchar *>::iterator it = sources.begin(); (it != sources.end()) && !foundTemplate; ++it) {
211 for (std::list<gchar *>::iterator it = sources.begin(); it != sources.end(); ++it) {
H A Dcolor-profile.cpp718 std::vector<Glib::ustring> sources; local
722 sources.push_back(path);
728 sources.push_back(path);
740 sources.push_back(it->c_str());
747 sources.push_back(path);
763 sources.push_back(utf8Path);
769 return sources;
815 std::list<Glib::ustring> sources; local
818 sources.insert(sources
[all...]
/inkscape/src/ui/dialog/
H A Dinkscape-preferences.cpp1008 std::vector<Glib::ustring> sources = ColorProfile::getBaseProfileDirs(); local
1009 for ( std::vector<Glib::ustring>::const_iterator it = sources.begin(); it != sources.end(); ++it ) {
H A Dswatches.cpp529 std::list<gchar *> sources; local
530 sources.push_back( Inkscape::Application::profile_path("palettes") );
531 sources.push_back( g_strdup(INKSCAPE_PALETTESDIR) );
532 sources.push_back( g_strdup(CREATE_PALETTESDIR) );
535 while (!sources.empty()) {
536 gchar *dirname = sources.front();
566 sources.pop_front();
/inkscape/src/widgets/
H A Dicon.cpp440 std::list<gchar *> &sources = icons_svg_paths(); local
446 for (std::list<gchar*>::iterator i = sources.begin(); i != sources.end(); ++i) {
1280 static std::list<gchar *> sources; local
1285 sources.push_back(g_build_filename(userdir,"icons.svg", NULL));
1286 sources.push_back(g_build_filename(INKSCAPE_PIXMAPDIR, "icons.svg", NULL));
1290 return sources;
1298 std::list<gchar *> &sources = icons_svg_paths(); local
1302 for (std::list<gchar*>::iterator i = sources.begin(); (i != sources
[all...]

Completed in 32 milliseconds