Lines Matching +refs:val +refs:file
10 * Released under GNU GPL, read the file 'COPYING' for more information
137 // First peek in the file to see what it is
144 //g_message(" the file being read is gzip'd. extract it");
190 // First get data from file in typical way (cache it all)
326 * Reads XML from a file, including WMF files, and returns the Document.
331 // g_warning( "Reading file: %s", filename );
339 g_warning("Can't open file: %s (doesn't exist)", filename);
342 /* fixme: A file can disappear at any time, including between now and when we actually try to
478 * Reads in a XML file to create a Document
529 // icons.svg). How can one tell if a file is internal?
701 * Returns true if file successfully saved.
703 * \param filename The actual file to do I/O to, which might be a temp file.
723 FILE *file = Inkscape::IO::fopen_utf8name(filename, "w");
724 if (file == NULL) {
744 sp_repr_save_stream(doc, file, default_ns, compress, old_href_abs_base.c_str(), new_href_abs_base.c_str());
746 if (fclose (file) != 0) {
754 * Returns true iff file successfully saved.
763 static void repr_quote_write (Writer &out, const gchar * val)
765 if (val) {
766 for (; *val != '\0'; val++) {
767 switch (*val) {
772 default: out.writeChar( *val ); break;
778 static void repr_write_comment( Writer &out, const gchar * val, bool addWhitespace, gint indentLevel, int indent )
793 if (val) {
794 for (const gchar* cur = val; *cur; cur++ ) {
1090 c-file-style:"stroustrup"
1091 c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))