Searched defs:ss (Results 1 - 21 of 21) sorted by relevance

/inkscape/src/
H A Dattribute-rel-svg.cpp93 std::stringstream ss; local
101 ss << s;
103 while(std::getline(ss,s,'"')){
105 std::getline(ss,s,'"');
H A Dversion.cpp27 std::stringstream ss; local
28 ss << string;
29 ss >> version->_major;
31 ss >> tmp;
32 ss >>version->_minor;
H A Dattribute-rel-css.cpp159 std::stringstream ss; local
167 ss << s;
171 while (std::getline(ss,s,'"')) {
173 std::getline(ss,s,'"');
180 std::getline(ss,s,'"');
181 std::getline(ss,s,'"');
184 std::getline(ss,s,'"');
185 std::getline(ss,s,'"');
H A Dinkview.cpp84 static GtkWidget *sp_svgview_control_show (struct SPSlideShow *ss);
85 static void sp_svgview_show_next (struct SPSlideShow *ss);
86 static void sp_svgview_show_prev (struct SPSlideShow *ss);
87 static void sp_svgview_goto_first (struct SPSlideShow *ss);
88 static void sp_svgview_goto_last (struct SPSlideShow *ss);
107 struct SPSlideShow */*ss*/)
115 struct SPSlideShow *ss)
120 sp_svgview_goto_first(ss);
124 sp_svgview_goto_last(ss);
127 if (ss
113 sp_svgview_main_key_press(GtkWidget * , GdkEventKey *event, struct SPSlideShow *ss) argument
173 struct SPSlideShow ss; local
316 g_signal_connect (G_OBJECT (w), "delete_event", (GCallback) sp_svgview_main_delete, &ss); local
317 g_signal_connect (G_OBJECT (w), "key_press_event", (GCallback) sp_svgview_main_key_press, &ss); local
341 sp_svgview_control_show(struct SPSlideShow *ss) argument
347 g_signal_connect(G_OBJECT (ctrlwin), "key_press_event", (GCallback) sp_svgview_main_key_press, ss); local
367 g_signal_connect(G_OBJECT(b), "clicked", (GCallback) sp_svgview_goto_first_cb, ss); local
377 g_signal_connect(G_OBJECT(b), "clicked", (GCallback) sp_svgview_show_prev_cb, ss); local
387 g_signal_connect(G_OBJECT(b), "clicked", (GCallback) sp_svgview_show_next_cb, ss); local
396 g_signal_connect(G_OBJECT(b), "clicked", (GCallback) sp_svgview_goto_last_cb, ss); local
429 sp_svgview_waiting_cursor(struct SPSlideShow *ss) argument
453 sp_svgview_normal_cursor(struct SPSlideShow *ss) argument
461 sp_svgview_set_document(struct SPSlideShow *ss, SPDocument *doc, int current) argument
473 sp_svgview_show_next(struct SPSlideShow *ss) argument
488 sp_svgview_show_prev(struct SPSlideShow *ss) argument
503 sp_svgview_goto_first(struct SPSlideShow *ss) argument
521 sp_svgview_goto_last(struct SPSlideShow *ss) argument
[all...]
H A Dselection-describer.cpp46 std::stringstream ss; local
55 ss << (first ? "" : ", ") << "<b>" << term << "</b>";
60 return g_strdup(ss.str().c_str());
/inkscape/src/extension/dbus/
H A Ddbus-init.cpp104 std::stringstream ss; local
105 ss << doc->serial();
106 name.append(ss.str());
/inkscape/src/libavoid/
H A Dvertices.cpp241 ShapeSet ss = ShapeSet(); local
256 ss.insert(contains[pID].begin(), contains[pID].end());
260 ss.insert(contains[qID].begin(), contains[qID].end());
269 if ((ss.find(k->id.objID) == ss.end()))
H A Dgraph.cpp384 ShapeSet& ss = _router->contains[iID]; local
386 if ((jID.isShape) && (ss.find(jID.objID) != ss.end()))
408 ShapeSet& ss = _router->contains[jID]; local
410 if ((iID.isShape) && (ss.find(iID.objID) != ss.end()))
451 ShapeSet ss = ShapeSet(); local
461 ss.insert(contains[iID].begin(), contains[iID].end());
465 ss.insert(contains[jID].begin(), contains[jID].end());
482 if ((ss
[all...]
H A Dvisibility.cpp353 ss(set)
359 (ss.find(pp.vInf->id.objID) != ss.end()))
372 ShapeSet& ss; member in class:Avoid::isBoundingShape
490 ShapeSet& ss = router->contains[centerID]; local
506 if (!(centerID.isShape) && (ss.find(inf->id.objID) != ss.end()))
552 COLA_ASSERT(centerID.isShape || (ss.find(k->id.objID) == ss.end()));
600 isBoundingShape isBounding(ss);
[all...]
H A Dorthogonal.cpp215 ShiftSegment *ss; member in struct:Avoid::Node
224 ss(NULL),
235 ss(NULL),
243 Node(ShiftSegment *ss, const double p) argument
246 ss(ss),
263 while (curr && (curr->ss || (curr->max[dim] > pos)))
280 while (curr && (curr->ss || (curr->min[dim] < pos)))
296 while (curr && (curr->ss || (curr->pos > min[dim])))
298 if (curr->ss
[all...]
/inkscape/src/2geom/
H A Dsbasis-2d.cpp52 SBasis ss[2]; local
55 ss[1] = Linear(1);
57 ss[0] = ss[1];
60 B += ss[0]*compose(fg[i], p);
61 ss[0] *= s[0];
63 ss[1] *= s[1];
H A Dconicsec.cpp1226 double ss = s * s; local
1235 result.coeff(0) = coeff(0) * cc + Bcs + coeff(2) * ss;
1236 result.coeff(2) = coeff(0) * ss - Bcs + coeff(2) * cc;
1237 result.coeff(1) = coeff(1) * (cc - ss) + 2 * (coeff(2) - coeff(0)) * cs;
/inkscape/src/ui/widget/
H A Dpage-sizer.cpp835 std::stringstream ss; local
836 ss << _("User units per ") << nv->display_units->abbr << "." ;
837 _scaleLabel.set_text( ss.str() );
H A Dstyle-swatch.cpp57 ToolObserver(Glib::ustring const &path, StyleSwatch &ss) : argument
59 _style_swatch(ss)
71 StyleObserver(Glib::ustring const &path, StyleSwatch &ss) : argument
73 _style_swatch(ss)
H A Dselected-style.cpp64 Inkscape::UI::Widget::SelectedStyle *ss = (Inkscape::UI::Widget::SelectedStyle *) data; local
65 ss->update();
/inkscape/src/widgets/
H A Dpencil-toolbar.cpp298 std::ostringstream ss; local
299 ss << tol;
310 lpe_simplify->getRepr()->setAttribute("threshold", ss.str());
326 lpe_simplify->getRepr()->setAttribute("threshold", ss.str());
H A Dstroke-style.cpp50 Inkscape::StrokeStyle *ss = dynamic_cast<Inkscape::StrokeStyle*>(widget); local
51 if (ss) {
52 ss->setDesktop(desktop);
/inkscape/src/ui/dialog/
H A Dsymbols.cpp549 std::stringstream ss; local
550 ss << i;
555 tmpSVGOutput += ss.str();
/inkscape/src/extension/implementation/
H A Dscript.cpp733 std::ostringstream ss; local
734 ss<< "--selected-nodes=" << id << ":" << sp << ":" << nl;
735 Glib::ustring selected = ss.str();
/inkscape/src/ui/tools/
H A Dfreehand-base.cpp320 std::ostringstream ss; local
321 ss << tol;
322 spdc_apply_simplify(ss.str(), dc, item);
H A Dtext-tool.cpp441 std::stringstream ss; local
442 ss << std::hex << tc->uni;
443 ss >> uv;
473 std::stringstream ss; local
474 ss << std::hex << ehex;
475 ss >> uv;

Completed in 2375 milliseconds