Searched refs:size (Results 1 - 25 of 428) sorted by relevance

1234567891011>>

/inkscape/packaging/macosx/
H A Dcreate-stock-icon-theme.sh70 for size in $gtk_stock_sizes; do
71 mkdir "${icon_theme_name}/${size}x${size}"
78 for size in $gtk_stock_sizes; do
79 cp -RP "${stock_src}/$size" "${icon_theme_name}/${size}x${size}/stock"
86 for size in $gtk_stock_sizes; do
87 cd "${icon_theme_name}/${size}x${size}/stoc
[all...]
/inkscape/src/
H A Ddir-util.h37 * @param size size of result buffer.
48 char *inkscape_rel2abs(char const *path, char const *base, char *result, size_t const size);
50 char *inkscape_abs2rel(char const *path, char const *base, char *result, size_t const size);
H A Dsp-item-rm-unsatisfied-cns.cpp20 for (unsigned i = item.constraints.size(); i--;) {
21 g_assert( i < item.constraints.size() );
24 g_assert( snappoint_ix < int(snappoints.size()) );
30 g_assert( i < item.constraints.size() );
H A Dicon-size.h30 GtkIconSize getRegisteredIconSize( IconSize size );
/inkscape/src/2geom/
H A Dpolynomial.h53 //unsigned size() const { return coeff.size();}
54 unsigned degree() const { return size()-1;}
61 const unsigned out_size = std::max(size(), p.size());
62 const unsigned min_size = std::min(size(), p.size());
68 for(unsigned i = min_size; i < size(); i++)
70 for(unsigned i = min_size; i < p.size(); i++)
72 assert(result.size()
[all...]
H A Dpiecewise.h114 * The size of the returned vector equals n_derivs+1.
120 for(unsigned i = 0; i < val.size(); i++) {
131 inline unsigned size() const { return segs.size(); } function in class:Geom::Piecewise
139 * Asserts that basic size and order invariants are correct
142 assert(cuts.size() - segs.size() == 1);
148 assert(cuts.size() - segs.size() == 1);
168 high = (high == -1) ? size()
[all...]
/inkscape/share/extensions/
H A Dempty_icon.py10 self.OptionParser.add_option("-s", "--size", action="store", type="int", dest="icon_size", default="16", help="Icon size")
14 size = self.options.icon_size
18 root.set("width", str(size) + 'px')
19 root.set("height", str(size) + 'px')
20 root.set("viewBox", "0 0 " + str(size) + " " + str(size) )
28 namedview.set(inkex.addNS('zoom', 'inkscape'), str(256.0/size) )
29 namedview.set(inkex.addNS('cx', 'inkscape'), str(size/2.0) )
30 namedview.set(inkex.addNS('cy', 'inkscape'), str(size/2.
[all...]
H A Drtree.py23 def rtree(turtle, size, min, pt=False):
24 if size < min:
26 turtle.fd(size)
29 rtree(turtle, size*random.uniform(0.5,0.9), min, pt)
33 rtree(turtle, size*random.uniform(0.5,0.9), min, pt)
37 turtle.bk(size)
44 self.OptionParser.add_option("-s", "--size",
46 dest="size", default=100.0,
47 help="initial branch size")
51 help="minimum branch size")
[all...]
H A Dlayout_nup.py85 size=(o.sizeX,o.sizeY),
120 size=None,
132 pgSize -- page size, width x height
136 size -- override calculated size, width x height
163 size = self.expandTuple(unit, size, length = 2)
164 if size == None or calculateSize == True or len(size) < 2 or size[
[all...]
/inkscape/src/debug/
H A Dsysv-heap.cpp40 stats.size += info.usmblks;
45 stats.size += info.fsmblks;
49 stats.size += info.uordblks;
54 stats.size += info.fordblks;
58 stats.size += info.hblkhd;
H A Dgc-heap.h31 stats.size = GC::Core::get_heap_size();
32 stats.bytes_used = stats.size - GC::Core::get_free_bytes();
/inkscape/src/inkgc/
H A Dgc-managed.h30 void *operator new(std::size_t size, argument
35 return ::operator new(size, scan, collect);
38 void *operator new[](std::size_t size, argument
43 return ::operator new[](size, scan, collect);
H A Dgc-core.h49 void *(*malloc)(std::size_t size);
50 void *(*malloc_atomic)(std::size_t size);
51 void *(*malloc_uncollectable)(std::size_t size);
52 void *(*malloc_atomic_uncollectable)(std::size_t size);
72 static inline void *malloc(std::size_t size) { argument
73 return _ops.malloc(size);
75 static inline void *malloc_atomic(std::size_t size) { argument
76 return _ops.malloc_atomic(size);
78 static inline void *malloc_uncollectable(std::size_t size) { argument
79 return _ops.malloc_uncollectable(size);
81 malloc_atomic_uncollectable(std::size_t size) argument
135 operator new(std::size_t size, Inkscape::GC::ScanPolicy scan, Inkscape::GC::CollectionPolicy collect, Inkscape::GC::CleanupFunc cleanup=NULL, void *data=NULL) argument
167 operator new(std::size_t size, Inkscape::GC::ScanPolicy scan, Inkscape::GC::CleanupFunc cleanup=NULL, void *data=NULL) argument
176 operator new[](std::size_t size, Inkscape::GC::ScanPolicy scan, Inkscape::GC::CollectionPolicy collect, Inkscape::GC::CleanupFunc cleanup=NULL, void *data=NULL) argument
186 operator new[](std::size_t size, Inkscape::GC::ScanPolicy scan, Inkscape::GC::CleanupFunc cleanup=NULL, void *data=NULL) argument
[all...]
/inkscape/cxxtest/sample/
H A DCreatedTest.h18 CreatedTest( unsigned size ) : _buffer( new char[size] ) {}
/inkscape/src/2geom/numeric/
H A Dvector.h76 for ( size_t i = 0; i < size(); ++i )
85 for ( size_t i = 0; i < size(); ++i )
94 for ( size_t i = 0; i < size(); ++i )
121 size_t size() const function in class:Geom::NL::detail::BaseVectorImpl
142 if (v1.size() != v2.size()) return false;
144 for (size_t i = 0; i < v1.size(); ++i)
156 if (_vector.size() == 0 ) return os;
158 for (unsigned int i = 1; i < _vector.size(); ++i)
286 m_size = _vector.size();
[all...]
H A Dfitting-model.h64 * - size : returns the number of unknown coefficients that appear in
107 * size_t size() const;
136 * size_t size() const;
163 for (size_t i = 1; i < coeff.size(); ++i)
170 size_t size() const function in class:Geom::NL::LFMPowerBasis
193 poly.resize(size());
194 for (size_t i = 0; i < raw_data.size(); ++i)
222 known_term = coeff[m_model.size()-1] * sample_parameter;
225 size_t size() const function in class:Geom::NL::LFMNormalizedPowerBasis
227 return m_model.size();
277 size_t size() const function in class:Geom::NL::LFMConicEquation
322 size_t size() const function in class:Geom::NL::LFMCircleEquation
368 size_t size() const function in class:Geom::NL::LFMSBasis
404 size_t size() const function in class:Geom::NL::LFMD2SBasis
450 size_t size() const function in class:Geom::NL::LFMBezier
487 size_t size() const function in class:Geom::NL::LFMBezierCurveN
[all...]
/inkscape/src/libuemf/
H A Duwmf_print.c339 \returns size of entire header structure
351 int size = wmfheader_get(contents, blimit, &Placeable, &Header); local
378 return(size);
423 int size = U_WMRSETBKCOLOR_get(contents, &Color); local
424 if(size>0){
431 int size = U_WMRSETBKMODE_get(contents, &iMode); local
432 if(size>0){
439 int size = U_WMRSETMAPMODE_get(contents, &iMode); local
440 if(size>0){
447 int size local
460 int size = U_WMRSETPOLYFILLMODE_get(contents, &iMode); local
468 int size = U_WMRSETSTRETCHBLTMODE_get(contents, &iMode); local
476 int size = U_WMRSETTEXTCHAREXTRA_get(contents, &iMode); local
484 int size = U_WMRSETTEXTCOLOR_get(contents, &Color); local
493 int size = U_WMRSETTEXTJUSTIFICATION_get(contents, &Count, &Extra); local
502 int size = U_WMRSETWINDOWORG_get(contents, &coord); local
510 int size = U_WMRSETWINDOWEXT_get(contents, &coord); local
518 int size = U_WMRSETVIEWPORTORG_get(contents, &coord); local
526 int size = U_WMRSETVIEWPORTEXT_get(contents, &coord); local
534 int size = U_WMROFFSETWINDOWORG_get(contents, &coord); local
542 int size = U_WMRSCALEWINDOWEXT_get(contents, &Denom, &Num); local
553 int size = U_WMROFFSETVIEWPORTORG_get(contents, &coord); local
561 int size = U_WMRSCALEVIEWPORTEXT_get(contents, &Denom, &Num); local
572 int size = U_WMRLINETO_get(contents, &coord); local
580 int size = U_WMRMOVETO_get(contents, &coord); local
588 int size = U_WMREXCLUDECLIPRECT_get(contents, &rect16); local
598 int size = U_WMRINTERSECTCLIPRECT_get(contents, &rect16); local
609 int size = U_WMRARC_get(contents, &StartArc, &EndArc, &rect16); local
621 int size = U_WMRELLIPSE_get(contents, &rect16); local
633 int size = U_WMRFLOODFILL_get(contents, &Mode, &Color, &coord); local
644 int size = U_WMRPIE_get(contents, &StartArc, &EndArc, &rect16); local
656 int size = U_WMRRECTANGLE_get(contents, &rect16); local
667 int size = U_WMRROUNDRECT_get(contents, &Width, &Height, &rect16); local
681 int size = U_WMRPATBLT_get(contents, &Dst, &cwh, &dwRop3); local
697 int size = U_WMRSETPIXEL_get(contents, &Color, &coord); local
706 int size = U_WMROFFSETCLIPRGN_get(contents, &coord); local
716 int size = U_WMRTEXTOUT_get(contents, &Dst, &Length, &string); local
729 int size = U_WMRBITBLT_get(contents, &Dst, &cwh, &Src, &dwRop3, &Bm16, &px); local
745 int size = U_WMRSTRETCHBLT_get(contents, &Dst, &cDst, &Src, &cSrc, &dwRop3, &Bm16, &px); local
760 int size = U_WMRPOLYGON_get(contents, &Length, &Data); local
769 int size = U_WMRPOLYLINE_get(contents, &Length, &Data); local
780 int size = U_WMRESCAPE_get(contents, &Escape, &Length, &Data); local
802 int size = U_WMRFILLREGION_get(contents, &Region, &Brush); local
814 int size = U_WMRFRAMEREGION_get(contents, &Region, &Brush, &Height, &Width); local
825 int size = U_WMRSETTEXTALIGN_get(contents, &Region); local
833 int size = U_WMRPAINTREGION_get(contents, &Region); local
841 int size = U_WMRSELECTCLIPREGION_get(contents, &Region); local
849 int size = U_WMRSELECTOBJECT_get(contents, &Object); local
857 int size = U_WMRSETTEXTALIGN_get(contents, &iMode); local
868 int size = U_WMRCHORD_get(contents, &StartArc, &EndArc, &rect16); local
880 int size = U_WMRSETMAPPERFLAGS_get(contents, &Flags4); local
894 int size = U_WMREXTTEXTOUT_get(contents, &Dst, &Length, &Opts, &string, &dx, &rect16); local
917 int size = U_WMRSETDIBTODEV_get(contents, &Dst, &cwh, &Src, &cUsage, &ScanCount, &StartScan, &dib); local
931 int size = U_WMRSELECTPALETTE_get(contents, &Palette); local
945 int size = U_WMRANIMATEPALETTE_get(contents, &Palette, &PalEntries); local
955 int size = U_WMRSETPALENTRIES_get(contents, &Palette, &PalEntries); local
965 int size = U_WMRPOLYPOLYGON_get(contents, &nPolys, &aPolyCounts, &Points); local
973 int size = U_WMRSELECTCLIPREGION_get(contents, &Palette); local
990 int size = U_WMRDIBBITBLT_get(contents, &Dst, &cwh, &Src, &dwRop3, &dib); local
1005 int size = U_WMRDIBSTRETCHBLT_get(contents, &Dst, &cDst, &Src, &cSrc, &dwRop3, &dib); local
1021 int size = U_WMRDIBCREATEPATTERNBRUSH_get(contents, &Style, &cUsage, &TBm16, &dib); local
1041 int size = U_WMRSTRETCHDIB_get(contents, &Dst, &cDst, &Src, &cSrc, &cUsage, &dwRop3, &dib); local
1063 int size = U_WMREXTFLOODFILL_get(contents, &Mode, &Color, &coord); local
1241 int size = U_WMRDELETEOBJECT_get(contents, &Object); local
1257 int size = U_WMRCREATEPALETTE_get(contents, &Palette, &PalEntries); local
1272 int size = U_WMRCREATEPATTERNBRUSH_get(contents, &Bm16, &pasize, &Pattern); local
1286 int size = U_WMRCREATEPENINDIRECT_get(contents, &pen); local
1294 int size = U_WMRCREATEFONTINDIRECT_get(contents, &font); local
1304 int size = U_WMRCREATEBRUSHINDIRECT_get(contents, &brush); local
1322 int size = U_WMRCREATEBRUSHINDIRECT_get(contents, &region); local
1343 size_t size; local
[all...]
/inkscape/src/trace/
H A Dpool.h64 size = sizeof(T) > sizeof(void *) ? sizeof(T) : sizeof(void *);
94 int size; member in class:pool
103 //printf("pool allocating block: %d (size:%d)...", i, blocksize);//debug
104 block[i] = (void *)malloc(blocksize * size);
109 *(void**)p = (void *)(p + size);
110 p += size;
/inkscape/src/widgets/
H A Dicon.h18 #include "icon-size.h"
47 GtkWidget *sp_icon_new( Inkscape::IconSize size, const gchar *name );
48 GdkPixbuf *sp_pixbuf_new( Inkscape::IconSize size, const gchar *name );
51 Gtk::Widget *sp_icon_get_icon( const Glib::ustring &oid, Inkscape::IconSize size = Inkscape::ICON_SIZE_BUTTON );
54 int sp_icon_get_phys_size(int size);
57 void queueIconPrerender( Glib::ustring const &oid, Inkscape::IconSize size = Inkscape::ICON_SIZE_BUTTON );
/inkscape/cxxtest/cxxtest/
H A DTestSuite.cpp39 // Max dump size
81 bool sameData( const void *x, const void *y, unsigned size )
83 if ( size == 0 )
94 while ( size -- )
104 const char *sizeExpr, unsigned size,
107 if ( !sameData( x, y, size ) ) {
110 tracker().failedAssertSameData( file, line, xExpr, yExpr, sizeExpr, x, y, size );
101 doAssertSameData( const char *file, unsigned line, const char *xExpr, const void *x, const char *yExpr, const void *y, const char *sizeExpr, unsigned size, const char *message ) argument
/inkscape/src/io/
H A Dbufferstream.cpp72 return buffer.size() - position;
92 if (position >= (int)buffer.size())
H A Dstringstream.cpp51 return buffer.size() - position;
68 if (position >= (int)buffer.size())
/inkscape/share/extensions/Barcode/
H A DCode25i.py52 size = len(number) / 2
54 for i in range(size):
/inkscape/src/live_effects/
H A Dlpe-vonkoch.cpp36 if (res && _pathvector.size()==1 && _pathvector.front().size()==1){
94 Point B = refpath.pointAt(refpath.size());
104 for (unsigned i=0; i<generating_path.size(); i++){
106 if(generating_path[i].size()==1){
112 }else if(generating_path[i].size()>=2){
133 for (unsigned k = 0; k < path_in.size(); k++){
134 path_in_complexity+=path_in[k].size();
136 double complexity = std::pow(transforms.size(), nbgenerations) * path_in_complexity;
138 int k = transforms.size();
[all...]
/inkscape/src/trace/potrace/
H A Dbitmap.h61 ptrdiff_t size = (ptrdiff_t)dy * (ptrdiff_t)h * (ptrdiff_t)BM_WORDSIZE; local
64 if (size < 0 || (h != 0 && dy != 0 && size / h / dy != BM_WORDSIZE)) {
76 bm->map = (potrace_word *) malloc(size);
87 guaranteed that size will fit into the ptrdiff_t type. */
88 ptrdiff_t size = (ptrdiff_t)bm->dy * (ptrdiff_t)bm->h * (ptrdiff_t)BM_WORDSIZE; local
89 memset(bm->map, c ? -1 : 0, size);
95 ptrdiff_t size = (ptrdiff_t)bm->dy * (ptrdiff_t)bm->h * (ptrdiff_t)BM_WORDSIZE; local
99 memcpy(bm1->map, bm->map, size);
106 ptrdiff_t size local
[all...]

Completed in 54 milliseconds

1234567891011>>