/inkscape/test/ |
H A D | unittest.cpp | 39 char const *tmp[] = {"foo", ""}; local 40 char **tmpArgv = const_cast<char **>(tmp);
|
/inkscape/src/xml/ |
H A D | repr-sorting.cpp | 33 Inkscape::XML::Node const *tmp = LCA(const_cast<Inkscape::XML::Node const *>(a), const_cast<Inkscape::XML::Node const *>(b)); member in class:Inkscape::XML 34 return const_cast<Inkscape::XML::Node *>(tmp); 52 Inkscape::XML::Node const * tmp = AncetreFils(const_cast<Inkscape::XML::Node const*>(descendent), const_cast<Inkscape::XML::Node const*>(ancestor)); member in class:Inkscape::XML 53 return const_cast<Inkscape::XML::Node *>(tmp);
|
H A D | rebase-hrefs-test.h | 37 Glib::ustring tmp; local 38 tmp = prefix; 39 tmp += " ["; 43 tmp += tmp2; 47 tmp += "]"; 48 g_message("%s", tmp.c_str());
|
H A D | rebase-hrefs.cpp | 229 gchar const *tmp = ir->attribute("xlink:href"); local 230 if ( !tmp ) { 233 uri = tmp;
|
/inkscape/src/ |
H A D | test-helpers.h | 37 SPDocument* tmp = SPDocument::createNewDoc( NULL, TRUE, true ); local 38 if ( tmp ) { 42 suite->_doc = tmp; 46 tmp->doUnref();
|
H A D | verbs-test.h | 38 char tmp[16]; local 39 snprintf( tmp, sizeof(tmp), "Verb# %d", i ); 40 tmp[sizeof(tmp)-1] = 0; 41 std::string descr(tmp);
|
H A D | round-test.h | 41 Case tmp = {-nonneg_round_cases[i].arg0, -nonneg_round_cases[i].ret}; local 42 nonpos_round_cases.push_back( tmp );
|
H A D | version.cpp | 30 char tmp=0; local 31 ss >> tmp; local
|
H A D | profile-manager.cpp | 53 SPObject* tmp = *it; local 54 _knownProfiles.erase( remove(_knownProfiles.begin(), _knownProfiles.end(), tmp), _knownProfiles.end() ); 55 if ( includes(tmp) ) { 56 _removeOne(tmp); 63 SPObject* tmp = *it; local 64 _knownProfiles.push_back(tmp); 65 _addOne(tmp);
|
H A D | attributes-test.h | 578 gchar* tmp = g_strdup_printf( "Attribute string with enum %d {%s} not handled", id, sp_attribute_name(id) ); local 579 TS_WARN( std::string((const char*)tmp) ); 580 g_free( tmp );
|
H A D | TRPIFormatter.h | 89 std::vector<bool> tmp; local 90 _status.push_back(tmp); 105 bool tmp = true; local 106 _status[_suiteIndex].push_back(tmp);
|
H A D | color.cpp | 197 char tmp[64] = {0}; local 199 sp_svg_write_color(tmp, sizeof(tmp), toRGBA32(0x0ff)); 200 css << tmp; local
|
H A D | PylogFormatter.h | 114 CXXTEST_STD(vector)<ErrorLevel> tmp; local 115 _status.push_back(tmp); 132 ErrorLevel tmp = OK; local 133 _status[_suiteIndex].push_back(tmp); 148 CXXTEST_STD(string)tmp(expression); 149 _traceCurrent( file, line, tmp ); 155 CXXTEST_STD(string)tmp(expression); 156 _warnCurrent( file, line, tmp ); 162 CXXTEST_STD(string)tmp(expression); 163 _failCurrent( file, line, tmp ); [all...] |
H A D | prefix.cpp | 117 char *tmp; local 124 tmp = strrchr (path, '\n'); 125 if (tmp) *tmp = 0; 131 tmp = path + len - 10; 132 *tmp = 0; 191 char *tmp, *newpath; local 196 tmp = br_locate_prefix (symbol); 197 if (!tmp) return NULL; 199 if (strcmp (tmp, "/") 386 char *tmp, *result; local [all...] |
H A D | resource-manager.cpp | 36 std::string tmp = path; local 37 while ( !tmp.empty() && (tmp != prior) ) { 38 prior = tmp; 40 parts.push_back( Glib::path_get_basename(tmp) ); 41 tmp = Glib::path_get_dirname(tmp);
|
/inkscape/src/2geom/ |
H A D | point.cpp | 84 Point tmp; local 88 tmp[i] = 1.0; 91 tmp[i] = -1.0; 93 tmp[i] = 0.0; 106 *this = tmp; 110 *this = tmp * sqrt(0.5);
|
H A D | recursive-bezier-intersection.cpp | 136 double tmp = p[0][dim]*u; local 140 tmp = (tmp + tn*bc*p[i][dim])*u; 142 r[dim] = (tmp + tn*t*p[n][dim]);
|
/inkscape/src/svg/ |
H A D | svg-color-test.h | 43 unsigned tmp = i; local 46 unsigned const component = components[tmp % nc]; 48 tmp /= nc; 50 assert( tmp == 0 ); 95 SVGICCColor tmp; local 101 bool parseRet = sp_svg_read_icc_color( str, &result, &tmp ); 103 TSM_ASSERT_EQUALS( testDescr, tmp.colors.size(), cases[i].numEntries ); 106 TSM_ASSERT_EQUALS( testDescr, tmp.colorProfile, std::string(cases[i].name) ); 109 TSM_ASSERT( testDescr, tmp.colorProfile.empty() );
|
/inkscape/src/live_effects/ |
H A D | lpe-jointype.cpp | 161 Geom::PathVector tmp = Inkscape::outline(path_in[i], line_width, local 165 ret.insert(ret.begin(), tmp.begin(), tmp.end());
|
H A D | lpe-roughen.cpp | 244 SPCurve const * tmp; local 246 tmp = jitter(nCurve->last_segment(), prev, last_move); 253 tmp = addNodesAndJitter(nCurve->last_segment(), prev, last_move, time, last); 257 nCurve->append_continuous(tmp, 0.001); 259 nCurve = tmp->copy(); 261 delete tmp;
|
/inkscape/src/libavoid/ |
H A D | shape.cpp | 95 VertInf *tmp = it; local 98 delete tmp; 139 VertInf *tmp = it; local 142 _router->vertices.addVertex(tmp); 161 VertInf *tmp = it; local 164 _router->vertices.removeVertex(tmp); 232 VertInf *tmp = iter; local 236 EdgeInfList& visList = tmp->visList; 246 EdgeInfList& invisList = tmp->invisList; 254 EdgeInfList& orthogList = tmp [all...] |
/inkscape/src/widgets/ |
H A D | ege-paint-def.cpp | 161 uint16_t* tmp = new uint16_t[4]; local 162 tmp[0] = (getR() << 8) | getR(); 163 tmp[1] = (getG() << 8) | getG(); 164 tmp[2] = (getB() << 8) | getB(); 165 tmp[3] = 0xffff; 166 dest = reinterpret_cast<char*>(tmp); 170 std::string tmp("<paint>"); 174 tmp += "<nocolor/>"; 179 tmp += "<clear/>"; 184 tmp [all...] |
/inkscape/src/ui/dialog/ |
H A D | template-load-tab.cpp | 274 TemplateData tmp = _processTemplateFile(file); local 275 if (tmp.display_name != "") 276 _tdata[tmp.display_name] = tmp;
|
/inkscape/src/display/ |
H A D | drawing-surface.cpp | 300 cairo_rectangle_int_t tmp; local 302 cairo_region_get_rectangle(cache_region, i, &tmp); 303 dc.rectangle(_convertRect(tmp)); 321 cairo_rectangle_int_t tmp; local 323 cairo_region_get_rectangle(_clean_region, i, &tmp); 324 dc.rectangle(_convertRect(tmp));
|
/inkscape/src/io/ |
H A D | sys.cpp | 86 gchar tmp[32]; local 87 g_snprintf( tmp, sizeof(tmp), "\\x%02x", (0x0ff & utf8name[i]) ); 88 str += tmp;
|