Home
last modified time | relevance | path

Searched refs:tmpRes (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/celllayout/
DReorderPreviewAnimation.kt82 val tmpRes = intArrayOf(0, 0) constant
83 cellLayout.regionToCenterPoint(cellX0, cellY0, spanX, spanY, tmpRes)
84 val (x0, y0) = tmpRes
85 cellLayout.regionToCenterPoint(cellX1, cellY1, spanX, spanY, tmpRes)
86 val (x1, y1) = tmpRes
/packages/modules/Wifi/service/java/com/android/server/wifi/
DWifiCarrierInfoManager.java1277 byte[] tmpRes = parseHex(hex); in parseHexWithoutLength()
1278 if (tmpRes.length == 0) { in parseHexWithoutLength()
1279 return tmpRes; in parseHexWithoutLength()
1282 byte[] result = new byte[tmpRes.length - 1]; in parseHexWithoutLength()
1283 System.arraycopy(tmpRes, 1, result, 0, tmpRes.length - 1); in parseHexWithoutLength()