Searched defs:that (Results 1 - 2 of 2) sorted by relevance

/inkscape/src/
H A Dsp-gradient.cpp103 * return true if this gradient is "equivalent" to that gradient.
105 * @param that - A gradient to compare this to
107 bool SPGradient::isEquivalent(SPGradient *that) argument
114 if (this->getStopCount() != that->getStopCount()) { break; }
115 if (this->hasStops() != that->hasStops()) { break; }
116 if (!this->getVector() || !that->getVector()) { break; }
117 if (this->isSwatch() != that->isSwatch()) { break; }
122 (SP_IS_LINEARGRADIENT(this) && SP_IS_LINEARGRADIENT(that)) ||
123 (SP_IS_RADIALGRADIENT(this) && SP_IS_RADIALGRADIENT(that)) ||
124 (SP_IS_MESH(this) && SP_IS_MESH(that))) {
157 isAligned(SPGradient *that) argument
[all...]
/inkscape/cxxtest/cxxtest/
H A DWin32Gui.h328 Win32Gui *that = (Win32Gui *)GetWindowLong( window, GWL_USERDATA ); local
329 return that->handle( window, message, wParam, lParam );

Completed in 34 milliseconds