Home
last modified time | relevance | path

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

/packages/services/Telephony/utils/satellite/tools/src/main/java/com/android/telephony/tools/sats2/
DSatS2FileCreator.java62 List<S2CellId> sortedS2CellIds = denormalize(s2Cells, s2Level); in create() local
65 Collections.sort(sortedS2CellIds); in create()
66 System.out.println("Number of S2 cell IDs:" + sortedS2CellIds.size()); in create()
69 List<SatS2Range> satS2Ranges = createSatS2Ranges(sortedS2CellIds, s2Level); in create()
98 for (S2CellId s2CellId : sortedS2CellIds) { in create()
107 S2CellId prevCell = sortedS2CellIds.get(0).prev(); in create()
108 if (!sortedS2CellIds.contains(prevCell) in create()
119 S2CellId nextCell = sortedS2CellIds.get(sortedS2CellIds.size() - 1).next(); in create()
120 if (!sortedS2CellIds.contains(nextCell) in create()
192 private static List<SatS2Range> createSatS2Ranges(List<S2CellId> sortedS2CellIds, int s2Level) { in createSatS2Ranges() argument
[all …]