Searched defs:prop (Results 1 - 9 of 9) sorted by relevance
/inkscape/src/ |
H A D | attribute-rel-svg.cpp | 99 std::string prop = s; local 107 attributesOfElements[element].insert(prop);
|
H A D | attribute-rel-css.cpp | 165 std::string prop = s; local 175 propertiesOfElements[element].insert(prop); 177 // Load data to structure that holds CSS prop -> default value 183 defaultValuesOfProps[prop] = value; 190 inheritProps[prop] = inherit;
|
H A D | id-clash.cpp | 138 const SPIPaint SPStyle::*prop = SPIPaint_members[i]; member in class:SPStyle 139 const SPIPaint *paint = &(style->*prop);
|
H A D | ege-color-prof-tracker.cpp | 544 unsigned char* prop = 0; local 550 &actualType, &actualFormat, &nitems, &bytesAfter, &prop ) == Success ) { 555 if ( prop ) { 556 XFree(prop); 557 prop = 0; 561 &actualType, &actualFormat, &nitems, &bytesAfter, &prop ) == Success ) { 562 gpointer profile = g_memdup( prop, nitems ); 564 XFree(prop);
|
/inkscape/src/libcroco/ |
H A D | cr-prop-list.c | 23 #include "cr-prop-list.h" 28 CRString *prop; member in struct:_CRPropListPriv 73 *Returns the resulting prop list, or NULL if an error 98 *Appends a pair of prop/declaration to 99 *the current prop list. 120 PRIVATE (list)->prop = a_prop; 175 PRIVATE (list)->prop = a_prop_name; 194 PRIVATE (a_this)->prop = a_prop; 215 *a_prop = PRIVATE (a_this)->prop; 262 *Returns CR_OK if a prop/dec [all...] |
H A D | cr-parser.c | 1036 CRString *prop = NULL; local 1042 status = cr_parser_parse_property (a_this, &prop); 1045 ENSURE_PARSING_COND (status == CR_OK && prop); 1046 cr_string_destroy (prop); 1047 prop = NULL; 1064 if (prop) { 1065 cr_string_destroy (prop); 1066 prop = NULL;
|
/inkscape/src/widgets/ |
H A D | star-toolbar.cpp | 409 gdouble prop = 0.5; local 425 gtk_adjustment_set_value(adj, prop);
|
H A D | text-toolbar.cpp | 298 gint prop = (strcmp(name, "TextSuperscriptAction") == 0) ? 0 : 1; local 301 std::cout << "sp_text_script_changed: " << prop << std::endl; 313 if( prop == 0 ) { 329 setSuper = !superscriptSet && prop == 0; 330 setSub = !subscriptSet && prop == 1;
|
/inkscape/src/xml/ |
H A D | repr-io.cpp | 568 xmlAttrPtr prop; local 610 for (prop = node->properties; prop != NULL; prop = prop->next) { 611 if (prop->children) { 612 sp_repr_qualified_name (c, 256, prop->ns, prop->name, default_ns, prefix_map); 613 repr->setAttribute(c, reinterpret_cast<gchar*>(prop->children->content)); 614 /* TODO remember prop [all...] |
Completed in 61 milliseconds