/inkscape/src/ |
H A D | mod360.cpp | 12 double const ret = ( isnan(m) local 17 g_return_val_if_fail(0.0 <= ret && ret < 360.0, 19 return ret;
|
H A D | winmain.cpp | 60 int ret; local 61 ret = main (__argc, __argv); 62 return ret;
|
H A D | sp-factory.cpp | 99 SPObject *ret = NULL; local 102 ret = new SPBox3D; 104 ret = new Box3DSide; 106 ret = new Inkscape::ColorProfile; 108 ret = new Persp3D; 110 ret = new SPAnchor; 112 ret = new SPClipPath; 114 ret = new SPDefs; 116 ret = new SPDesc; 120 ret [all...] |
H A D | helper-fns.h | 37 double ret = g_ascii_strtod(value, &end); local 44 ret = 0; 46 return ret; 76 double ret = g_ascii_strtod(beg, &end); local 81 // ret = 0; 84 v.push_back(ret);
|
H A D | round-test.h | 15 double ret; member in struct:RoundTest::Case 41 Case tmp = {-nonneg_round_cases[i].arg0, -nonneg_round_cases[i].ret}; 63 TS_ASSERT_EQUALS( result, nonneg_round_cases[i].ret ); 72 TS_ASSERT_EQUALS( result, nonpos_round_cases[i].ret );
|
H A D | sp-anchor.cpp | 111 char *ret = g_strdup_printf(_("to %s"), quoted_href); local 113 return ret;
|
H A D | dir-util.cpp | 239 gchar *ret = g_strdup (full_path); local 242 return ret;
|
/inkscape/src/libdepixelize/priv/ |
H A D | integral.h | 39 T ret = 0; local 43 ret += width * f(begin + width * (i + .5)); 45 return ret;
|
H A D | optimization-kopf2011.h | 193 Path ret = path; local 208 for ( typename Path::size_type j = 0 ; j != ret.size() ; ++j ) { 209 Point<T> prev = ( j == 0 ) ? ret.back() : ret[j-1]; 210 Point<T> next = ( j + 1 == ret.size() ) ? ret.front() : ret[j+1] ; 212 if ( !ret[j].visible || !ret[j].smooth ) 216 typename Path::iterator it = ret [all...] |
/inkscape/src/svg/ |
H A D | test-stubs.cpp | 33 long long int ret = it==int_prefs.end() ? def : it->second; local 34 return ret;
|
/inkscape/src/extension/internal/ |
H A D | cairo-png-out.cpp | 71 bool ret = renderer->setupDocument(ctx, doc, TRUE, 0., NULL); local 72 if (ret) { 75 ret = ctx->finish(); 83 return ret;
|
/inkscape/src/util/ |
H A D | accumulators.h | 93 bool ret = false; local 94 for (; first != last; ++first) ret |= *first; 95 return ret;
|
H A D | list-container-test.h | 9 bool ret = true; local 16 ret = false; 19 ret = false; 25 return ret && n_values == 0 && iter == c.end();
|
/inkscape/src/libcroco/ |
H A D | cr-libxml-node-iface.c | 36 char const *ret = strrchr(qname, ':'); local 37 if (ret) 38 return ++ret;
|
/inkscape/src/xml/ |
H A D | croco-node-iface.cpp | 11 char const *ret = std::strrchr(qname, ':'); local 12 if (ret) 13 return ++ret;
|
H A D | rebase-hrefs.cpp | 22 bool ret = true; local 25 ret = false; 39 ret = false; 55 ret = false; 59 return ret; 65 std::string ret = Glib::build_filename(abs_base_dir, href); local 68 && !Inkscape::IO::file_test(ret.c_str(), G_FILE_TEST_EXISTS) 90 ret = sp_absref; 93 return ret; 114 /* First search attributes for xlink:href and sodipodi:absref, putting the rest in ret 120 List<AttributeRecord const> ret; local 181 std::string ret; local [all...] |
/inkscape/src/2geom/ |
H A D | path-intersection.h | 54 Crossings ret; local 61 ret.insert(ret.end(), cc.begin(), cc.end()); 64 return ret;
|
H A D | point.cpp | 178 Point ret(a); 179 ret.normalize(); 180 return ret; 195 Point ret; local 197 ret = -b; 199 ret = b[X] < 0.0 ? -b : b; 201 ret = b; 203 return ret;
|
H A D | convex-hull.cpp | 165 OptRect ret; local 166 if (empty()) return ret; 167 ret = Rect(left(), top(), right(), bottom()); 168 return ret; 173 Point ret; local 174 ret[Y] = std::numeric_limits<Coord>::infinity(); 177 if (ret[Y] >= i->y()) { 178 ret = *i; 184 return ret; 189 Point ret; local [all...] |
H A D | crossing.cpp | 33 CrossingGraph ret; 41 ret.push_back(CrossingNode()); 44 ret[j].add_edge(Edge(crs[i].a, crs[i].ta, false)); 45 ret[j].add_edge(Edge(crs[i].a, crs[i].ta, true)); 46 ret[j].add_edge(Edge(crs[i].b, crs[i].tb, false)); 47 ret[j].add_edge(Edge(crs[i].b, crs[i].tb, true)); 50 for(unsigned i = 0; i < ret.size(); i++) { 51 for(unsigned j = 0; j < ret[i].edges.size(); j++) { 52 unsigned pth = ret[i].edges[j].path; 53 double t = ret[ 144 Crossings ret; local 154 Crossings ret; local 164 CrossingSet ret; local 174 CrossingSet ret; local [all...] |
H A D | svg-path-parser.h | 158 PathVector ret; local 159 SubpathInserter iter(ret); 163 return ret; 169 PathVector ret; local 170 SubpathInserter iter(ret); 174 return ret;
|
H A D | transforms.cpp | 48 Zoom ret; local 49 ret._scale = new_r.width() / old_r.width(); 50 ret._trans = new_r.min() - old_r.min(); 51 return ret;
|
/inkscape/src/ui/tools/ |
H A D | zoom-tool.cpp | 80 bool ret = false; local 98 ret = true; 105 ret = true; 118 ret = true; 155 ret = true; 179 ret = true; 188 ret = true; 200 ret = this->deleteSelectedDrag(MOD__CTRL_ONLY(event)); 222 if (!ret) { 223 ret [all...] |
/inkscape/src/live_effects/ |
H A D | lpe-jointype.cpp | 159 Geom::PathVector ret; local 165 ret.insert(ret.begin(), tmp.begin(), tmp.end()); 168 return ret;
|
/inkscape/src/ui/ |
H A D | dialog-events.cpp | 100 gboolean ret = FALSE; local 109 ret = TRUE; 131 ret = TRUE; 141 return ret;
|