Home
last modified time | relevance | path

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

/external/archive-patcher/shared/src/main/java/com/google/archivepatcher/shared/
DPatchConstants.java67 public static enum DeltaFormat { enum in PatchConstants
81 private DeltaFormat(byte patchValue) { in DeltaFormat() method in PatchConstants.DeltaFormat
90 public static DeltaFormat fromPatchValue(byte patchValue) { in fromPatchValue()
/external/archive-patcher/applier/src/main/java/com/google/archivepatcher/applier/
DDeltaDescriptor.java18 import com.google.archivepatcher.shared.PatchConstants.DeltaFormat;
31 private final PatchConstants.DeltaFormat format;
56 DeltaFormat format, in DeltaDescriptor()
70 public PatchConstants.DeltaFormat getFormat() { in getFormat()
DPatchReader.java126 PatchConstants.DeltaFormat.BSDIFF.patchValue, in readPatchApplyPlan()
127 PatchConstants.DeltaFormat.BSDIFF.patchValue, in readPatchApplyPlan()
140 PatchConstants.DeltaFormat.fromPatchValue(deltaFormatByte), in readPatchApplyPlan()
/external/fonttools/Lib/fontTools/ttLib/tables/
DotConverters.py321 DeltaFormat = tableDict["DeltaFormat"]
322 assert DeltaFormat in (1, 2, 3), "illegal DeltaFormat"
324 nBits = 1 << DeltaFormat
344 DeltaFormat = tableDict["DeltaFormat"]
346 assert DeltaFormat in (1, 2, 3), "illegal DeltaFormat"
348 nBits = 1 << DeltaFormat
/external/pdfium/core/fpdfapi/font/
Dttgsubtable.h202 TDevice() : StartSize(0), EndSize(0), DeltaFormat(0) {} in TDevice()
206 uint16_t DeltaFormat; member
/external/archive-patcher/applier/src/test/java/com/google/archivepatcher/applier/
DFileByFileV1DeltaApplierTest.java195 dataOut.write(PatchConstants.DeltaFormat.BSDIFF.patchValue); in writePatch()
DPatchReaderTest.java83 PatchConstants.DeltaFormat.BSDIFF,