Lines Matching refs:oldw
197 register Widget oldw, reqw;
225 oldw = (Widget) XtStackAlloc(widgetSize, oldwCache);
227 (void) memcpy(oldw, w, (size_t) widgetSize);
257 /* Allocate and copy current constraints into oldw */
258 oldw->core.constraints = XtStackAlloc(constraintSize, oldcCache);
260 (void) memcpy(oldw->core.constraints,
274 redisplay = CallSetValues(wc, oldw, reqw, w, args, num_args);
277 CallConstraintSetValues(cwc, oldw, reqw, w, args, num_args);
284 set_val.old = oldw;
299 if (oldw->core.x != w->core.x) {
301 w->core.x = oldw->core.x;
304 if (oldw->core.y != w->core.y) {
306 w->core.y = oldw->core.y;
309 if (oldw->core.width != w->core.width) {
311 w->core.width = oldw->core.width;
314 if (oldw->core.height != w->core.height) {
316 w->core.height = oldw->core.height;
319 if (oldw->core.border_width != w->core.border_width) {
321 w->core.border_width = oldw->core.border_width;
409 (*set_values_almost) (oldw, w, &geoReq, &geoReply);
419 if ((w->core.width != oldw->core.width ||
420 w->core.height != oldw->core.height)
466 XtStackFree(oldw->core.constraints, oldcCache);
469 XtStackFree((XtPointer) oldw, oldwCache);