Lines Matching defs:value
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)
211 setAttribute(key, value.empty() ? NULL : value.c_str(), is_interactive);
214 void setAttribute(Glib::ustring const &key, Glib::ustring const &value, bool is_interactive=false)
217 value.empty() ? NULL : value.c_str(), is_interactive);
227 * @param code The integer value corresponding to the string to be set as the name of this node