Searched defs:value (Results 1 - 25 of 213) sorted by relevance

123456789

/inkscape/src/debug/
H A Dtimestamp.cpp26 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 Dsimple-event.h47 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 DMessageTest.h22 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 Dcolormatrix.h27 gdouble value; member in class:SPFeColorMatrix
34 virtual void set(unsigned int key, const gchar* value);
H A Dmergenode.cpp46 * 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 Dtile.cpp44 * 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 Dattribute-record.h2 * @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 Dnode.h141 * 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 Dhelper-fns.h24 * @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 Dsp-linear-gradient.cpp33 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 Dpreferences-test.h20 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 Dsp-mesh-patch.cpp79 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 Dsp-missing-glyph.cpp49 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 Dsp-script.cpp58 void SPScript::set(unsigned int key, const gchar* value) { argument
65 this->xlinkhref = g_strdup(value);
69 SPObject::set(key, value);
H A Dsp-solid-color.cpp44 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 Dcr-attr-sel.c135 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 Dcr-attr-sel.h51 CRString *value ; member in struct:_CRAttrSel
H A Dcr-declaration.h44 *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 Dbool.h40 bool get_value() const { return value; };
42 inline operator bool() const { return value; };
48 bool value; member in class:Inkscape::LivePathEffect::BoolParam
H A Drandom.h45 inline gdouble get_value() { return value; } ;
52 gdouble value; member in class:Inkscape::LivePathEffect::RandomParam
H A Dtext.h57 Glib::ustring value; member in class:Inkscape::LivePathEffect::TextParam
/inkscape/src/svg/
H A Dsvg-angle.h34 // 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 Dege-tags.h57 Label(std::string const& lang, std::string const& value);
61 std::string value; member in class:ege::Label
/inkscape/src/ui/dialog/
H A Dnew-from-template.cpp64 void NewFromTemplate::setCreateButtonSensitive(bool value) argument
66 _create_template_button.set_sensitive(value);
/inkscape/src/display/
H A Dnr-filter-colormatrix.h46 virtual void set_value(double value);
59 double value; member in class:Inkscape::Filters::FilterColorMatrix

Completed in 62 milliseconds

123456789