Home | History | Annotate | Download | only in util

Lines Matching refs:yPos

336         int yPos = -1;
342 yPos = j;
348 xPos, yPos, iconIdx));
353 if ((newIconIndex = inspectMatrix(x, yPos, cntX, cntY, matrix)) != NOOP
359 // Rule2: check (x1-n, yPos + increment), (x1-n, yPos - increment)
360 // (x2-n, yPos + 2*increment), (x2-n, yPos - 2*increment)
367 nextYPos1 = yPos + coeff * increment;
368 nextYPos2 = yPos - coeff * increment;
419 int yPos = -1;
425 yPos = j;
432 xPos, yPos, iconIndex));
436 for (int y = yPos + increment; 0 <= y && y <cntY && 0 <= y; y += increment) {
453 y = yPos + increment * coeff;
503 private static boolean isValid(int xPos, int yPos, int countX, int countY) {
504 return (0 <= xPos && xPos < countX && 0 <= yPos && yPos < countY);