Home
last modified time | relevance | path

Searched refs:mProtoStorageFormat (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 DTzS2PolygonsToTzS2CellUnions.java65 private final ProtoStorageFormat mProtoStorageFormat; field in TzS2PolygonsToTzS2CellUnions
77 this.mProtoStorageFormat = Objects.requireNonNull(protoStorageFormat); in TzS2PolygonsToTzS2CellUnions()
140 List<File> inputFiles = TzS2Polygons.listFiles(mInputDir, mProtoStorageFormat); in execute()
169 TzS2Polygons tzS2Polygons = TzS2Polygons.load(tzS2PolygonFile, mProtoStorageFormat); in processFile()
172 outputDir, tzS2CellUnion.tzId, TzS2CellUnion.getFileSuffix(mProtoStorageFormat)); in processFile()
173 TzS2CellUnion.store(tzS2CellUnion, outputFile, mProtoStorageFormat, License.ODBL); in processFile()
H A DMergeTzS2Ranges.java61 private final ProtoStorageFormat mProtoStorageFormat; field in MergeTzS2Ranges
70 this.mProtoStorageFormat = Objects.requireNonNull(protoStorageFormat); in MergeTzS2Ranges()
132 List<File> tzS2RangeFiles = TzS2Ranges.listFiles(mInputDir, mProtoStorageFormat); in execute()
167 mWorkingDir, fileNumber + TzS2Ranges.getFileSuffix(mProtoStorageFormat)); in createCombinedTzS2Ranges()
216 TzS2Ranges left = TzS2Ranges.load(leftFile, mProtoStorageFormat); in mergeRangeLists()
217 TzS2Ranges right = TzS2Ranges.load(rightFile, mProtoStorageFormat); in mergeRangeLists()
294 TzS2Ranges.store(outputRanges, outputFile, mProtoStorageFormat, License.ODBL); in mergeRangeLists()
H A DTzS2CellUnionsToTzS2Ranges.java63 private final ProtoStorageFormat mProtoStorageFormat; field in TzS2CellUnionsToTzS2Ranges
75 this.mProtoStorageFormat = Objects.requireNonNull(protoStorageFormat); in TzS2CellUnionsToTzS2Ranges()
138 List<File> inputFiles = TzS2CellUnion.listFiles(mInputDir, mProtoStorageFormat); in execute()
166 TzS2CellUnion tzS2CellUnion = TzS2CellUnion.load(tzS2CellUnionFile, mProtoStorageFormat); in processFile()
170 mOutputDir, tzS2CellUnion.tzId, TzS2Ranges.getFileSuffix(mProtoStorageFormat)); in processFile()
171 TzS2Ranges.store(tzS2Ranges, outputFile, mProtoStorageFormat, License.ODBL); in processFile()
H A DGeoJsonTzToTzS2Polygons.java76 private final ProtoStorageFormat mProtoStorageFormat; field in GeoJsonTzToTzS2Polygons
87 this.mProtoStorageFormat = Objects.requireNonNull(protoStorageFormat); in GeoJsonTzToTzS2Polygons()
190 String fileSuffix = TzS2Polygons.getFileSuffix(mProtoStorageFormat); in execute()
192 TzS2Polygons.store(tzPolygons, outputFile, mProtoStorageFormat, License.ODBL); in execute()