Searched defs:count (Results 1 - 25 of 66) sorted by relevance

123

/inkscape/test/src/
H A Dattributes-test.cpp524 size_t count = sizeof(all_attrs) / sizeof(all_attrs[0]); local
525 std::vector<AttributeInfo> vect(all_attrs, all_attrs + count);
/inkscape/src/extension/
H A Dinit.cpp331 int *count = (int *)in_data; local
336 (*count)++;
342 int count = 1; local
345 while (count != 0) {
346 count = 0;
347 db.foreach(check_extensions_internal, (gpointer)&count);
/inkscape/src/
H A Dunicoderange.cpp38 int i=0, count=0; local
46 count+=i;
55 count+=i;
60 return count+1;
H A Dselection-describer.cpp67 int count=0; local
74 count++;
78 return count;
84 int count=0; local
88 count += item->isFiltered();
91 return count;
H A Dsp-filter.cpp442 int count = 0; local
446 if (SP_IS_FILTER_PRIMITIVE(primitive_obj)) count++;
449 return count;
H A Dsp-path.cpp63 int count = this->nodesInPath(); local
87 _("%i node%s"), _("%i nodes%s"), count), count, lpe_desc);
/inkscape/src/inkgc/
H A Dgc-alloc.h50 pointer allocate(size_type count, void const * =NULL) { argument
51 return static_cast<pointer>(::operator new(count * sizeof(T), SCANNED, collect));
/inkscape/src/util/
H A Dege-tags.cpp142 int count = 0; local
144 count = counts[key];
146 return count;
H A Dlist-container.h108 ListContainer(size_type count, const_reference value) { argument
109 for ( ; count ; --count ) {
113 ListContainer(size_type count) { argument
115 for ( ; count ; --count ) {
146 void insert(const_iterator position, size_type count, const_reference value) argument
148 _insert_from_temp(position, ListContainer(count, value));
256 void insert_after(const_iterator position, size_type count, argument
259 _insert_after_from_temp(position, ListContainer(count, valu
[all...]
H A Dexpression-evaluator.cpp299 void ExpressionEvaluator::acceptTokenCount (int count, TokenType token_type) argument
302 string += count;
/inkscape/cxxtest/cxxtest/
H A DLinkedList.cpp55 unsigned count = 0; local
57 ++ count;
58 return count;
H A DRealDescriptions.cpp220 unsigned count = 0; local
222 count += sd->numTests();
223 return count;
/inkscape/src/libavoid/
H A Dtimer.h93 long count; member in class:Avoid::Timer
/inkscape/src/libuemf/
H A Dsymbol_convert.c948 int count=0; local
955 count++;
958 *ecount=count;
H A Duemf_utf.c41 void U_swap2(void *ul, unsigned int count);
689 int count=0; local
692 if(*src == find){ *src = replace; count++; }
695 return(count);
/inkscape/src/extension/implementation/
H A Dxslt.cpp218 int count = 0; local
225 xslt_params[count++] = g_strdup_printf("%s", parameter.str().c_str());
226 xslt_params[count++] = g_strdup_printf("'%s'", value.str().c_str());
228 xslt_params[count] = NULL;
/inkscape/src/widgets/
H A Dpaintbucket-toolbar.cpp124 gint count = 0; local
130 gtk_list_store_set( model, &iter, 0, (*iterator).c_str(), 1, count, -1 );
131 count++;
190 gint count = 0; local
196 gtk_list_store_set( model, &iter, 0, (*iterator).c_str(), 1, count, -1 );
197 count++;
H A Ddash-selector.cpp162 int count = 0; // will hold the NULL terminator at the end of the dashes list local
169 for (int i = 0; dashes[i]; i++,count++) {
198 count--; // the one slot for custom patterns
199 double *d = dashes[count];
205 this->set_data("pattern", dashes[count]);
206 this->dash_combo.set_active(count);
H A Dpencil-toolbar.cpp195 gint count = 0; local
200 gtk_list_store_set( model, &iter, 0, reinterpret_cast<gchar*>(items->data), 1, count, -1 );
201 count++;
/inkscape/src/libdepixelize/
H A Dkopftracer2011.cpp510 int count = 1; local
556 count += local_count;
559 return count;
606 // Iterate over nodes and count them
/inkscape/src/ui/widget/
H A Dunit-tracker.cpp50 gint count = gtk_tree_model_iter_n_children(GTK_TREE_MODEL(_store), 0); local
51 if ((count > 0) && (_active > count)) {
52 _setActive(--count);
/inkscape/src/display/
H A Dnr-svgfonts.cpp164 int count = 0; local
176 count++;
184 count++;
190 *glyphs = (cairo_glyph_t*) malloc(count*sizeof(cairo_glyph_t));
195 count=0;
219 (*glyphs)[count].index = i;
220 (*glyphs)[count].x = x;
221 (*glyphs)[count++].y = y;
233 (*glyphs)[count].index = i;
234 (*glyphs)[count]
[all...]
/inkscape/src/io/
H A Dinkjar.cpp333 int JarFile::read(guint8 *buf, unsigned int count) argument
336 if ((nbytes = fread(buf, 1, count, _file)) != count) {
/inkscape/src/live_effects/
H A Dlpe-sketch.cpp176 unsigned count = unsigned((s1-s0)/strokelength*tremble_frequency)+1; local
177 //unsigned count = unsigned((s1-s0)/tremble_frequency)+1;
179 for (unsigned i=0; i<count; i++){
197 res.setDomain(Interval(s0,s0+count*strokelength/tremble_frequency));
198 //res.setDomain(Interval(s0,s0+count*tremble_frequency));
/inkscape/src/ui/dialog/
H A Dpolar-arrange-tab.cpp192 * @param count number of objects in the selection
195 static float calcAngle(float arcBegin, float arcEnd, int count, int n) argument
199 if(delta > 0.01) count--; // If not a complete circle, put an object also at the extremes of the arc;
201 float angle = n / (float)count;
306 int count = 0; local
324 ++count;
349 // We decrement the count by 1 as we are not going to lay
351 --count;
383 float angle = calcAngle(arcBeg, arcEnd, count, i);

Completed in 108 milliseconds

123