Lines Matching refs:a_str

2322  *@param a_str the string to dump the numerical propertie into.
2323 *Note that the string value is appended to a_str.
2328 GString * a_str, guint a_nb_indent)
2334 g_return_val_if_fail (a_prop_val && a_str, CR_BAD_PARAM_ERROR);
2366 g_string_append (a_str, str->str);
2382 GString * a_str, guint a_nb_indent)
2388 g_return_val_if_fail (a_prop_val && a_str, CR_BAD_PARAM_ERROR);
2420 g_string_append (a_str, str->str);
2436 GString * a_str, guint a_nb_indent)
2440 g_return_val_if_fail (a_str, CR_BAD_PARAM_ERROR);
2477 cr_utils_dump_n_chars2 (' ', a_str, a_nb_indent);
2478 g_string_append (a_str, str);
2484 GString * a_str, guint a_nb_indent)
2488 g_return_val_if_fail (a_str, CR_BAD_PARAM_ERROR);
2549 cr_utils_dump_n_chars2 (' ', a_str, a_nb_indent);
2550 g_string_append (a_str, str);
2557 GString * a_str, guint a_nb_indent)
2561 g_return_val_if_fail (a_str, CR_BAD_PARAM_ERROR);
2582 cr_utils_dump_n_chars2 (' ', a_str, a_nb_indent);
2583 g_string_append (a_str, str);
2589 GString * a_str, guint a_nb_indent)
2593 g_return_val_if_fail (a_str, CR_BAD_PARAM_ERROR);
2612 cr_utils_dump_n_chars2 (' ', a_str, a_nb_indent);
2613 g_string_append (a_str, str);
2619 GString * a_str, guint a_nb_indent)
2623 g_return_val_if_fail (a_str, CR_BAD_PARAM_ERROR);
2642 cr_utils_dump_n_chars2 (' ', a_str, a_nb_indent);
2643 g_string_append (a_str, str);
2651 *@param a_str the string to serialise the style into.
2652 *if *a_str is NULL, a new GString is instanciated, otherwise
2653 *the style serialisation is appended to the existed *a_str
2658 cr_style_to_string (CRStyle * a_this, GString ** a_str, guint a_nb_indent)
2666 g_return_val_if_fail (a_this && a_str, CR_BAD_PARAM_ERROR);
2668 if (!*a_str) {
2671 str = *a_str;