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

/solaris-x11-s11/open-src/lib/libXaw4/sun-src/
H A DXaw3_1List.c337 int one, another; local
344 another = (yloc - (int) lw->list.internal_height)
347 if (another >= lw->list.nrows) {
348 another = lw->list.nrows - 1;
356 another = (xloc - (int) lw->list.internal_width) / lw->list.col_width;
357 if (another >= lw->list.ncols) {
358 another = lw->list.ncols - 1;
365 if (another < 0) another = 0;
366 *item = one + another;
[all...]
/solaris-x11-s11/open-src/lib/libXaw5/sun-src/
H A DList.c403 int one, another; local
410 another = (yloc - (int) lw->list.internal_height)
413 if (another >= lw->list.nrows) {
414 another = lw->list.nrows - 1;
422 another = (xloc - (int) lw->list.internal_width) / lw->list.col_width;
423 if (another >= lw->list.ncols) {
424 another = lw->list.ncols - 1;
431 if (another < 0) another = 0;
432 *item = one + another;
[all...]

Completed in 20 milliseconds