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

/frameworks/base/core/java/android/view/
H A DView.java21388 public void transformFromViewToWindowSpace(@Size(2) int[] inOutLocation) { argument
21389 if (inOutLocation == null || inOutLocation.length < 2) {
21390 throw new IllegalArgumentException("inOutLocation must be an array of two integers");
21395 inOutLocation[0] = inOutLocation[1] = 0;
21400 position[0] = inOutLocation[0];
21401 position[1] = inOutLocation[1];
21433 inOutLocation[0] = Math.round(position[0]);
21434 inOutLocation[
[all...]

Completed in 249 milliseconds