• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libcroco/

Lines Matching refs:a_this

41 #define PRIVATE(a_this) ((a_this)->priv)
54 static void unrecoverable_error (CRDocHandler * a_this);
56 static void error (CRDocHandler * a_this);
58 static void property (CRDocHandler * a_this,
63 static void end_selector (CRDocHandler * a_this,
66 static void start_selector (CRDocHandler * a_this,
69 static void start_font_face (CRDocHandler * a_this,
72 static void end_font_face (CRDocHandler * a_this);
74 static void end_document (CRDocHandler * a_this);
76 static void start_document (CRDocHandler * a_this);
78 static void charset (CRDocHandler * a_this,
82 static void start_page (CRDocHandler * a_this, CRString * a_page,
86 static void end_page (CRDocHandler * a_this, CRString * a_page,
89 static void start_media (CRDocHandler * a_this,
93 static void end_media (CRDocHandler * a_this,
96 static void import_style (CRDocHandler * a_this,
143 cr_om_parser_init_default_sac_handler (CROMParser * a_this)
149 g_return_val_if_fail (a_this && PRIVATE (a_this)
150 && PRIVATE (a_this)->parser,
153 status = cr_parser_get_sac_handler (PRIVATE (a_this)->parser,
181 status = cr_parser_set_sac_handler (PRIVATE (a_this)->parser,
197 start_document (CRDocHandler * a_this)
202 g_return_if_fail (a_this);
209 cr_doc_handler_set_ctxt (a_this, ctxt);
213 start_font_face (CRDocHandler * a_this,
220 g_return_if_fail (a_this);
222 g_return_if_fail (a_this);
224 status = cr_doc_handler_get_ctxt (a_this, (gpointer *) ctxtptr);
235 end_font_face (CRDocHandler * a_this)
242 g_return_if_fail (a_this);
244 g_return_if_fail (a_this);
246 status = cr_doc_handler_get_ctxt (a_this, (gpointer *) ctxtptr);
278 end_document (CRDocHandler * a_this)
284 g_return_if_fail (a_this);
286 status = cr_doc_handler_get_ctxt (a_this, (gpointer *) ctxtptr);
292 status = cr_doc_handler_set_result (a_this, ctxt->stylesheet);
297 cr_doc_handler_set_ctxt (a_this, NULL);
308 charset (CRDocHandler * a_this, CRString * a_charset,
319 g_return_if_fail (a_this);
321 status = cr_doc_handler_get_ctxt (a_this, (gpointer *) ctxtptr);
344 start_page (CRDocHandler * a_this,
353 g_return_if_fail (a_this);
355 status = cr_doc_handler_get_ctxt (a_this, (gpointer *) ctxtptr);
386 end_page (CRDocHandler * a_this,
395 g_return_if_fail (a_this);
397 status = cr_doc_handler_get_ctxt (a_this, (gpointer *) ctxtptr);
421 start_media (CRDocHandler * a_this,
430 g_return_if_fail (a_this);
432 status = cr_doc_handler_get_ctxt (a_this, (gpointer *) ctxtptr);
451 end_media (CRDocHandler * a_this, GList * a_media_list)
458 g_return_if_fail (a_this);
460 status = cr_doc_handler_get_ctxt (a_this, (gpointer *) ctxtptr);
483 import_style (CRDocHandler * a_this,
497 g_return_if_fail (a_this);
499 status = cr_doc_handler_get_ctxt (a_this, (gpointer *) ctxtptr);
543 start_selector (CRDocHandler * a_this, CRSelector * a_selector_list)
549 g_return_if_fail (a_this);
551 status = cr_doc_handler_get_ctxt (a_this, (gpointer *) ctxtptr);
564 end_selector (CRDocHandler * a_this, CRSelector * a_selector_list)
570 g_return_if_fail (a_this);
572 status = cr_doc_handler_get_ctxt (a_this, (gpointer *) ctxtptr);
617 property (CRDocHandler * a_this,
629 g_return_if_fail (a_this);
631 status = cr_doc_handler_get_ctxt (a_this, (gpointer *) ctxtptr);
722 error (CRDocHandler * a_this)
728 g_return_if_fail (a_this);
730 status = cr_doc_handler_get_ctxt (a_this, (gpointer *) ctxtptr);
740 unrecoverable_error (CRDocHandler * a_this)
747 status = cr_doc_handler_get_ctxt (a_this, (gpointer *) ctxtptr);
753 (a_this, ctxt->stylesheet);
757 cr_doc_handler_set_ctxt (a_this, NULL);
821 *@a_this: the current instance of #CROMParser.
832 cr_om_parser_parse_buf (CROMParser * a_this,
840 g_return_val_if_fail (a_this && a_result, CR_BAD_PARAM_ERROR);
842 if (!PRIVATE (a_this)->parser) {
843 PRIVATE (a_this)->parser = cr_parser_new (NULL);
846 status = cr_parser_parse_buf (PRIVATE (a_this)->parser,
854 cr_parser_get_sac_handler (PRIVATE (a_this)->parser,
909 *@a_this: the current instance of the cssom parser.
922 cr_om_parser_parse_file (CROMParser * a_this,
928 g_return_val_if_fail (a_this && a_file_uri && a_result,
931 if (!PRIVATE (a_this)->parser) {
932 PRIVATE (a_this)->parser = cr_parser_new_from_file
936 status = cr_parser_parse_file (PRIVATE (a_this)->parser,
944 cr_parser_get_sac_handler (PRIVATE (a_this)->parser,
998 *@a_this: the current instance of #CROMParser
1011 cr_om_parser_parse_paths_to_cascade (CROMParser * a_this,
1026 g_return_val_if_fail (a_this, CR_BAD_PARAM_ERROR);
1034 status = cr_om_parser_parse_file (a_this, paths[i],
1099 *@a_this: the current instance of #CROMParser.
1104 cr_om_parser_destroy (CROMParser * a_this)
1106 g_return_if_fail (a_this && PRIVATE (a_this));
1108 if (PRIVATE (a_this)->parser) {
1109 cr_parser_destroy (PRIVATE (a_this)->parser);
1110 PRIVATE (a_this)->parser = NULL;
1113 if (PRIVATE (a_this)) {
1114 g_free (PRIVATE (a_this));
1115 PRIVATE (a_this) = NULL;
1118 if (a_this) {
1119 g_free (a_this);
1120 a_this = NULL;