• 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:CRPropList

31         CRPropList *next;
32 CRPropList *prev;
35 static CRPropList *cr_prop_list_allocate (void);
38 *Default allocator of CRPropList
39 *@return the newly allocated CRPropList or NULL
42 static CRPropList *
45 CRPropList *result = NULL;
47 result = g_try_malloc (sizeof (CRPropList));
49 cr_utils_trace_info ("could not allocate CRPropList");
52 memset (result, 0, sizeof (CRPropList));
69 *@a_this: the current instance of #CRPropList
77 CRPropList *
78 cr_prop_list_append (CRPropList * a_this, CRPropList * a_to_append)
80 CRPropList *cur = NULL;
101 *@a_this: the current instance of #CRPropList
107 CRPropList *
108 cr_prop_list_append2 (CRPropList * a_this,
112 CRPropList *list = NULL,
129 *@a_this: the current instance of #CRPropList
135 CRPropList *
136 cr_prop_list_prepend (CRPropList * a_this, CRPropList * a_to_prepend)
138 CRPropList *cur = NULL;
155 *@a_this: the current instance of #CRPropList
163 CRPropList *
164 cr_prop_list_prepend2 (CRPropList * a_this,
167 CRPropList *list = NULL,
183 *@a_this: the current instance of #CRPropList
186 *Sets the property of a CRPropList
189 cr_prop_list_set_prop (CRPropList * a_this, CRString * a_prop)
200 *@a_this: the current instance of #CRPropList
204 *of #CRPropList
210 cr_prop_list_get_prop (CRPropList * a_this, CRString ** a_prop)
221 * @a_this: the current instance of #CRPropList
226 cr_prop_list_set_decl (CRPropList * a_this, CRDeclaration * a_decl)
237 * @a_this: the current instance of #CRPropList
242 cr_prop_list_get_decl (CRPropList * a_this, CRDeclaration ** a_decl)
253 *@a_this: the current instance of #CRPropList
265 cr_prop_list_lookup_prop (CRPropList * a_this,
266 CRString * a_prop, CRPropList ** a_pair)
268 CRPropList *cur = NULL;
298 *@a_this: the current instance of CRPropList
305 CRPropList *
306 cr_prop_list_get_next (CRPropList * a_this)
315 *@a_this: the current instance of CRPropList
322 CRPropList *
323 cr_prop_list_get_prev (CRPropList * a_this)
339 CRPropList *
340 cr_prop_list_unlink (CRPropList * a_this, CRPropList * a_pair)
342 CRPropList *prev = NULL,
375 * @a_this: the current instance of #CRPropList
378 cr_prop_list_destroy (CRPropList * a_this)
380 CRPropList *tail = NULL,