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

/inkscape/src/
H A Dsp-item-notify-moveto.cpp12 #define return_if_fail(test) if (!(test)) { printf("WARNING: assertion '%s' failed", #test); return; }
H A DTRPIFormatter.h56 const TestDescription& test = suite.testDescription(j); local
57 (*_o) << " <test suite-type=\"unit\">" << endl;
64 (*_o) << " <suiteName>" << test.suiteName() << "</suiteName>" << endl;
65 (*_o) << " <testName>" << test.testName() << "</testName>" << endl;
67 // (*_o) << " <report name=\"" << test.suiteName() << "|" << test.testName() << "\" path=\"index.html\"/>" << endl;
74 (*_o) << " </test>" << endl;
H A DPylogFormatter.h25 PylogFormatter( OutputStream *o, const char* name = "test" ) :
51 const TestDescription& test = suite.testDescription(j); local
61 (*_o) << test.suiteName() << "_|_" << test.testName();
64 unsigned const sent = strlen( test.suiteName() ) + strlen( test.testName() ) + 1;
H A Dgraphlayout.cpp214 CheckProgress test(0.0001,100,selected,rs,nodelookup);
215 ConstrainedMajorizationLayout alg(c->rects,c->edges,eweights,ideal_connector_length,test);
H A Dline-geometry.cpp89 // pt lies on the line and thus skip the following test
90 Geom::Point test = point_from_lambda (lambda); local
91 if (!pts_coincide (pt, test)) {
H A Ddocument.cpp342 // FIXME: it may be that prepend_current_dir_if_relative works OK on windows too, test!
866 // FIXME: it may be that prepend_current_dir_if_relative works OK on windows too, test!
1269 bool (*test)(Geom::Rect const &, Geom::Rect const &), bool take_insensitive = false, bool into_groups = false)
1276 s = find_items_in_area(s, SP_GROUP(o), dkey, area, test, take_insensitive, into_groups);
1280 if ( box && test(area, *box) && (take_insensitive || child->isVisibleAndUnlocked(dkey))) {
/inkscape/cxxtest/
H A Dcxxtestgen.py3 Generate test source file for CxxTest.
16 --template=TEMPLATE Use TEMPLATE file to generate the test runner
17 --include=HEADER Include HEADER in test runner before other headers
168 '''Scan all input files for test suites'''
176 '''Scan single input file for test suites'''
242 '''Check if current line starts a new test suite'''
248 sys.stdout.write( "%s:%s: Warning: Inline test suites are deprecated.\n" % (fileName, lineNo) )
272 '''Check if current line starts a test'''
278 '''Add a test function to the current suite'''
279 test
[all...]
H A Dcxxtestgen.pl7 print STDERR "Generate test source file for CxxTest.\n";
20 print STDERR " --template=TEMPLATE Use TEMPLATE file to generate the test runner\n";
21 print STDERR " --include=HEADER Include \"HEADER\" in test runner before other headers\n";
99 # Reading the input files and scanning for test cases
102 my (@suites, $suite, $test, $inBlock);
170 print "$fileName:$lineNo: Warning: Inline test suites are deprecated.\n";
202 $test = { 'name' => $name,
204 push @{suiteTests()}, $test;
281 sub testName() { return $test->{'name'}; }
282 sub testLine() { return $test
[all...]
/inkscape/src/livarot/
H A DShape.cpp575 int test = 0; local
578 test = 1;
584 test = 1;
588 test = 0;
592 test = -1;
597 test = -1;
599 if (test == 0)
619 if (test > 0)
631 int test = 0; local
634 test
758 int test = 0; local
825 int test = 0; local
961 int test = 0; local
1017 int test = 0; local
1724 int test = CmpToVert (pvalx, list[le].x,pvals,list[le].starting); local
1760 int test = CmpToVert (pvalx, list[ri].x,pvals,list[ri].starting); local
[all...]
/inkscape/packaging/wix/
H A Dinstall.bat20 @rem uncomment following line if you want to test the installer
/inkscape/src/extension/internal/
H A Demf-inout.h203 static int in_hatches(PEMF_CALLBACK_DATA d, char *test);
206 static int in_images(PEMF_CALLBACK_DATA d, const char *test);
210 static int in_gradients(PEMF_CALLBACK_DATA d, const char *test);
214 static int in_clips(PEMF_CALLBACK_DATA d, const char *test);
H A Dwmf-inout.h195 static int in_hatches(PWMF_CALLBACK_DATA d, char *test);
198 static int in_images(PWMF_CALLBACK_DATA d, char *test);
203 static int in_clips(PWMF_CALLBACK_DATA d, const char *test);
H A Dtext_reassemble.h286 /* padding added to rectangles before overlap test */
381 int is_mn_unicode(int test);
H A Demf-inout.cpp227 int Emf::in_hatches(PEMF_CALLBACK_DATA d, char *test){ argument
230 if(strcmp(test,d->hatches.strings[i])==0)return(i+1);
450 int Emf::in_images(PEMF_CALLBACK_DATA d, const char *test){ argument
453 if(strcmp(test,d->images.strings[i])==0)return(i+1);
621 int Emf::in_gradients(PEMF_CALLBACK_DATA d, const char *test){ argument
624 if(strcmp(test,d->gradients.strings[i])==0)return(i+1);
729 int Emf::in_clips(PEMF_CALLBACK_DATA d, const char *test){ argument
732 if(strcmp(test,d->clips.strings[i])==0)return(i+1);
H A Dtext_reassemble.c39 Compilation of test program (with all debugging output, but not loop testing):
64 -DTEST build the test program
65 -DDBG_LOOP force the test program to cycle 5 times. Useful for finding
90 int is_mn_unicode(int test){ argument
178 if(test<MN_TEST_LIMIT){
179 spage_idx = test >> 12;
181 cpage_column = (test>>8) & 15;
184 cd_column = test>>5 & 7;
186 cd_bit = test & 31;
2337 a construct is at best ambiguous. The test i
[all...]
H A Dwmf-inout.cpp204 int Wmf::in_hatches(PWMF_CALLBACK_DATA d, char *test){ argument
207 if(strcmp(test,d->hatches.strings[i])==0)return(i+1);
427 int Wmf::in_images(PWMF_CALLBACK_DATA d, char *test){ argument
430 if(strcmp(test,d->images.strings[i])==0)return(i+1);
638 int Wmf::in_clips(PWMF_CALLBACK_DATA d, const char *test){ argument
641 if(strcmp(test,d->clips.strings[i])==0)return(i+1);
/inkscape/src/io/
H A Dsys.h37 bool file_test( char const *utf8name, GFileTest test );
H A Dsys.cpp182 bool Inkscape::IO::file_test( char const *utf8name, GFileTest test )
200 exists = g_file_test (filename, test);
/inkscape/src/libcola/
H A Dgradient_projection.cpp151 double test=0; local
153 test += fabs(place[i]-old_place[i]);
156 test += (*it)->absoluteDisplacement();
158 if(test>tolerance) {
/inkscape/share/extensions/
H A Drender_barcode_qrcode.py66 def makeImpl(self, test, maskPattern):
85 self.setupTypeInfo(test, maskPattern)
88 self.setupTypeNumber(test)
187 def setupTypeNumber(self, test):
192 mod = (not test and ( (bits >> i) & 1) == 1)
196 mod = (not test and ( (bits >> i) & 1) == 1)
199 def setupTypeInfo(self, test, maskPattern):
207 mod = (not test and ( (bits >> i) & 1) == 1)
219 mod = (not test and ( (bits >> i) & 1) == 1);
229 self.modules[self.moduleCount - 8][8] = (not test)
[all...]
H A Dinkweb.js85 if ( re.test(style) ) {
H A Dgcodetools.py5 9 May 2011 Changed test of tool diameter to square it
1025 #CLT added test of x in range
3151 def test(self,test_function): member in class:Arangement_Genetic
3180 ### Fast test function using weave's from scipy inline function
3223 test = weave.inline(
3463 #population.test(population.test_spiece_centroid)
3497 population.test(population.test_spiece_centroid)
3639 self.OptionParser.add_option("", "--arrangement-inline-test", action="store", type="inkbool", dest="arrangement_inline_test", default=False, help="Use C-inline test (some additional packets will be needed)")
5456 if i==i1 and j==j1 and ii==ii1 and jj==jj1 : #two matches. Now test linearit
[all...]
/inkscape/cxxtest/cxxtest/
H A DTestTracker.h28 const TestDescription &test() const { return *_test; } function in class:CxxTest::TestTracker
H A DErrorFormatter.h63 o << wd.strTotalTests( s ) << (wd.numTotalTests() == 1 ? " test" : " tests");
236 (*_o) << "In " << tracker().suite().suiteName() << "::" << tracker().test().testName() << ":" << endl;
/inkscape/cxxtest/sample/msvc/
H A DFixFiles.bat25 print STDERR " --tests=SPEC Use SPEC for the test files (default: '../gui/*.h ../*.h')\n\n";
94 # How to generate the test runner, "runner.cpp"

Completed in 284 milliseconds