Searched refs:decl_list (Results 1 - 8 of 8) sorted by relevance

/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/libcroco/
H A Dcr-statement.c105 stmt->kind.font_face_rule->decl_list =
106 cr_declaration_append (stmt->kind.font_face_rule->decl_list,
108 if (!stmt->kind.font_face_rule->decl_list)
212 stmt->kind.page_rule->decl_list =
213 cr_declaration_append (stmt->kind.page_rule->decl_list, decl);
214 g_return_if_fail (stmt->kind.page_rule->decl_list);
489 if (a_this->kind.ruleset->decl_list) {
491 (a_this->kind.ruleset->decl_list);
492 a_this->kind.ruleset->decl_list = NULL;
540 if (a_this->kind.page_rule->decl_list) {
[all...]
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
H A Dcr-om-parser.c691 (ctxt->cur_stmt->kind.ruleset->decl_list, decl);
698 ctxt->cur_stmt->kind.ruleset->decl_list = decl2;
705 (ctxt->cur_stmt->kind.font_face_rule->decl_list,
713 ctxt->cur_stmt->kind.font_face_rule->decl_list = decl2;
719 (ctxt->cur_stmt->kind.page_rule->decl_list, decl);
726 ctxt->cur_stmt->kind.page_rule->decl_list = decl2;
H A Dcr-declaration.c358 kind.ruleset->decl_list;
367 kind.font_face_rule->decl_list;
374 kind.page_rule->decl_list;
H A Dcr-sel-eng.c963 for (cur_decl = a_stmt->kind.ruleset->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 );
H A Dstyle.h67 void _mergeDeclList( CRDeclaration const *const decl_list );

Completed in 76 milliseconds