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

/frameworks/base/core/java/android/view/
H A DView.java21461 public void transformFromViewToWindowSpace(@Size(2) int[] inOutLocation) { argument
21462 if (inOutLocation == null || inOutLocation.length < 2) {
21463 throw new IllegalArgumentException("inOutLocation must be an array of two integers");
21468 inOutLocation[0] = inOutLocation[1] = 0;
21473 position[0] = inOutLocation[0];
21474 position[1] = inOutLocation[1];
21506 inOutLocation[0] = Math.round(position[0]);
21507 inOutLocation[
[all...]

Completed in 53 milliseconds