Home
last modified time | relevance | path

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

/aosp12/packages/modules/GeoTZ/data_pipeline/src/main/java/com/android/timezone/location/data_pipeline/steps/
H A DTypes.java151 public final List<S2Polygon> s2PolygonList; field in Types.TzS2Polygons
154 public TzS2Polygons(String tzId, List<S2Polygon> s2PolygonList) { in TzS2Polygons() argument
158 this.s2PolygonList = new ArrayList<>(); in TzS2Polygons()
159 s2PolygonList.forEach(x -> this.s2PolygonList.add(new S2Polygon(x))); in TzS2Polygons()
172 && s2PolygonsEquals(s2PolygonList, that.s2PolygonList); in equals()
228 + ", s2PolygonList=" + s2PolygonList in toString()
241 for (S2Polygon s2Polygon : tzPolygons.s2PolygonList) { in store()
H A DCanonicalizeTzS2Polygons.java202 new ArrayList<>(oldOutputPolygons.s2PolygonList); in processFile()
203 combinedS2Polygons.addAll(inputTzS2Polygons.s2PolygonList); in processFile()
207 tzS2Polygons = new TzS2Polygons(canonicalTzId, inputTzS2Polygons.s2PolygonList); in processFile()
H A DGeoJsonTzToTzS2Polygons.java220 List<S2Polygon> s2PolygonList = new ArrayList<>(); in processFeature() local
223 s2PolygonList.add(s2Polygon); in processFeature()
225 return new TzS2Polygons(tzId, s2PolygonList); in processFeature()
H A DTzS2PolygonsToTzS2CellUnions.java185 List<S2Polygon> s2Polygons = tzPolygons.s2PolygonList; in createTzS2CellUnion()