Searched defs:s1 (Results 1 - 11 of 11) sorted by relevance

/inkscape/src/extension/
H A Ddb.h38 bool operator()(const char* s1, const char* s2) const { argument
39 if ( (s1 == NULL) && (s2 != NULL) ) {
41 } else if (s1 == NULL || s2 == NULL) {
44 return strcmp(s1, s2) < 0;
/inkscape/src/xml/
H A Dquote-test.h50 char const * s1; member in struct:XmlQuoteTest::__anon561
63 char* str = xml_quote_strdup(cases[i].s1);
/inkscape/cxxtest/cxxtest/
H A DValueTraits.cpp39 bool stringsEqual( const char *s1, const char *s2 ) argument
42 while ( (c = *s1++) == *s2++ )
/inkscape/src/live_effects/
H A Dlpe-sketch.cpp159 //This returns a random perturbation. Notice the domain is [s0,s0+first multiple of period>s1]...
161 LPESketch::computePerturbation (double s0, double s1){ argument
176 unsigned count = unsigned((s1-s0)/strokelength*tremble_frequency)+1;
177 //unsigned count = unsigned((s1-s0)/tremble_frequency)+1;
186 if ( s1-s0 > 1e-2)
187 dB[dim] = -(2*tremble_size-tremble_size.get_value())/(s0-s1)-B[dim]+A[dim];
243 //- Choose a rdm seg [s0,s1], find corresponding [t0,t1],
247 double s1=0.,s0 = ends_tolerance*strokelength+0.0001;//the root finder might miss 0. local
254 if (!closed && s1>piece_total_length - ends_tolerance.get_value()*strokelength) break;
261 // pick a new end point (s1
[all...]
/inkscape/src/
H A Dsp-filter.cpp539 bool ltstr::operator()(const char* s1, const char* s2) const argument
541 return strcmp(s1, s2) < 0;
H A Dverbs.h401 bool operator()(const char* s1, const char* s2) const { argument
402 if ( (s1 == NULL) && (s2 != NULL) ) {
404 } else if (s1 == NULL || s2 == NULL) {
407 return strcmp(s1, s2) < 0;
/inkscape/src/libavoid/
H A Dgeometry.cpp117 // segment s1-s2, blocking visibility.
119 bool segmentShapeIntersect(const Point& e1, const Point& e2, const Point& s1, argument
122 if (segmentIntersect(e1, e2, s1, s2))
127 else if ( (((s2 == e1) || pointOnLine(s1, s2, e1)) &&
128 (vecDir(s1, s2, e2) != 0))
130 (((s2 == e2) || pointOnLine(s1, s2, e2)) &&
131 (vecDir(s1, s2, e1) != 0)) )
212 // |s1 s3/ |s1
/inkscape/src/util/
H A Dziptool.cpp79 unsigned long s1 = value & 0xffff; local
81 s1 += b & 0xff;
82 s2 += s1;
83 value = ((s2 % ADLER32_BASE) << 16) | (s1 % ADLER32_BASE);
/inkscape/src/extension/internal/
H A Dodf.cpp1000 double s1 = svd.getS(1); local
1002 yscale = s1;
/inkscape/src/helper/
H A Dgeom-pathstroke.cpp314 double s1 = 0; local
320 s1 = -C/B;
321 s2 = -s1;
324 s1 = (-B + sqrt(B*B - 4*A*C))/(2*A);
328 double dr = (fabs(s1)<=fabs(s2)?s1:s2);
333 // std::cout << " s1: " << s1 << " s2: " << s2 << " dr: " << dr << std::endl;
/inkscape/src/extension/internal/pdfinput/
H A Dsvg-builder.cpp926 Count for how many characters s1 matches sp taking into account
930 static size_t MatchingChars(std::string s1, std::string sp) argument
935 while(is < s1.length() && ip < sp.length()) {
936 if (s1[is] == sp[ip]) {
940 if (s1[is] == '_') { // Valid matches to spaces in sp.

Completed in 56 milliseconds