Lines Matching refs:charset
563 if (a_this->kind.charset_rule->charset) {
565 (a_this->kind.charset_rule->charset);
566 a_this->kind.charset_rule->charset = NULL;
708 *Serialises an \@charset statement into a string.
712 *Returns the serialized charset statement. Must be
727 && a_this->kind.charset_rule->charset
728 && a_this->kind.charset_rule->charset->stryng
729 && a_this->kind.charset_rule->charset->stryng->str) {
730 str = g_strndup (a_this->kind.charset_rule->charset->stryng->str,
731 a_this->kind.charset_rule->charset->stryng->len);
737 "@charset \"%s\" ;", str);
1575 *@a_charset: the string representing the charset.
1611 result->kind.charset_rule->charset = a_charset;
1623 *Parses a buffer that contains an '\@charset' rule and
1635 CRString *charset = NULL;
1646 /*Now, invoke the parser to parse the "@charset production" */
1650 status = cr_parser_parse_charset (parser, &charset, NULL);
1651 if (status != CR_OK || !charset)
1654 result = cr_statement_new_at_charset_rule (NULL, charset);
1656 charset = NULL;
1664 if (charset) {
1665 cr_string_destroy (charset);
2354 *@a_this: the current \@charset rule statement.
2355 *@a_charset: the charset to set.
2357 *Sets the charset of the current \@charset rule statement.
2370 if (a_this->kind.charset_rule->charset) {
2371 cr_string_destroy (a_this->kind.charset_rule->charset);
2373 a_this->kind.charset_rule->charset = a_charset;
2379 *@a_this: the current \@charset rule statement.
2380 *@a_charset: out parameter. The returned charset string if
2383 *Gets the charset string associated to the current
2384 *\@charset rule statement.
2397 *a_charset = a_this->kind.charset_rule->charset;
2662 *@a_this: the current instance of the \@charset rule statement.
2666 *Dumps an \@charset rule statement to a file.