/inkscape/src/ |
H A D | sp-item-notify-moveto.cpp | 12 #define return_if_fail(test) if (!(test)) { printf("WARNING: assertion '%s' failed", #test); return; }
|
H A D | TRPIFormatter.h | 56 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 D | PylogFormatter.h | 25 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 D | graphlayout.cpp | 214 CheckProgress test(0.0001,100,selected,rs,nodelookup); 215 ConstrainedMajorizationLayout alg(c->rects,c->edges,eweights,ideal_connector_length,test);
|
H A D | line-geometry.cpp | 89 // 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 D | document.cpp | 342 // 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 D | cxxtestgen.py | 3 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 D | cxxtestgen.pl | 7 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 D | Shape.cpp | 575 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 D | install.bat | 20 @rem uncomment following line if you want to test the installer
|
/inkscape/src/extension/internal/ |
H A D | emf-inout.h | 203 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 D | wmf-inout.h | 195 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 D | text_reassemble.h | 286 /* padding added to rectangles before overlap test */ 381 int is_mn_unicode(int test);
|
H A D | emf-inout.cpp | 227 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 D | text_reassemble.c | 39 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 D | wmf-inout.cpp | 204 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 D | sys.h | 37 bool file_test( char const *utf8name, GFileTest test );
|
H A D | sys.cpp | 182 bool Inkscape::IO::file_test( char const *utf8name, GFileTest test ) 200 exists = g_file_test (filename, test);
|
/inkscape/src/libcola/ |
H A D | gradient_projection.cpp | 151 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 D | render_barcode_qrcode.py | 66 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 D | inkweb.js | 85 if ( re.test(style) ) {
|
H A D | gcodetools.py | 5 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 D | TestTracker.h | 28 const TestDescription &test() const { return *_test; } function in class:CxxTest::TestTracker
|
H A D | ErrorFormatter.h | 63 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 D | FixFiles.bat | 25 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"
|