• 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

87  * @a_this: the "this pointer" of the current instance
95 cr_additional_sel_set_class_name (CRAdditionalSel * a_this,
98 g_return_if_fail (a_this && a_this->type == CLASS_ADD_SELECTOR);
100 if (a_this->content.class_name) {
101 cr_string_destroy (a_this->content.class_name);
104 a_this->content.class_name = a_class_name;
109 * @a_this: the "this pointer" of the current instance
117 cr_additional_sel_set_id_name (CRAdditionalSel * a_this, CRString * a_id)
119 g_return_if_fail (a_this && a_this->type == ID_ADD_SELECTOR);
121 if (a_this->content.id_name) {
122 cr_string_destroy (a_this->content.id_name);
125 a_this->content.id_name = a_id;
130 * @a_this: the "this pointer" of the current instance
138 cr_additional_sel_set_pseudo (CRAdditionalSel * a_this, CRPseudo * a_pseudo)
140 g_return_if_fail (a_this
141 && a_this->type == PSEUDO_CLASS_ADD_SELECTOR);
143 if (a_this->content.pseudo) {
144 cr_pseudo_destroy (a_this->content.pseudo);
147 a_this->content.pseudo = a_pseudo;
152 * @a_this: the "this pointer" of the current instance
160 cr_additional_sel_set_attr_sel (CRAdditionalSel * a_this, CRAttrSel * a_sel)
162 g_return_if_fail (a_this && a_this->type == ATTRIBUTE_ADD_SELECTOR);
164 if (a_this->content.attr_sel) {
165 cr_attr_sel_destroy (a_this->content.attr_sel);
168 a_this->content.attr_sel = a_sel;
173 * @a_this: the "this pointer" of the current instance
183 cr_additional_sel_append (CRAdditionalSel * a_this, CRAdditionalSel * a_sel)
189 if (a_this == NULL) {
196 for (cur_sel = a_this;
204 return a_this;
209 * @a_this: the "this pointer" of the current instance
219 cr_additional_sel_prepend (CRAdditionalSel * a_this, CRAdditionalSel * a_sel)
223 if (a_this == NULL) {
227 a_sel->next = a_this;
228 a_this->prev = a_sel;
234 cr_additional_sel_to_string (CRAdditionalSel * a_this)
240 g_return_val_if_fail (a_this, NULL);
244 for (cur = a_this; cur; cur = cur->next) {
336 cr_additional_sel_one_to_string (CRAdditionalSel *a_this)
341 g_return_val_if_fail (a_this, NULL) ;
345 switch (a_this->type) {
350 if (a_this->content.class_name) {
352 (a_this->content.class_name->stryng->str,
353 a_this->content.class_name->stryng->len);
370 if (a_this->content.class_name) {
372 (a_this->content.id_name->stryng->str,
373 a_this->content.id_name->stryng->len);
389 if (a_this->content.pseudo) {
393 (a_this->content.pseudo);
406 if (a_this->content.attr_sel) {
411 (a_this->content.attr_sel);
436 * @a_this: the "this pointer" of the current instance of
443 cr_additional_sel_dump (CRAdditionalSel * a_this, FILE * a_fp)
449 if (a_this) {
450 tmp_str = cr_additional_sel_to_string (a_this);
461 * @a_this: the "this pointer" of the current instance
467 cr_additional_sel_destroy (CRAdditionalSel * a_this)
469 g_return_if_fail (a_this);
471 switch (a_this->type) {
473 cr_string_destroy (a_this->content.class_name);
474 a_this->content.class_name = NULL;
478 cr_pseudo_destroy (a_this->content.pseudo);
479 a_this->content.pseudo = NULL;
483 cr_string_destroy (a_this->content.id_name);
484 a_this->content.id_name = NULL;
488 cr_attr_sel_destroy (a_this->content.attr_sel);
489 a_this->content.attr_sel = NULL;
496 if (a_this->next) {
497 cr_additional_sel_destroy (a_this->next);
500 g_free (a_this);