• 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

38  *@a_this: the current instance of #CRDeclaration.
45 dump (CRDeclaration * a_this, FILE * a_fp, glong a_indent)
49 g_return_if_fail (a_this);
51 str = cr_declaration_to_string (a_this, a_indent);
282 *@a_this: the current declaration list.
290 cr_declaration_append (CRDeclaration * a_this, CRDeclaration * a_new)
296 if (!a_this)
299 for (cur = a_this; cur && cur->next; cur = cur->next) ;
304 return a_this;
387 * @a_this: the current declaration list.
395 cr_declaration_prepend (CRDeclaration * a_this, CRDeclaration * a_new)
401 if (!a_this)
404 a_this->prev = a_new;
405 a_new->next = a_this;
414 *@a_this: the current declaration list.
423 cr_declaration_append2 (CRDeclaration * a_this,
428 if (a_this) {
429 new_elem = cr_declaration_new (a_this->parent_statement,
437 return cr_declaration_append (a_this, new_elem);
442 *@a_this: the current instance of #CRDeclaration.
451 cr_declaration_dump (CRDeclaration * a_this, FILE * a_fp, glong a_indent,
456 g_return_if_fail (a_this);
458 for (cur = a_this; cur; cur = cur->next) {
471 *@a_this: the current instance of #CRDeclaration.
478 cr_declaration_dump_one (CRDeclaration * a_this, FILE * a_fp, glong a_indent)
480 g_return_if_fail (a_this);
482 dump (a_this, a_fp, a_indent);
487 *@a_this: the current instance of #CRDeclaration.
496 cr_declaration_to_string (CRDeclaration * a_this, gulong a_indent)
503 g_return_val_if_fail (a_this, NULL);
507 if (a_this->property
508 && a_this->property->stryng
509 && a_this->property->stryng->str) {
510 str = g_strndup (a_this->property->stryng->str,
511 a_this->property->stryng->len);
521 if (a_this->value) {
524 value_str = cr_term_to_string (a_this->value);
532 if (a_this->important == TRUE) {
558 *@a_this: the current instance of #CRDeclaration.
565 cr_declaration_list_to_string (CRDeclaration * a_this, gulong a_indent)
572 g_return_val_if_fail (a_this, NULL);
576 for (cur = a_this; cur; cur = cur->next) {
594 *@a_this: the current instance of #CRDeclaration.
603 cr_declaration_list_to_string2 (CRDeclaration * a_this,
611 g_return_val_if_fail (a_this, NULL);
615 for (cur = a_this; cur; cur = cur->next) {
647 *@a_this: the current instance of #CRDeclaration.
651 cr_declaration_nr_props (CRDeclaration * a_this)
656 g_return_val_if_fail (a_this, -1);
658 for (cur = a_this; cur; cur = cur->next)
665 *@a_this: the current instance of #CRDeclaration.
675 cr_declaration_get_from_list (CRDeclaration * a_this, int itemnr)
680 g_return_val_if_fail (a_this, NULL);
682 for (cur = a_this; cur; cur = cur->next)
690 *@a_this: the current instance of #CRDeclaration.
697 cr_declaration_get_by_prop_name (CRDeclaration * a_this,
702 g_return_val_if_fail (a_this, NULL);
705 for (cur = a_this; cur; cur = cur->next) {
720 *@a_this: the current instance of #CRDeclaration.
725 cr_declaration_ref (CRDeclaration * a_this)
727 g_return_if_fail (a_this);
729 a_this->ref_count++;
734 *@param a_this the current instance of #CRDeclaration.
744 cr_declaration_unref (CRDeclaration * a_this)
746 g_return_val_if_fail (a_this, FALSE);
748 if (a_this->ref_count) {
749 a_this->ref_count--;
752 if (a_this->ref_count == 0) {
753 cr_declaration_destroy (a_this);
761 *@a_this: the current instance of #CRDeclaration.
766 cr_declaration_destroy (CRDeclaration * a_this)
770 g_return_if_fail (a_this);
776 for (cur = a_this; cur && cur->next; cur = cur->next) {