Searched refs:typeArray (Results 1 – 3 of 3) sorted by relevance
/aosp12/packages/apps/Launcher3/tests/src/com/android/launcher3/util/ |
H A D | LauncherModelHelper.java | 362 public int[][][] createGrid(int[][][] typeArray) { in createGrid() argument 363 return createGrid(typeArray, 1); in createGrid() 366 public int[][][] createGrid(int[][][] typeArray, int startScreen) { in createGrid() argument 371 return createGrid(typeArray, startScreen, defaultProfileId); in createGrid() 383 int[][][] ids = new int[typeArray.length][][]; in createGrid() 384 for (int i = 0; i < typeArray.length; i++) { in createGrid() 392 ids[i] = new int[typeArray[i].length][]; in createGrid() 393 for (int y = 0; y < typeArray[i].length; y++) { in createGrid() 394 ids[i][y] = new int[typeArray[i][y].length]; in createGrid() 395 for (int x = 0; x < typeArray[i][y].length; x++) { in createGrid() [all …]
|
/aosp12/frameworks/base/core/java/android/hardware/camera2/utils/ |
H A D | TypeReference.java | 429 private static boolean containsTypeVariable(Type[] typeArray) { in containsTypeVariable() argument 430 if (typeArray == null) { in containsTypeVariable() 434 for (Type type : typeArray) { in containsTypeVariable()
|
/aosp12/frameworks/base/telephony/java/android/telephony/data/ |
H A D | ApnSetting.java | 1135 String[] typeArray; in fromString() local 1152 typeArray = new String[a.length - 13]; in fromString() 1153 System.arraycopy(a, 13, typeArray, 0, a.length - 13); in fromString() 1161 typeArray = a[13].split("\\s*\\|\\s*"); in fromString() 1214 getApnTypesBitmaskFromString(TextUtils.join(",", typeArray)), in fromString()
|