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

Lines Matching refs:a_this

37 #define PRIVATE(a_this) (a_this)->priv
69 static enum CRStatus sel_matches_node_real (CRSelEng * a_this,
76 static enum CRStatus cr_sel_eng_get_matched_rulesets_real (CRSelEng * a_this,
88 static gboolean pseudo_class_add_sel_matches_node (CRSelEng * a_this,
93 static gboolean lang_pseudo_class_handler (CRSelEng * a_this,
97 static gboolean first_child_pseudo_class_handler (CRSelEng * a_this,
110 lang_pseudo_class_handler (CRSelEng * a_this,
117 g_return_val_if_fail (a_this && PRIVATE (a_this)
153 first_child_pseudo_class_handler (CRSelEng * a_this,
158 g_return_val_if_fail (a_this && PRIVATE (a_this)
180 pseudo_class_add_sel_matches_node (CRSelEng * a_this,
187 g_return_val_if_fail (a_this && PRIVATE (a_this)
196 (a_this, a_add_sel->content.pseudo->name->stryng->str,
201 return handler (a_this, a_add_sel, a_node);
477 additional_selector_matches_node (CRSelEng * a_this,
531 (a_this, cur_add_sel, a_node) == TRUE) {
607 *@param a_this the selection engine.
618 sel_matches_node_real (CRSelEng * a_this, CRSimpleSel * a_sel,
626 g_return_val_if_fail (a_this && PRIVATE (a_this)
627 && a_this && a_node
659 if (additional_selector_matches_node (a_this, cur_sel->add_sel,
675 (a_this, cur_sel->add_sel, cur_node)
715 (a_this, cur_sel->prev,
812 cr_sel_eng_get_matched_rulesets_real (CRSelEng * a_this,
825 g_return_val_if_fail (a_this
839 if (PRIVATE (a_this)->sheet != a_stylesheet) {
840 PRIVATE (a_this)->sheet = a_stylesheet;
841 PRIVATE (a_this)->cur_stmt = a_stylesheet->statements;
850 for (cur_stmt = PRIVATE (a_this)->cur_stmt, i = 0;
851 (PRIVATE (a_this)->cur_stmt = cur_stmt);
907 (a_this, cur_sel->simple_sel,
952 g_return_val_if_fail (!PRIVATE (a_this)->cur_stmt, CR_ERROR);
953 PRIVATE (a_this)->sheet = NULL;
1146 *@a_this: the current instance of #CRSelEng
1157 cr_sel_eng_register_pseudo_class_sel_handler (CRSelEng * a_this,
1166 g_return_val_if_fail (a_this && PRIVATE (a_this)
1179 list = g_list_append (PRIVATE (a_this)->pcs_handlers, handler_entry);
1183 PRIVATE (a_this)->pcs_handlers = list;
1188 cr_sel_eng_unregister_pseudo_class_sel_handler (CRSelEng * a_this,
1197 g_return_val_if_fail (a_this && PRIVATE (a_this), CR_BAD_PARAM_ERROR);
1199 for (elem = PRIVATE (a_this)->pcs_handlers;
1210 PRIVATE (a_this)->pcs_handlers = g_list_delete_link
1211 (PRIVATE (a_this)->pcs_handlers, elem);
1223 *@a_this: the current instance of #CRSelEng .
1232 cr_sel_eng_unregister_all_pseudo_class_sel_handlers (CRSelEng * a_this)
1237 g_return_val_if_fail (a_this && PRIVATE (a_this), CR_BAD_PARAM_ERROR);
1239 if (!PRIVATE (a_this)->pcs_handlers)
1241 for (elem = PRIVATE (a_this)->pcs_handlers;
1253 g_list_free (PRIVATE (a_this)->pcs_handlers);
1254 PRIVATE (a_this)->pcs_handlers = NULL;
1259 cr_sel_eng_get_pseudo_class_selector_handler (CRSelEng * a_this,
1269 g_return_val_if_fail (a_this && PRIVATE (a_this)
1272 for (elem = PRIVATE (a_this)->pcs_handlers;
1290 *@a_this: the selection engine.
1305 cr_sel_eng_matches_node (CRSelEng * a_this, CRSimpleSel * a_sel,
1308 g_return_val_if_fail (a_this && PRIVATE (a_this)
1309 && a_this && a_node
1317 return sel_matches_node_real (a_this, a_sel,
1324 *@a_this: the current instance of the selection engine.
1341 cr_sel_eng_get_matched_rulesets (CRSelEng * a_this,
1353 g_return_val_if_fail (a_this
1372 (a_this, a_sheet, a_node, stmts_tab + index, &tab_len))
1407 cr_sel_eng_get_matched_properties_from_cascade (CRSelEng * a_this,
1422 g_return_val_if_fail (a_this
1447 (a_this, sheet, a_node, stmts_tab + index, &tab_len))
1508 cr_sel_eng_get_matched_style (CRSelEng * a_this,
1519 g_return_val_if_fail (a_this && a_cascade
1523 (a_this, a_cascade, a_node, &props);
1550 *@a_this: the current instance of the selection engine.
1555 cr_sel_eng_destroy (CRSelEng * a_this)
1557 g_return_if_fail (a_this);
1559 if (!PRIVATE (a_this))
1561 if (PRIVATE (a_this)->pcs_handlers) {
1563 (a_this) ;
1564 PRIVATE (a_this)->pcs_handlers = NULL ;
1566 g_free (PRIVATE (a_this));
1567 PRIVATE (a_this) = NULL;
1569 if (a_this) {
1570 g_free (a_this);