Home | History | Annotate | Download | only in src

Lines Matching refs:quote

114                                const char* value, int quote );
1567 const char* str, int quote CV_DEFAULT(0))
1584 if( quote || len == 0 || str[0] != str[len-1] || (str[0] != '\"' && str[0] != '\'') )
1586 int need_quote = quote || len == 0;
2507 icvXMLWriteString( CvFileStorage* fs, const char* key, const char* str, int quote )
2524 if( quote || len == 0 || str[0] != '\"' || str[0] != str[len-1] )
2526 int need_quote = quote || len == 0;
2913 cvWriteString( CvFileStorage* fs, const char* key, const char* value, int quote )
2920 CV_CALL( fs->write_string( fs, key, value, quote ));