Home
last modified time | relevance | path

Searched refs:a_new (Results 1 – 8 of 8) sorted by relevance

/third_party/gettext/libtextstyle/gnulib-local/lib/libcroco/
Dcr-selector.c88 cr_selector_append (CRSelector * a_this, CRSelector * a_new) in cr_selector_append() argument
93 return a_new; in cr_selector_append()
99 cur->next = a_new; in cr_selector_append()
100 a_new->prev = cur; in cr_selector_append()
116 cr_selector_prepend (CRSelector * a_this, CRSelector * a_new) in cr_selector_prepend() argument
120 a_new->next = a_this; in cr_selector_prepend()
121 a_this->prev = a_new; in cr_selector_prepend()
123 for (cur = a_new; cur && cur->prev; cur = cur->prev) ; in cr_selector_prepend()
Dcr-declaration.c304 cr_declaration_append (CRDeclaration * a_this, CRDeclaration * a_new) in cr_declaration_append() argument
308 g_return_val_if_fail (a_new, NULL); in cr_declaration_append()
311 return a_new; in cr_declaration_append()
315 cur->next = a_new; in cr_declaration_append()
316 a_new->prev = cur; in cr_declaration_append()
409 cr_declaration_prepend (CRDeclaration * a_this, CRDeclaration * a_new) in cr_declaration_prepend() argument
413 g_return_val_if_fail (a_new, NULL); in cr_declaration_prepend()
416 return a_new; in cr_declaration_prepend()
418 a_this->prev = a_new; in cr_declaration_prepend()
419 a_new->next = a_this; in cr_declaration_prepend()
[all …]
Dcr-selector.h86 CRSelector* cr_selector_append (CRSelector *a_this, CRSelector *a_new) ;
91 CRSelector* cr_selector_prepend (CRSelector *a_this, CRSelector *a_new) ;
Dcr-declaration.h100 CRDeclaration *a_new) ;
107 CRDeclaration *a_new) ;
Dcr-statement.h313 CRStatement *a_new) ;
317 CRStatement *a_new) ;
Dcr-statement.c1832 cr_statement_append (CRStatement * a_this, CRStatement * a_new) in cr_statement_append() argument
1836 g_return_val_if_fail (a_new, NULL); in cr_statement_append()
1839 return a_new; in cr_statement_append()
1845 cur->next = a_new; in cr_statement_append()
1846 a_new->prev = cur; in cr_statement_append()
1864 cr_statement_prepend (CRStatement * a_this, CRStatement * a_new) in cr_statement_prepend() argument
1868 g_return_val_if_fail (a_new, NULL); in cr_statement_prepend()
1871 return a_new; in cr_statement_prepend()
1873 a_new->next = a_this; in cr_statement_prepend()
1874 a_this->prev = a_new; in cr_statement_prepend()
[all …]
/third_party/boost/libs/serialization/test/
Dtest_non_default_ctor2.cpp134 A* a_new; in test_main() local
139 ia >> BOOST_SERIALIZATION_NVP(a_new); in test_main()
142 delete a_new; in test_main()
/third_party/glib/glib/
Dghash.c932 gpointer *a_new; in g_hash_table_maybe_make_big_keys_or_values() local
935 a_new = g_new (gpointer, ht_size); in g_hash_table_maybe_make_big_keys_or_values()
939 a_new[i] = GUINT_TO_POINTER (a[i]); in g_hash_table_maybe_make_big_keys_or_values()
943 *a_p = a_new; in g_hash_table_maybe_make_big_keys_or_values()