Lines Matching defs:ex
1240 gchar const *SPObject::getTagName(SPException *ex) const
1244 if (!SP_EXCEPTION_IS_OK(ex)) {
1253 gchar const *SPObject::getAttribute(gchar const *key, SPException *ex) const
1257 if (!SP_EXCEPTION_IS_OK(ex)) {
1266 void SPObject::setAttribute(gchar const *key, gchar const *value, SPException *ex)
1270 g_return_if_fail(SP_EXCEPTION_IS_OK(ex));
1276 void SPObject::setAttribute(char const *key, Glib::ustring const &value, SPException *ex)
1278 setAttribute(key, value.empty() ? NULL : value.c_str(), ex);
1280 void SPObject::setAttribute(Glib::ustring const &key, Glib::ustring const &value, SPException *ex)
1283 value.empty() ? NULL : value.c_str(), ex);
1287 void SPObject::removeAttribute(gchar const *key, SPException *ex)
1290 g_return_if_fail(SP_EXCEPTION_IS_OK(ex));