Searched refs:who (Results 1 - 6 of 6) sorted by relevance

/inkscape/src/libnrtype/
H A DFontFactory.h134 /// Semi-private: tells the font_factory taht the font_instance 'who' has died and should be removed from loadedFaces
135 void UnrefFace(font_instance* who);
138 void AddInCache(font_instance *who);
H A DFontFactory.cpp773 void font_factory::UnrefFace(font_instance *who) argument
775 if ( who ) {
778 if ( loadedFaces.find(who->descr) == loadedFaces.end() ) {
780 char *tc = pango_font_description_to_string(who->descr);
781 g_warning("unrefFace %p=%s: failed\n",who,tc);
784 loadedFaces.erase(loadedFaces.find(who->descr));
785 // printf("unrefFace %p: success\n",who);
790 void font_factory::AddInCache(font_instance *who) argument
792 if ( who == NULL ) return;
795 if ( ents[i].f == who ) {
[all...]
/inkscape/src/livarot/
H A DShape.cpp239 * Copy point and edge data from `who' into this object, discarding
243 Shape::Copy (Shape * who) argument
245 if (who == NULL)
263 Reset (who->numberOfPoints(), who->numberOfEdges());
264 type = who->type;
265 _need_points_sorting = who->_need_points_sorting;
266 _need_edges_sorting = who->_need_edges_sorting;
278 _pts = who->_pts;
279 _aretes = who
[all...]
H A DPath.cpp60 void Path::Copy(Path * who) argument
70 for (std::vector<PathDescr*>::const_iterator i = who->descr_cmd.begin();
71 i != who->descr_cmd.end();
H A DPath.h102 void Copy (Path * who);
/inkscape/src/
H A Dsplivarot.cpp62 bool Ancetre(Inkscape::XML::Node *a, Inkscape::XML::Node *who);
353 // it's only used when there are 2 objects, and for operations who need to know the
2258 Ancetre(Inkscape::XML::Node *a, Inkscape::XML::Node *who) argument
2260 if (who == NULL || a == NULL)
2262 if (who == a)
2264 return Ancetre(a->parent(), who);

Completed in 251 milliseconds