• 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

69  *@a_this: the current instance of #CRPropList
78 cr_prop_list_append (CRPropList * a_this, CRPropList * a_to_append)
84 if (!a_this)
88 for (cur = a_this;
94 return a_this;
101 *@a_this: the current instance of #CRPropList
108 cr_prop_list_append2 (CRPropList * a_this,
123 result = cr_prop_list_append (a_this, list);
129 *@a_this: the current instance of #CRPropList
136 cr_prop_list_prepend (CRPropList * a_this, CRPropList * a_to_prepend)
142 if (!a_this)
148 PRIVATE (cur)->next = a_this;
149 PRIVATE (a_this)->prev = cur;
155 *@a_this: the current instance of #CRPropList
164 cr_prop_list_prepend2 (CRPropList * a_this,
170 g_return_val_if_fail (a_this && PRIVATE (a_this)
177 result = cr_prop_list_prepend (a_this, list);
183 *@a_this: the current instance of #CRPropList
189 cr_prop_list_set_prop (CRPropList * a_this, CRString * a_prop)
191 g_return_val_if_fail (a_this && PRIVATE (a_this)
194 PRIVATE (a_this)->prop = a_prop;
200 *@a_this: the current instance of #CRPropList
210 cr_prop_list_get_prop (CRPropList * a_this, CRString ** a_prop)
212 g_return_val_if_fail (a_this && PRIVATE (a_this)
215 *a_prop = PRIVATE (a_this)->prop;
221 * @a_this: the current instance of #CRPropList
226 cr_prop_list_set_decl (CRPropList * a_this, CRDeclaration * a_decl)
228 g_return_val_if_fail (a_this && PRIVATE (a_this)
231 PRIVATE (a_this)->decl = a_decl;
237 * @a_this: the current instance of #CRPropList
242 cr_prop_list_get_decl (CRPropList * a_this, CRDeclaration ** a_decl)
244 g_return_val_if_fail (a_this && PRIVATE (a_this)
247 *a_decl = PRIVATE (a_this)->decl;
253 *@a_this: the current instance of #CRPropList
265 cr_prop_list_lookup_prop (CRPropList * a_this,
272 if (!a_this)
275 g_return_val_if_fail (PRIVATE (a_this), CR_BAD_PARAM_ERROR);
277 for (cur = a_this; cur; cur = PRIVATE (cur)->next) {
298 *@a_this: the current instance of CRPropList
306 cr_prop_list_get_next (CRPropList * a_this)
308 g_return_val_if_fail (a_this && PRIVATE (a_this), NULL);
310 return PRIVATE (a_this)->next;
315 *@a_this: the current instance of CRPropList
323 cr_prop_list_get_prev (CRPropList * a_this)
325 g_return_val_if_fail (a_this && PRIVATE (a_this), NULL);
327 return PRIVATE (a_this)->prev;
332 *@a_this: the current list of prop/decl pairs
340 cr_prop_list_unlink (CRPropList * a_this, CRPropList * a_pair)
345 g_return_val_if_fail (a_this && PRIVATE (a_this) && a_pair, NULL);
365 if (a_this == a_pair) {
370 return a_this;
375 * @a_this: the current instance of #CRPropList
378 cr_prop_list_destroy (CRPropList * a_this)
383 g_return_if_fail (a_this && PRIVATE (a_this));
385 for (tail = a_this;