Searched defs:decl_list (Results 1 - 3 of 3) sorted by relevance

/inkscape/src/libcroco/
H A Dcr-statement.h69 CRDeclaration *decl_list ; member in struct:_CRRuleSet
118 CRDeclaration *decl_list ; member in struct:_CRAtPageRule
137 CRDeclaration *decl_list ; member in struct:_CRAtFontFaceRule
/inkscape/src/xml/
H A Drepr-css.cpp411 * \pre decl_list != NULL
413 static void sp_repr_css_merge_from_decl_list(SPCSSAttr *css, CRDeclaration const *const decl_list) argument
418 sp_repr_css_merge_from_decl(css, decl_list);
419 if (decl_list->next) {
420 sp_repr_css_merge_from_decl_list(css, decl_list->next);
431 CRDeclaration *const decl_list local
433 if (decl_list) {
434 sp_repr_css_merge_from_decl_list(css, decl_list);
435 cr_declaration_destroy(decl_list);
/inkscape/src/
H A Dstyle.cpp1116 CRDeclaration *const decl_list local
1118 if (decl_list) {
1119 _mergeDeclList( decl_list );
1120 cr_declaration_destroy(decl_list);
1125 SPStyle::_mergeDeclList( CRDeclaration const *const decl_list ) {
1132 if (decl_list->next) {
1133 _mergeDeclList( decl_list->next );
1135 _mergeDecl( decl_list );

Completed in 16 milliseconds