/inkscape/src/debug/ |
H A D | timestamp.cpp | 26 gchar *value = g_strdup_printf( "%d.%06d", static_cast<gint>(timestamp.tv_sec), static_cast<gint>(timestamp.tv_usec) ); local 27 result = Util::share_string(value); 28 g_free(value);
|
H A D | simple-event.h | 47 Util::ptr_shared<char> value) 49 _properties.push_back(PropertyPair(name, value)); 51 void _addProperty(Util::ptr_shared<char> name, char const *value) { argument 52 _addProperty(name, Util::share_string(value)); 54 void _addProperty(char const *name, Util::ptr_shared<char> value) { argument 55 _addProperty(Util::share_string(name), value); local 57 void _addProperty(char const *name, char const *value) { argument 58 _addProperty(Util::share_string(name), Util::share_string(value)); 60 void _addProperty(Util::ptr_shared<char> name, long value) { argument 61 _addFormattedProperty(name, "%ld", value); 46 _addProperty(Util::ptr_shared<char> name, Util::ptr_shared<char> value) argument 63 _addProperty(char const *name, long value) argument 64 _addProperty(Util::share_string(name), value); local 75 gchar *value=g_strdup_vprintf(format, args); local [all...] |
/inkscape/cxxtest/sample/ |
H A D | MessageTest.h | 22 void checkValue( unsigned value, const char *message ) argument 24 TSM_ASSERT( message, value != 0 ); 25 TSM_ASSERT_EQUALS( message, value, value * value );
|
/inkscape/src/filters/ |
H A D | colormatrix.h | 27 gdouble value; member in class:SPFeColorMatrix 34 virtual void set(unsigned int key, const gchar* value);
|
H A D | mergenode.cpp | 46 * Sets a specific value in the SPFeMergeNode. 48 void SPFeMergeNode::set(unsigned int key, gchar const *value) { argument 52 int input = sp_filter_primitive_read_in(parent, value); 59 /* See if any parents need this value. */ 60 SPObject::set(key, value);
|
H A D | tile.cpp | 44 * Sets a specific value in the SPFeTile. 46 void SPFeTile::set(unsigned int key, gchar const *value) { argument 50 SPFilterPrimitive::set(key, value);
|
/inkscape/src/xml/ |
H A D | attribute-record.h | 2 * @brief Key-value pair representing an attribute 13 #define SP_REPR_ATTRIBUTE_VALUE(a) ((a)->value) 19 * @brief Key-value pair representing an attribute 26 : key(k), value(v) {} 30 /** @brief Shared pointer to the value of the attribute */ 31 Inkscape::Util::ptr_shared<char> value; member in struct:Inkscape::XML::AttributeRecord
|
H A D | node.h | 141 * to store the return value, use g_strdup(). To parse the string, use methods 193 * @param value The node's new content 195 virtual void setContent(char const *value)=0; 204 * @param value The new value of the attribute 207 virtual void setAttribute(char const *key, char const *value, bool is_interactive=false)=0; 209 void setAttribute(char const *key, Glib::ustring const &value, bool is_interactive=false) argument 211 setAttribute(key, value.empty() ? NULL : value.c_str(), is_interactive); 214 void setAttribute(Glib::ustring const &key, Glib::ustring const &value, boo argument [all...] |
/inkscape/src/ |
H A D | helper-fns.h | 24 * @param value ascii representation of the number 31 inline double helperfns_read_number(gchar const *value, bool warning = true) { argument 32 if (!value) { 33 g_warning("Called helperfns_read_number with value==null_ptr, this can lead to unexpected behaviour."); 37 double ret = g_ascii_strtod(value, &end); 40 g_warning("helper-fns::helperfns_read_number() Unable to convert \"%s\" to number", value); 49 inline bool helperfns_read_bool(gchar const *value, bool default_value){ argument 50 if (!value) return default_value; 51 switch(value[0]){ 53 if (strncmp(value, "tru 68 helperfns_read_vector(const gchar* value) argument [all...] |
H A D | sp-linear-gradient.cpp | 33 void SPLinearGradient::set(unsigned int key, const gchar* value) { argument 36 this->x1.readOrUnset(value, SVGLength::PERCENT, 0.0, 0.0); 41 this->y1.readOrUnset(value, SVGLength::PERCENT, 0.0, 0.0); 46 this->x2.readOrUnset(value, SVGLength::PERCENT, 1.0, 1.0); 51 this->y2.readOrUnset(value, SVGLength::PERCENT, 0.0, 0.0); 56 SPGradient::set(key, value);
|
H A D | preferences-test.h | 20 value(0) {} 24 value = val.getInt(); 26 int value; member in class:TestObserver 74 obs.value = 1; 76 TS_ASSERT_EQUALS(obs.value, 1); // no notifications sent before adding 80 TS_ASSERT_EQUALS(obs.value, 10); 82 TS_ASSERT_EQUALS(obs.value, 10); // value should not change 86 TS_ASSERT_EQUALS(obs.value, 10); // no notifications sent after removal 93 obs.value [all...] |
H A D | sp-mesh-patch.cpp | 79 void SPMeshpatch::set(unsigned int key, const gchar* value) { argument 82 if (value) { 83 this->tensor_string = new Glib::ustring( value ); 95 * Virtual set: set attribute to value.
|
H A D | sp-missing-glyph.cpp | 49 void SPMissingGlyph::set(unsigned int key, const gchar* value) { argument 56 this->d = g_strdup(value); 62 double number = value ? g_ascii_strtod(value, 0) : 0; 71 double number = value ? g_ascii_strtod(value, 0) : 0; 80 double number = value ? g_ascii_strtod(value, 0) : 0; 89 double number = value ? g_ascii_strtod(value, [all...] |
H A D | sp-script.cpp | 58 void SPScript::set(unsigned int key, const gchar* value) { argument 65 this->xlinkhref = g_strdup(value); 69 SPObject::set(key, value);
|
H A D | sp-solid-color.cpp | 44 void SPSolidColor::set(unsigned int key, const gchar* value) { argument 50 SPPaintServer::set(key, value); 55 * Virtual set: set attribute to value. 71 cairo_pattern_t *cp = cairo_pattern_create_rgba ( c->value.color.v.c[0], c->value.color.v.c[1], c->value.color.v.c[2], SP_SCALE24_TO_FLOAT(this->style->solid_opacity.value) * opacity );
|
/inkscape/src/libcroco/ |
H A D | cr-attr-sel.c | 135 if (cur->value) { 136 guchar *value = NULL; local 138 value = (guchar *) g_strndup (cur->value->stryng->str, 139 cur->value->stryng->len); 140 if (value) { 162 (str_buf, "\"%s\"", value); 164 g_free (value); 165 value = NULL; 220 if (a_this->value) { [all...] |
H A D | cr-attr-sel.h | 51 CRString *value ; member in struct:_CRAttrSel
|
H A D | cr-declaration.h | 44 *It is actually a chained list of property/value pairs. 52 /**The value of the property.*/ 53 CRTerm *value ; member in struct:_CRDeclaration
|
/inkscape/src/live_effects/parameter/ |
H A D | bool.h | 40 bool get_value() const { return value; }; 42 inline operator bool() const { return value; }; 48 bool value; member in class:Inkscape::LivePathEffect::BoolParam
|
H A D | random.h | 45 inline gdouble get_value() { return value; } ; 52 gdouble value; member in class:Inkscape::LivePathEffect::RandomParam
|
H A D | text.h | 57 Glib::ustring value; member in class:Inkscape::LivePathEffect::TextParam
|
/inkscape/src/svg/ |
H A D | svg-angle.h | 34 // The object's value is valid / exists in SVG. 37 // The unit of value. 40 // The value of this SVGAngle as found in the SVG. 41 float value; member in class:SVGAngle 43 // The value in degrees. 49 value = computed = v;
|
/inkscape/src/util/ |
H A D | ege-tags.h | 57 Label(std::string const& lang, std::string const& value); 61 std::string value; member in class:ege::Label
|
/inkscape/src/ui/dialog/ |
H A D | new-from-template.cpp | 64 void NewFromTemplate::setCreateButtonSensitive(bool value) argument 66 _create_template_button.set_sensitive(value);
|
/inkscape/src/display/ |
H A D | nr-filter-colormatrix.h | 46 virtual void set_value(double value); 59 double value; member in class:Inkscape::Filters::FilterColorMatrix
|