Searched refs:success (Results 1 - 25 of 33) sorted by relevance

12

/inkscape/src/live_effects/parameter/
H A Darray.cpp43 unsigned int success = sp_svg_number_read_d(strarray[0], &newx); local
44 success += sp_svg_number_read_d(strarray[1], &newy);
46 if (success == 2) {
H A Drandom.cpp50 unsigned int success = sp_svg_number_read_d(stringarray[0], &newval); local
51 if (success == 1) {
52 success += sp_svg_number_read_d(stringarray[1], &newstartseed);
53 if (success == 2) {
H A Dparameter.cpp81 unsigned int success = sp_svg_number_read_d(strvalue, &newval); local
82 if (success == 1) {
H A Dpoint.cpp91 unsigned int success = sp_svg_number_read_d(strarray[0], &newx); local
92 success += sp_svg_number_read_d(strarray[1], &newy);
94 if (success == 2) {
/inkscape/src/
H A Dsnapped-line.cpp177 bool success = false; local
182 success = true;
186 return success;
192 bool success = false; local
201 bool const c1 = !success;
210 success = true;
216 return success;
222 bool success = false;
227 success = true;
231 return success;
[all...]
H A Dsnapped-curve.cpp169 bool success = false; local
177 success = true;
181 return success;
187 bool success = false; local
199 bool const c1 = !success;
208 success = true;
216 return success;
222 bool success = false;
232 bool const c1 = !success;
241 success
[all...]
H A Dfile.cpp556 bool const success = openDialogInstance->show(); local
561 if (!success)
910 bool success = saveDialog->show(); local
911 if (!success) {
914 return success;
944 success = file_save(parentWindow, doc, fileName, selectionType, TRUE, !is_copy, save_method);
946 if (success && doc->getURI()) {
953 return success;
967 bool success = true; local
989 success
1327 bool success = importDialogInstance->show(); local
1462 bool success = exportDialogInstance->show(); local
[all...]
H A Dsnapped-point.cpp135 bool success = false; local
140 success = true;
144 return success;
H A Dsp-path.cpp340 bool success = this->performPathEffect(curve); local
342 if (success && write) {
354 } else if (!success) {
H A Dsp-guide.cpp134 unsigned int success = sp_svg_number_read_d(strarray[0], &newx); local
135 success += sp_svg_number_read_d(strarray[1], &newy);
137 if (success == 2 && (fabs(newx) > 1e-6 || fabs(newy) > 1e-6)) {
157 unsigned int success = sp_svg_number_read_d(strarray[0], &newx); local
158 success += sp_svg_number_read_d(strarray[1], &newy);
160 if (success == 2) {
175 } else if (success == 1) {
H A Dbox3d-side.cpp203 bool success = this->performPathEffect(c_lpe); local
205 if (success) {
H A Dshortcuts.cpp344 bool success = saveDialog->show(); local
345 if (!success) {
374 bool const success = importFileDialog->show(); local
376 if (!success) {
H A Dsp-lpe-item.cpp692 bool success = false; local
696 success = this->performPathEffect(c, true);
699 success = this->performPathEffect(c, true);
707 success = false;
710 if (success) {
H A Dsp-spiral.cpp375 bool success = this->performPathEffect(c_lpe); local
377 if (success) {
H A Dsp-ellipse.cpp455 bool success = this->performPathEffect(c_lpe); local
457 if (success) {
H A Dsp-star.cpp456 bool success = this->performPathEffect(c_lpe); local
458 if (success) {
H A Dobject-snapper.cpp290 bool success = false; local
310 success = true;
315 if (success) {
/inkscape/src/extension/
H A Dloader.cpp58 bool success = load_dependency(&dep); local
59 if( !success ){
/inkscape/src/ui/dialog/
H A Docaldialogs.cpp889 bool success; local
892 success = file_remote->copy_finish(result);
894 success = false;
898 on_image_downloaded(path, success);
900 on_thumbnail_downloaded(path, success);
904 void ImportDialog::on_image_downloaded(Glib::ustring path, bool success) argument
911 if (!success && !cancelled_image) {
914 if (!success) {
924 // success = false; //has no effect, value not returned
930 void ImportDialog::on_thumbnail_downloaded(Glib::ustring path, bool success) argument
[all...]
H A Docaldialogs.h500 void on_image_downloaded(Glib::ustring path, bool success);
501 void on_thumbnail_downloaded(Glib::ustring path, bool success);
/inkscape/src/io/
H A Dsys.cpp213 bool success = true; local
232 success = ((st.st_mode & S_IWRITE) != 0);
242 return success;
/inkscape/src/extension/implementation/
H A Dxslt.cpp232 int success = xsltSaveResultToFilename(filename, newdoc, _stylesheet, 0); local
240 if (success < 1) {
H A Dscript.cpp599 bool success = false; local
603 success = fileout.toFile(lfilename);
611 if (success == false) {
/inkscape/src/ui/tools/
H A Dtext-tool.cpp878 bool success = sp_te_delete(this->text, this->text_sel_start, this->text_sel_end, enter_pair); local
879 (void)success; // TODO cleanup
908 bool success = sp_te_delete(this->text, this->text_sel_start, this->text_sel_end, bspace_pair); local
911 if (success) {
917 if (success) {
949 bool success = sp_te_delete(this->text, this->text_sel_start, this->text_sel_end, del_pair); local
954 if (success) {
1261 Attempts to paste system clipboard into the currently edited text, returns true on success
1380 bool success = sp_te_delete(tc->text, tc->text_sel_start, tc->text_sel_end, pair); local
1383 if (success) {
[all...]
/inkscape/src/widgets/
H A Dlpe-toolbar.cpp84 bool success = lpetool_try_construction(lc, type); local
85 if (success) {

Completed in 179 milliseconds

12