Libcroco
|
Go to the source code of this file.
Functions | |
CRString * | cr_string_new (void) |
Instanciates a CRString. More... | |
CRString * | cr_string_new_from_string (const gchar *a_string) |
Instanciate a string and initialise it to a_string. More... | |
CRString * | cr_string_new_from_gstring (GString const *a_string) |
Instanciates a CRString from an instance of GString. More... | |
CRString * | cr_string_dup (CRString const *a_this) |
gchar * | cr_string_dup2 (CRString const *a_this) |
const gchar * | cr_string_peek_raw_str (CRString const *a_this) |
Returns a pointer to the internal raw NULL terminated string of the current instance of CRString. More... | |
gint | cr_string_peek_raw_str_len (CRString const *a_this) |
Returns the length of the internal raw NULL terminated string of the current instance of CRString. More... | |
void | cr_string_destroy (CRString *a_this) |
void cr_string_destroy | ( | CRString * | a_this | ) |
a_this | the CRString to destroy. |
Definition at line 159 of file cr-string.c.
Referenced by cr_additional_sel_destroy(), cr_additional_sel_set_class_name(), cr_additional_sel_set_id_name(), cr_attr_sel_destroy(), cr_declaration_destroy(), cr_pseudo_destroy(), cr_simple_sel_destroy(), cr_statement_at_charset_rule_set_charset(), cr_statement_at_import_rule_parse_from_buf(), and cr_statement_at_import_rule_set_url().
Definition at line 94 of file cr-string.c.
References cr_parsing_location_copy(), cr_string_new_from_gstring(), and cr_utils_trace_info.
Referenced by cr_utils_dup_glist_of_cr_string().
gchar* cr_string_dup2 | ( | CRString const * | a_this | ) |
Definition at line 110 of file cr-string.c.
CRString* cr_string_new | ( | void | ) |
Instanciates a CRString.
Definition at line 33 of file cr-string.c.
References cr_utils_trace_info.
Referenced by cr_string_new_from_gstring(), and cr_string_new_from_string().
CRString* cr_string_new_from_gstring | ( | GString const * | a_string | ) |
Instanciates a CRString from an instance of GString.
a_string | the input string that will be copied into the newly instanciated CRString |
Definition at line 75 of file cr-string.c.
References cr_string_new(), and cr_utils_trace_info.
Referenced by cr_string_dup().
CRString* cr_string_new_from_string | ( | const gchar * | a_string | ) |
Instanciate a string and initialise it to a_string.
a_string | the initial string |
Definition at line 54 of file cr-string.c.
References cr_string_new(), and cr_utils_trace_info.
const gchar* cr_string_peek_raw_str | ( | CRString const * | a_this | ) |
Returns a pointer to the internal raw NULL terminated string of the current instance of CRString.
a_this | the current instance of CRString |
Definition at line 131 of file cr-string.c.
gint cr_string_peek_raw_str_len | ( | CRString const * | a_this | ) |
Returns the length of the internal raw NULL terminated string of the current instance of CRString.
a_this | the current instance of CRString. |
Definition at line 148 of file cr-string.c.