Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(134)

Issue 842043002: Organize barcode codes into modules. (Closed)

Created:
5 years, 11 months ago by Bo Xu
Modified:
5 years, 11 months ago
Reviewers:
Tom Sepez
CC:
pdfium-reviews_googlegroups.com
Base URL:
https://pdfium.googlesource.com/pdfium.git@xfa
Target Ref:
refs/heads/xfa
Visibility:
Public.

Description

Organize barcode codes into modules. Previously all the files in barcode are lumped together. The naming of some files are inconsistent, leading to difficult understanding of the structure. Now files are grouped based on different barcode type like in zxing. This also matches what it looks like in other xfa folders. The file names in each folder could be further modified to be consistent. R=tsepez@chromium.org Committed: https://pdfium.googlesource.com/pdfium/+/a902979f7c6a39fbdd8e9fc1b2ce00553b655eeb

Patch Set 1 #

Patch Set 2 : #

Patch Set 3 : Build.gn #

Patch Set 4 : remove src #

Patch Set 5 : rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1178 lines, -27840 lines) Patch
M BUILD.gn View 1 2 3 4 2 chunks +239 lines, -239 lines 0 comments Download
M pdfium.gyp View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M xfa.gyp View 1 2 3 4 1 chunk +238 lines, -238 lines 0 comments Download
A + xfa/src/fxbarcode/BC_BarCode.cpp View 1 2 3 4 1 chunk +59 lines, -58 lines 0 comments Download
A + xfa/src/fxbarcode/BC_Binarizer.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/BC_Binarizer.cpp View 1 2 3 4 1 chunk +4 lines, -4 lines 0 comments Download
A + xfa/src/fxbarcode/BC_BinaryBitmap.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/BC_BinaryBitmap.cpp View 1 2 3 4 1 chunk +5 lines, -5 lines 0 comments Download
A + xfa/src/fxbarcode/BC_BufferedImageLuminanceSource.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/BC_BufferedImageLuminanceSource.cpp View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
A + xfa/src/fxbarcode/BC_DecoderResult.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/BC_Dimension.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/BC_Dimension.cpp View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
A xfa/src/fxbarcode/BC_Library.cpp View 1 2 3 4 1 chunk +123 lines, -0 lines 0 comments Download
A + xfa/src/fxbarcode/BC_LuminanceSource.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/BC_LuminanceSource.cpp View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
A + xfa/src/fxbarcode/BC_Reader.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/BC_Reader.cpp View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
A + xfa/src/fxbarcode/BC_ResultPoint.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/BC_ResultPoint.cpp View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
A + xfa/src/fxbarcode/BC_TwoDimWriter.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/BC_TwoDimWriter.cpp View 1 2 3 4 1 chunk +3 lines, -3 lines 0 comments Download
A + xfa/src/fxbarcode/BC_UtilCodingConvert.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/BC_UtilCodingConvert.cpp View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
A + xfa/src/fxbarcode/BC_UtilRSS.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/BC_UtilRSS.cpp View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
A + xfa/src/fxbarcode/BC_Utils.cpp View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/BC_Writer.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/BC_Writer.cpp View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
A + xfa/src/fxbarcode/barcode.h View 1 2 3 4 1 chunk +2 lines, -1 line 0 comments Download
A + xfa/src/fxbarcode/common/BC_CommonBitArray.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/common/BC_CommonBitArray.cpp View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
A + xfa/src/fxbarcode/common/BC_CommonBitMatrix.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/common/BC_CommonBitMatrix.cpp View 1 2 3 4 1 chunk +3 lines, -3 lines 0 comments Download
A + xfa/src/fxbarcode/common/BC_CommonBitSource.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/common/BC_CommonBitSource.cpp View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
A + xfa/src/fxbarcode/common/BC_CommonByteArray.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/common/BC_CommonByteArray.cpp View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
A + xfa/src/fxbarcode/common/BC_CommonByteMatrix.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/common/BC_CommonByteMatrix.cpp View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
A + xfa/src/fxbarcode/common/BC_CommonCharacterSetECI.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/common/BC_CommonCharacterSetECI.cpp View 1 2 3 4 1 chunk +3 lines, -3 lines 0 comments Download
A + xfa/src/fxbarcode/common/BC_CommonDecoderResult.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/common/BC_CommonDecoderResult.cpp View 1 2 3 4 1 chunk +4 lines, -4 lines 0 comments Download
A + xfa/src/fxbarcode/common/BC_CommonECI.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/common/BC_CommonECI.cpp View 1 2 3 4 1 chunk +3 lines, -3 lines 0 comments Download
A + xfa/src/fxbarcode/common/BC_CommonPerspectiveTransform.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/common/BC_CommonPerspectiveTransform.cpp View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
A + xfa/src/fxbarcode/common/BC_GlobalHistogramBinarizer.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/common/BC_GlobalHistogramBinarizer.cpp View 1 2 3 4 1 chunk +6 lines, -6 lines 0 comments Download
A + xfa/src/fxbarcode/common/BC_WhiteRectangleDetector.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/common/BC_WhiteRectangleDetector.cpp View 1 2 3 4 1 chunk +4 lines, -4 lines 0 comments Download
A + xfa/src/fxbarcode/common/reedsolomon/BC_ReedSolomon.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/common/reedsolomon/BC_ReedSolomon.cpp View 1 2 3 4 1 chunk +4 lines, -4 lines 0 comments Download
A + xfa/src/fxbarcode/common/reedsolomon/BC_ReedSolomonDecoder.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/common/reedsolomon/BC_ReedSolomonDecoder.cpp View 1 2 3 4 1 chunk +4 lines, -4 lines 0 comments Download
A + xfa/src/fxbarcode/common/reedsolomon/BC_ReedSolomonGF256.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/common/reedsolomon/BC_ReedSolomonGF256.cpp View 1 2 3 4 1 chunk +3 lines, -3 lines 0 comments Download
A + xfa/src/fxbarcode/common/reedsolomon/BC_ReedSolomonGF256Poly.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/common/reedsolomon/BC_ReedSolomonGF256Poly.cpp View 1 2 3 4 1 chunk +3 lines, -3 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_ASCIIEncoder.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_ASCIIEncoder.cpp View 1 2 3 4 1 chunk +8 lines, -8 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_Base256Encoder.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_Base256Encoder.cpp View 1 2 3 4 1 chunk +8 lines, -8 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_C40Encoder.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_C40Encoder.cpp View 1 2 3 4 1 chunk +9 lines, -9 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_DataMatrixBitMatrixParser.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_DataMatrixBitMatrixParser.cpp View 1 2 3 4 1 chunk +4 lines, -4 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_DataMatrixDataBlock.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_DataMatrixDataBlock.cpp View 1 2 3 4 1 chunk +3 lines, -3 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_DataMatrixDecodedBitStreamParser.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_DataMatrixDecodedBitStreamParser.cpp View 1 2 3 4 1 chunk +4 lines, -4 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_DataMatrixDecoder.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_DataMatrixDecoder.cpp View 1 2 3 4 1 chunk +9 lines, -9 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_DataMatrixDetector.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_DataMatrixDetector.cpp View 1 2 3 4 1 chunk +8 lines, -8 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_DataMatrixReader.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_DataMatrixReader.cpp View 1 2 3 4 1 chunk +8 lines, -8 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_DataMatrixSymbolInfo144.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_DataMatrixSymbolInfo144.cpp View 1 2 3 4 1 chunk +5 lines, -5 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_DataMatrixVersion.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_DataMatrixVersion.cpp View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_DataMatrixWriter.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_DataMatrixWriter.cpp View 1 2 3 4 1 chunk +23 lines, -23 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_DefaultPlacement.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_DefaultPlacement.cpp View 1 2 3 4 1 chunk +3 lines, -3 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_EdifactEncoder.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_EdifactEncoder.cpp View 1 2 3 4 1 chunk +9 lines, -9 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_Encoder.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_Encoder.cpp View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_EncoderContext.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_EncoderContext.cpp View 1 2 3 4 1 chunk +8 lines, -8 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_ErrorCorrection.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_ErrorCorrection.cpp View 1 2 3 4 1 chunk +5 lines, -5 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_HighLevelEncoder.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_HighLevelEncoder.cpp View 1 2 3 4 1 chunk +15 lines, -15 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_SymbolInfo.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_SymbolInfo.cpp View 1 2 3 4 1 chunk +7 lines, -7 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_SymbolShapeHint.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_SymbolShapeHint.cpp View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_TextEncoder.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_TextEncoder.cpp View 1 2 3 4 1 chunk +10 lines, -10 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_X12Encoder.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/datamatrix/BC_X12Encoder.cpp View 1 2 3 4 1 chunk +10 lines, -10 lines 0 comments Download
A + xfa/src/fxbarcode/oned/BC_OneDReader.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/oned/BC_OneDReader.cpp View 1 2 3 4 1 chunk +5 lines, -5 lines 0 comments Download
A + xfa/src/fxbarcode/oned/BC_OneDimReader.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/oned/BC_OneDimReader.cpp View 1 2 3 4 1 chunk +5 lines, -5 lines 0 comments Download
A + xfa/src/fxbarcode/oned/BC_OneDimWriter.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/oned/BC_OneDimWriter.cpp View 1 2 3 4 1 chunk +4 lines, -4 lines 0 comments Download
A + xfa/src/fxbarcode/oned/BC_OnedCodaBarReader.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/oned/BC_OnedCodaBarReader.cpp View 1 2 3 4 1 chunk +6 lines, -6 lines 0 comments Download
A + xfa/src/fxbarcode/oned/BC_OnedCodaBarWriter.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/oned/BC_OnedCodaBarWriter.cpp View 1 2 3 4 1 chunk +9 lines, -9 lines 0 comments Download
A + xfa/src/fxbarcode/oned/BC_OnedCode128Reader.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/oned/BC_OnedCode128Reader.cpp View 1 2 3 4 1 chunk +5 lines, -5 lines 0 comments Download
A + xfa/src/fxbarcode/oned/BC_OnedCode128Writer.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/oned/BC_OnedCode128Writer.cpp View 1 2 3 4 1 chunk +7 lines, -7 lines 0 comments Download
A + xfa/src/fxbarcode/oned/BC_OnedCode39Reader.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/oned/BC_OnedCode39Reader.cpp View 1 2 3 4 1 chunk +5 lines, -5 lines 0 comments Download
A + xfa/src/fxbarcode/oned/BC_OnedCode39Writer.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/oned/BC_OnedCode39Writer.cpp View 1 2 3 4 1 chunk +8 lines, -8 lines 0 comments Download
A + xfa/src/fxbarcode/oned/BC_OnedEAN13Reader.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/oned/BC_OnedEAN13Reader.cpp View 1 2 3 4 1 chunk +6 lines, -6 lines 0 comments Download
A + xfa/src/fxbarcode/oned/BC_OnedEAN13Writer.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/oned/BC_OnedEAN13Writer.cpp View 1 2 3 4 1 chunk +8 lines, -8 lines 0 comments Download
A + xfa/src/fxbarcode/oned/BC_OnedEAN8Reader.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/oned/BC_OnedEAN8Reader.cpp View 1 2 3 4 1 chunk +6 lines, -6 lines 0 comments Download
A + xfa/src/fxbarcode/oned/BC_OnedEAN8Writer.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/oned/BC_OnedEAN8Writer.cpp View 1 2 3 4 1 chunk +8 lines, -8 lines 0 comments Download
A + xfa/src/fxbarcode/oned/BC_OnedUPCAReader.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/oned/BC_OnedUPCAReader.cpp View 1 2 3 4 1 chunk +6 lines, -6 lines 0 comments Download
A + xfa/src/fxbarcode/oned/BC_OnedUPCAWriter.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/oned/BC_OnedUPCAWriter.cpp View 1 2 3 4 1 chunk +5 lines, -5 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417.cpp View 1 2 3 4 1 chunk +7 lines, -7 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.cpp View 1 2 3 4 1 chunk +3 lines, -3 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417BarcodeMetadata.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417BarcodeMetadata.cpp View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417BarcodeRow.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417BarcodeRow.cpp View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417BarcodeValue.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417BarcodeValue.cpp View 1 2 3 4 1 chunk +3 lines, -3 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417BoundingBox.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417BoundingBox.cpp View 1 2 3 4 1 chunk +4 lines, -4 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417Codeword.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417Codeword.cpp View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417CodewordDecoder.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417CodewordDecoder.cpp View 1 2 3 4 1 chunk +3 lines, -3 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417Common.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417Common.cpp View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417Compaction.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417Compaction.cpp View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417DecodedBitStreamParser.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417DecodedBitStreamParser.cpp View 1 2 3 4 1 chunk +5 lines, -5 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417DetectionResult.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417DetectionResult.cpp View 1 2 3 4 1 chunk +8 lines, -8 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417DetectionResultColumn.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417DetectionResultColumn.cpp View 1 2 3 4 1 chunk +4 lines, -4 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417DetectionResultRowIndicatorColumn.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417DetectionResultRowIndicatorColumn.cpp View 1 2 3 4 1 chunk +9 lines, -9 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417Detector.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417Detector.cpp View 1 2 3 4 1 chunk +7 lines, -7 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417DetectorResult.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417DetectorResult.cpp View 1 2 3 4 1 chunk +4 lines, -4 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417Dimensions.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417Dimensions.cpp View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417ECErrorCorrection.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417ECErrorCorrection.cpp View 1 2 3 4 1 chunk +5 lines, -5 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417ECModulusGF.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417ECModulusGF.cpp View 1 2 3 4 1 chunk +4 lines, -4 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417ECModulusPoly.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417ECModulusPoly.cpp View 1 2 3 4 1 chunk +4 lines, -4 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417ErrorCorrection.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417ErrorCorrection.cpp View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417HighLevelEncoder.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417HighLevelEncoder.cpp View 1 2 3 4 1 chunk +4 lines, -4 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417HighLevelEncoder_unittest.cpp View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417Reader.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417Reader.cpp View 1 2 3 4 1 chunk +30 lines, -30 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417ResultMetadata.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417ResultMetadata.cpp View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417ScanningDecoder.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417ScanningDecoder.cpp View 1 2 3 4 1 chunk +20 lines, -20 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417Writer.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/pdf417/BC_PDF417Writer.cpp View 1 2 3 4 1 chunk +8 lines, -8 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_FinderPatternInfo.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_FinderPatternInfo.cpp View 1 2 3 4 1 chunk +4 lines, -4 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRAlignmentPattern.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRAlignmentPattern.cpp View 1 2 3 4 1 chunk +3 lines, -3 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRAlignmentPatternFinder.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRAlignmentPatternFinder.cpp View 1 2 3 4 1 chunk +5 lines, -5 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRBitMatrixParser.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRBitMatrixParser.cpp View 1 2 3 4 1 chunk +6 lines, -6 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRCodeReader.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRCodeReader.cpp View 1 2 3 4 1 chunk +20 lines, -20 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRCodeWriter.h View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRCodeWriter.cpp View 1 2 3 4 1 chunk +9 lines, -9 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRCoder.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRCoder.cpp View 1 2 3 4 1 chunk +5 lines, -5 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRCoderBitVector.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRCoderBitVector.cpp View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRCoderBlockPair.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRCoderBlockPair.cpp View 1 2 3 4 1 chunk +3 lines, -3 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRCoderDecoder.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRCoderDecoder.cpp View 1 2 3 4 1 chunk +11 lines, -11 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRCoderECB.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRCoderECB.cpp View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRCoderECBlocks.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRCoderECBlocks.cpp View 1 2 3 4 1 chunk +3 lines, -3 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRCoderEncoder.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRCoderEncoder.cpp View 1 2 3 4 1 chunk +16 lines, -16 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRCoderErrorCorrectionLevel.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRCoderErrorCorrectionLevel.cpp View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRCoderFormatInformation.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRCoderFormatInformation.cpp View 1 2 3 4 1 chunk +3 lines, -3 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRCoderMaskUtil.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRCoderMaskUtil.cpp View 1 2 3 4 1 chunk +5 lines, -5 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRCoderMatrixUtil.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRCoderMatrixUtil.cpp View 1 2 3 4 1 chunk +7 lines, -7 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRCoderMode.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRCoderMode.cpp View 1 2 3 4 1 chunk +3 lines, -3 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRCoderVersion.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRCoderVersion.cpp View 1 2 3 4 1 chunk +9 lines, -9 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRDataBlock.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRDataBlock.cpp View 1 2 3 4 1 chunk +5 lines, -5 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRDataMask.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRDataMask.cpp View 1 2 3 4 1 chunk +3 lines, -3 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRDecodedBitStreamParser.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRDecodedBitStreamParser.cpp View 1 2 3 4 1 chunk +8 lines, -8 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRDetector.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRDetector.cpp View 1 2 3 4 1 chunk +11 lines, -11 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRDetectorResult.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRDetectorResult.cpp View 1 2 3 4 1 chunk +4 lines, -4 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRFinderPattern.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRFinderPattern.cpp View 1 2 3 4 1 chunk +3 lines, -3 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRFinderPatternFinder.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRFinderPatternFinder.cpp View 1 2 3 4 1 chunk +6 lines, -6 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRGridSampler.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A + xfa/src/fxbarcode/qrcode/BC_QRGridSampler.cpp View 1 2 3 4 1 chunk +4 lines, -4 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_ASCIIEncoder.cpp View 1 2 3 4 1 chunk +0 lines, -99 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_BarCode.cpp View 1 2 3 4 1 chunk +0 lines, -872 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_Base256Encoder.cpp View 1 2 3 4 1 chunk +0 lines, -95 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_Binarizer.cpp View 1 2 3 4 1 chunk +0 lines, -38 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_BinaryBitmap.cpp View 1 2 3 4 1 chunk +0 lines, -76 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_BufferedImageLuminanceSource.cpp View 1 2 3 4 1 chunk +0 lines, -204 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_C40Encoder.cpp View 1 2 3 4 1 chunk +0 lines, -198 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_CommonBitArray.cpp View 1 2 3 4 1 chunk +0 lines, -124 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_CommonBitMatrix.cpp View 1 2 3 4 1 chunk +0 lines, -161 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_CommonBitSource.cpp View 1 2 3 4 1 chunk +0 lines, -76 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_CommonByteArray.cpp View 1 2 3 4 1 chunk +0 lines, -114 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_CommonByteMatrix.cpp View 1 2 3 4 1 chunk +0 lines, -76 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_CommonCharacterSetECI.cpp View 1 2 3 4 1 chunk +0 lines, -50 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_CommonDecoderResult.cpp View 1 2 3 4 1 chunk +0 lines, -79 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_CommonECI.cpp View 1 2 3 4 1 chunk +0 lines, -46 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_CommonPerspectiveTransform.cpp View 1 2 3 4 1 chunk +0 lines, -125 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_DataMatrixBitMatrixParser.cpp View 1 2 3 4 1 chunk +0 lines, -366 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_DataMatrixDataBlock.cpp View 1 2 3 4 1 chunk +0 lines, -99 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_DataMatrixDecodedBitStreamParser.cpp View 1 2 3 4 1 chunk +0 lines, -472 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_DataMatrixDecoder.cpp View 1 2 3 4 1 chunk +0 lines, -110 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_DataMatrixDetector.cpp View 1 2 3 4 1 chunk +0 lines, -368 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_DataMatrixReader.cpp View 1 2 3 4 1 chunk +0 lines, -67 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_DataMatrixSymbolInfo144.cpp View 1 2 3 4 1 chunk +0 lines, -43 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_DataMatrixVersion.cpp View 1 2 3 4 1 chunk +0 lines, -147 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_DataMatrixWriter.cpp View 1 2 3 4 1 chunk +0 lines, -138 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_DefaultPlacement.cpp View 1 2 3 4 1 chunk +0 lines, -174 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_Dimension.cpp View 1 2 3 4 1 chunk +0 lines, -55 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_EdifactEncoder.cpp View 1 2 3 4 1 chunk +0 lines, -153 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_Encoder.cpp View 1 2 3 4 1 chunk +0 lines, -14 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_EncoderContext.cpp View 1 2 3 4 1 chunk +0 lines, -127 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_ErrorCorrection.cpp View 1 2 3 4 1 chunk +0 lines, -194 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_FinderPatternInfo.cpp View 1 2 3 4 1 chunk +0 lines, -48 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_GlobalHistogramBinarizer.cpp View 1 2 3 4 1 chunk +0 lines, -169 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_HighLevelEncoder.cpp View 1 2 3 4 1 chunk +0 lines, -368 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_Library.cpp View 1 2 3 4 1 chunk +0 lines, -122 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_LuminanceSource.cpp View 1 2 3 4 1 chunk +0 lines, -38 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_OneDReader.cpp View 1 2 3 4 1 chunk +0 lines, -179 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_OneDimReader.cpp View 1 2 3 4 1 chunk +0 lines, -235 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_OneDimWriter.cpp View 1 2 3 4 1 chunk +0 lines, -415 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_OnedCodaBarReader.cpp View 1 2 3 4 1 chunk +0 lines, -206 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_OnedCodaBarWriter.cpp View 1 2 3 4 1 chunk +0 lines, -222 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_OnedCode128Reader.cpp View 1 2 3 4 1 chunk +0 lines, -430 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_OnedCode128Writer.cpp View 1 2 3 4 1 chunk +0 lines, -230 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_OnedCode39Reader.cpp View 1 2 3 4 1 chunk +0 lines, -293 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_OnedCode39Writer.cpp View 1 2 3 4 1 chunk +0 lines, -351 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_OnedEAN13Reader.cpp View 1 2 3 4 1 chunk +0 lines, -94 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_OnedEAN13Writer.cpp View 1 2 3 4 1 chunk +0 lines, -294 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_OnedEAN8Reader.cpp View 1 2 3 4 1 chunk +0 lines, -81 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_OnedEAN8Writer.cpp View 1 2 3 4 1 chunk +0 lines, -261 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_OnedUPCAReader.cpp View 1 2 3 4 1 chunk +0 lines, -93 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_OnedUPCAWriter.cpp View 1 2 3 4 1 chunk +0 lines, -285 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_PDF417.cpp View 1 2 3 4 1 chunk +0 lines, -692 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_PDF417BarcodeMatrix.cpp View 1 2 3 4 1 chunk +0 lines, -98 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_PDF417BarcodeMetadata.cpp View 1 2 3 4 1 chunk +0 lines, -55 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_PDF417BarcodeRow.cpp View 1 2 3 4 1 chunk +0 lines, -60 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_PDF417BarcodeValue.cpp View 1 2 3 4 1 chunk +0 lines, -68 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_PDF417BoundingBox.cpp View 1 2 3 4 1 chunk +0 lines, -194 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_PDF417Codeword.cpp View 1 2 3 4 1 chunk +0 lines, -80 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_PDF417CodewordDecoder.cpp View 1 2 3 4 1 chunk +0 lines, -118 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_PDF417Common.cpp View 1 2 3 4 1 chunk +0 lines, -450 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_PDF417Compaction.cpp View 1 2 3 4 1 chunk +0 lines, -30 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_PDF417DecodedBitStreamParser.cpp View 1 2 3 4 1 chunk +0 lines, -485 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_PDF417DetectionResult.cpp View 1 2 3 4 1 chunk +0 lines, -283 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_PDF417DetectionResultColumn.cpp View 1 2 3 4 1 chunk +0 lines, -107 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_PDF417DetectionResultRowIndicatorColumn.cpp View 1 2 3 4 1 chunk +0 lines, -241 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_PDF417Detector.cpp View 1 2 3 4 1 chunk +0 lines, -311 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_PDF417DetectorResult.cpp View 1 2 3 4 1 chunk +0 lines, -53 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_PDF417Dimensions.cpp View 1 2 3 4 1 chunk +0 lines, -51 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_PDF417ECErrorCorrection.cpp View 1 2 3 4 1 chunk +0 lines, -369 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_PDF417ECModulusGF.cpp View 1 2 3 4 1 chunk +0 lines, -126 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_PDF417ECModulusPoly.cpp View 1 2 3 4 1 chunk +0 lines, -316 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_PDF417ErrorCorrection.cpp View 1 2 3 4 1 chunk +0 lines, -193 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_PDF417HighLevelEncoder.cpp View 1 2 3 4 1 chunk +0 lines, -420 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_PDF417HighLevelEncoder_unittest.cpp View 1 2 3 4 1 chunk +0 lines, -221 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_PDF417Reader.cpp View 1 2 3 4 1 chunk +0 lines, -119 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_PDF417ResultMetadata.cpp View 1 2 3 4 1 chunk +0 lines, -62 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_PDF417ScanningDecoder.cpp View 1 2 3 4 1 chunk +0 lines, -596 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_PDF417Writer.cpp View 1 2 3 4 1 chunk +0 lines, -126 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_QRAlignmentPattern.cpp View 1 2 3 4 1 chunk +0 lines, -52 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_QRAlignmentPatternFinder.cpp View 1 2 3 4 1 chunk +0 lines, -187 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_QRBitMatrixParser.cpp View 1 2 3 4 1 chunk +0 lines, -185 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_QRCodeReader.cpp View 1 2 3 4 1 chunk +0 lines, -111 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_QRCodeWriter.cpp View 1 2 3 4 1 chunk +0 lines, -103 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_QRCoder.cpp View 1 2 3 4 1 chunk +0 lines, -168 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_QRCoderBitVector.cpp View 1 2 3 4 1 chunk +0 lines, -141 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_QRCoderBlockPair.cpp View 1 2 3 4 1 chunk +0 lines, -49 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_QRCoderDecoder.cpp View 1 2 3 4 1 chunk +0 lines, -128 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_QRCoderECB.cpp View 1 2 3 4 1 chunk +0 lines, -40 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_QRCoderECBlocks.cpp View 1 2 3 4 1 chunk +0 lines, -65 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_QRCoderEncoder.cpp View 1 2 3 4 1 chunk +0 lines, -876 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_QRCoderErrorCorrectionLevel.cpp View 1 2 3 4 1 chunk +0 lines, -97 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_QRCoderFormatInformation.cpp View 1 2 3 4 1 chunk +0 lines, -119 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_QRCoderMaskUtil.cpp View 1 2 3 4 1 chunk +0 lines, -208 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_QRCoderMatrixUtil.cpp View 1 2 3 4 1 chunk +0 lines, -490 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_QRCoderMode.cpp View 1 2 3 4 1 chunk +0 lines, -178 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_QRCoderVersion.cpp View 1 2 3 4 1 chunk +0 lines, -777 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_QRDataBlock.cpp View 1 2 3 4 1 chunk +0 lines, -104 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_QRDataMask.cpp View 1 2 3 4 1 chunk +0 lines, -149 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_QRDecodedBitStreamParser.cpp View 1 2 3 4 1 chunk +0 lines, -254 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_QRDetector.cpp View 1 2 3 4 1 chunk +0 lines, -264 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_QRDetectorResult.cpp View 1 2 3 4 1 chunk +0 lines, -51 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_QRFinderPattern.cpp View 1 2 3 4 1 chunk +0 lines, -71 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_QRFinderPatternFinder.cpp View 1 2 3 4 1 chunk +0 lines, -451 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_QRGridSampler.cpp View 1 2 3 4 1 chunk +0 lines, -128 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_Reader.cpp View 1 2 3 4 1 chunk +0 lines, -14 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_ReedSolomon.cpp View 1 2 3 4 1 chunk +0 lines, -100 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_ReedSolomonDecoder.cpp View 1 2 3 4 1 chunk +0 lines, -224 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_ReedSolomonGF256.cpp View 1 2 3 4 1 chunk +0 lines, -140 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_ReedSolomonGF256Poly.cpp View 1 2 3 4 1 chunk +0 lines, -257 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_ResultPoint.cpp View 1 2 3 4 1 chunk +0 lines, -35 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_SymbolInfo.cpp View 1 2 3 4 1 chunk +0 lines, -242 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_SymbolShapeHint.cpp View 1 2 3 4 1 chunk +0 lines, -30 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_TextEncoder.cpp View 1 2 3 4 1 chunk +0 lines, -102 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_TwoDimWriter.cpp View 1 2 3 4 1 chunk +0 lines, -137 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_UtilCodingConvert.cpp View 1 2 3 4 1 chunk +0 lines, -49 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_UtilRSS.cpp View 1 2 3 4 1 chunk +0 lines, -164 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_Utils.cpp View 1 2 3 4 1 chunk +0 lines, -46 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_WhiteRectangleDetector.cpp View 1 2 3 4 1 chunk +0 lines, -244 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_Writer.cpp View 1 2 3 4 1 chunk +0 lines, -70 lines 0 comments Download
D xfa/src/fxbarcode/src/BC_X12Encoder.cpp View 1 2 3 4 1 chunk +0 lines, -104 lines 0 comments Download
D xfa/src/fxbarcode/src/barcode.h View 1 2 3 4 1 chunk +0 lines, -8 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_ASCIIEncoder.h View 1 2 3 4 1 chunk +0 lines, -22 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_Base256Encoder.h View 1 2 3 4 1 chunk +0 lines, -21 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_Binarizer.h View 1 2 3 4 1 chunk +0 lines, -24 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_BinaryBitmap.h View 1 2 3 4 1 chunk +0 lines, -29 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_BufferedImageLuminanceSource.h View 1 2 3 4 1 chunk +0 lines, -33 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_C40Encoder.h View 1 2 3 4 1 chunk +0 lines, -24 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_CommonBitArray.h View 1 2 3 4 1 chunk +0 lines, -32 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_CommonBitMatrix.h View 1 2 3 4 1 chunk +0 lines, -38 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_CommonBitSource.h View 1 2 3 4 1 chunk +0 lines, -23 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_CommonByteArray.h View 1 2 3 4 1 chunk +0 lines, -30 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_CommonByteMatrix.h View 1 2 3 4 1 chunk +0 lines, -29 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_CommonCharacterSetECI.h View 1 2 3 4 1 chunk +0 lines, -25 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_CommonDecoderResult.h View 1 2 3 4 1 chunk +0 lines, -33 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_CommonECI.h View 1 2 3 4 1 chunk +0 lines, -21 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_CommonPerspectiveTransform.h View 1 2 3 4 1 chunk +0 lines, -39 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_DataMatrixBitMatrixParser.h View 1 2 3 4 1 chunk +0 lines, -33 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_DataMatrixDataBlock.h View 1 2 3 4 1 chunk +0 lines, -26 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_DataMatrixDecodedBitStreamParser.h View 1 2 3 4 1 chunk +0 lines, -43 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_DataMatrixDecoder.h View 1 2 3 4 1 chunk +0 lines, -24 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_DataMatrixDetector.h View 1 2 3 4 1 chunk +0 lines, -78 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_DataMatrixReader.h View 1 2 3 4 1 chunk +0 lines, -25 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_DataMatrixSymbolInfo144.h View 1 2 3 4 1 chunk +0 lines, -19 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_DataMatrixVersion.h View 1 2 3 4 1 chunk +0 lines, -101 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_DataMatrixWriter.h View 1 2 3 4 1 chunk +0 lines, -30 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_DecoderResult.h View 1 2 3 4 1 chunk +0 lines, -32 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_DefaultPlacement.h View 1 2 3 4 1 chunk +0 lines, -35 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_Dimension.h View 1 2 3 4 1 chunk +0 lines, -24 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_EdifactEncoder.h View 1 2 3 4 1 chunk +0 lines, -23 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_Encoder.h View 1 2 3 4 1 chunk +0 lines, -19 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_EncoderContext.h View 1 2 3 4 1 chunk +0 lines, -48 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_ErrorCorrection.h View 1 2 3 4 1 chunk +0 lines, -29 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_FinderPatternInfo.h View 1 2 3 4 1 chunk +0 lines, -24 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_GlobalHistogramBinarizer.h View 1 2 3 4 1 chunk +0 lines, -28 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_HighLevelEncoder.h View 1 2 3 4 1 chunk +0 lines, -60 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_LuminanceSource.h View 1 2 3 4 1 chunk +0 lines, -34 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_OneDReader.h View 1 2 3 4 1 chunk +0 lines, -34 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_OneDimReader.h View 1 2 3 4 1 chunk +0 lines, -39 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_OneDimWriter.h View 1 2 3 4 1 chunk +0 lines, -70 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_OnedCodaBarReader.h View 1 2 3 4 1 chunk +0 lines, -30 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_OnedCodaBarWriter.h View 1 2 3 4 1 chunk +0 lines, -38 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_OnedCode128Reader.h View 1 2 3 4 1 chunk +0 lines, -40 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_OnedCode128Writer.h View 1 2 3 4 1 chunk +0 lines, -37 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_OnedCode39Reader.h View 1 2 3 4 1 chunk +0 lines, -32 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_OnedCode39Writer.h View 1 2 3 4 1 chunk +0 lines, -37 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_OnedEAN13Reader.h View 1 2 3 4 1 chunk +0 lines, -24 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_OnedEAN13Writer.h View 1 2 3 4 1 chunk +0 lines, -31 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_OnedEAN8Reader.h View 1 2 3 4 1 chunk +0 lines, -20 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_OnedEAN8Writer.h View 1 2 3 4 1 chunk +0 lines, -32 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_OnedUPCAReader.h View 1 2 3 4 1 chunk +0 lines, -30 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_OnedUPCAWriter.h View 1 2 3 4 1 chunk +0 lines, -31 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_PDF417.h View 1 2 3 4 1 chunk +0 lines, -45 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_PDF417BarcodeMatrix.h View 1 2 3 4 1 chunk +0 lines, -35 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_PDF417BarcodeMetadata.h View 1 2 3 4 1 chunk +0 lines, -27 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_PDF417BarcodeRow.h View 1 2 3 4 1 chunk +0 lines, -25 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_PDF417BarcodeValue.h View 1 2 3 4 1 chunk +0 lines, -22 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_PDF417BoundingBox.h View 1 2 3 4 1 chunk +0 lines, -43 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_PDF417Codeword.h View 1 2 3 4 1 chunk +0 lines, -34 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_PDF417CodewordDecoder.h View 1 2 3 4 1 chunk +0 lines, -27 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_PDF417Common.h View 1 2 3 4 1 chunk +0 lines, -31 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_PDF417Compaction.h View 1 2 3 4 1 chunk +0 lines, -22 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_PDF417DecodedBitStreamParser.h View 1 2 3 4 1 chunk +0 lines, -48 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_PDF417DetectionResult.h View 1 2 3 4 1 chunk +0 lines, -48 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_PDF417DetectionResultColumn.h View 1 2 3 4 1 chunk +0 lines, -31 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_PDF417DetectionResultRowIndicatorColumn.h View 1 2 3 4 1 chunk +0 lines, -28 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_PDF417Detector.h View 1 2 3 4 1 chunk +0 lines, -43 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_PDF417DetectorResult.h View 1 2 3 4 1 chunk +0 lines, -22 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_PDF417Dimensions.h View 1 2 3 4 1 chunk +0 lines, -25 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_PDF417ECErrorCorrection.h View 1 2 3 4 1 chunk +0 lines, -26 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_PDF417ECModulusGF.h View 1 2 3 4 1 chunk +0 lines, -37 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_PDF417ECModulusPoly.h View 1 2 3 4 1 chunk +0 lines, -34 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_PDF417ErrorCorrection.h View 1 2 3 4 1 chunk +0 lines, -21 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_PDF417HighLevelEncoder.h View 1 2 3 4 1 chunk +0 lines, -54 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_PDF417Reader.h View 1 2 3 4 1 chunk +0 lines, -26 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_PDF417ResultMetadata.h View 1 2 3 4 1 chunk +0 lines, -29 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_PDF417ScanningDecoder.h View 1 2 3 4 1 chunk +0 lines, -61 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_PDF417Writer.h View 1 2 3 4 1 chunk +0 lines, -26 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_QRAlignmentPattern.h View 1 2 3 4 1 chunk +0 lines, -24 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_QRAlignmentPatternFinder.h View 1 2 3 4 1 chunk +0 lines, -32 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_QRBitMatrixParser.h View 1 2 3 4 1 chunk +0 lines, -31 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_QRCodeReader.h View 1 2 3 4 1 chunk +0 lines, -35 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_QRCodeWriter.h View 1 2 3 4 1 chunk +0 lines, -28 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_QRCoder.h View 1 2 3 4 1 chunk +0 lines, -55 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_QRCoderBitVector.h View 1 2 3 4 1 chunk +0 lines, -32 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_QRCoderBlockPair.h View 1 2 3 4 1 chunk +0 lines, -23 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_QRCoderDecoder.h View 1 2 3 4 1 chunk +0 lines, -29 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_QRCoderECB.h View 1 2 3 4 1 chunk +0 lines, -21 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_QRCoderECBlocks.h View 1 2 3 4 1 chunk +0 lines, -25 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_QRCoderEncoder.h View 1 2 3 4 1 chunk +0 lines, -60 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_QRCoderErrorCorrectionLevel.h View 1 2 3 4 1 chunk +0 lines, -32 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_QRCoderFormatInformation.h View 1 2 3 4 1 chunk +0 lines, -29 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_QRCoderMaskUtil.h View 1 2 3 4 1 chunk +0 lines, -24 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_QRCoderMatrixUtil.h View 1 2 3 4 1 chunk +0 lines, -50 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_QRCoderMode.h View 1 2 3 4 1 chunk +0 lines, -40 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_QRCoderVersion.h View 1 2 3 4 1 chunk +0 lines, -42 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_QRDataBlock.h View 1 2 3 4 1 chunk +0 lines, -27 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_QRDataMask.h View 1 2 3 4 1 chunk +0 lines, -25 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_QRDecodedBitStreamParser.h View 1 2 3 4 1 chunk +0 lines, -35 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_QRDetector.h View 1 2 3 4 1 chunk +0 lines, -41 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_QRDetectorResult.h View 1 2 3 4 1 chunk +0 lines, -23 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_QRFinderPattern.h View 1 2 3 4 1 chunk +0 lines, -29 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_QRFinderPatternFinder.h View 1 2 3 4 1 chunk +0 lines, -45 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_QRGridSampler.h View 1 2 3 4 1 chunk +0 lines, -33 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_Reader.h View 1 2 3 4 1 chunk +0 lines, -19 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_ReedSolomon.h View 1 2 3 4 1 chunk +0 lines, -25 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_ReedSolomonDecoder.h View 1 2 3 4 1 chunk +0 lines, -24 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_ReedSolomonGF256.h View 1 2 3 4 1 chunk +0 lines, -35 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_ReedSolomonGF256Poly.h View 1 2 3 4 1 chunk +0 lines, -33 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_ResultPoint.h View 1 2 3 4 1 chunk +0 lines, -24 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_SymbolInfo.h View 1 2 3 4 1 chunk +0 lines, -53 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_SymbolShapeHint.h View 1 2 3 4 1 chunk +0 lines, -21 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_TextEncoder.h View 1 2 3 4 1 chunk +0 lines, -18 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_TwoDimWriter.h View 1 2 3 4 1 chunk +0 lines, -44 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_UtilCodingConvert.h View 1 2 3 4 1 chunk +0 lines, -22 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_UtilRSS.h View 1 2 3 4 1 chunk +0 lines, -23 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_WhiteRectangleDetector.h View 1 2 3 4 1 chunk +0 lines, -38 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_Writer.h View 1 2 3 4 1 chunk +0 lines, -35 lines 0 comments Download
D xfa/src/fxbarcode/src/include/BC_X12Encoder.h View 1 2 3 4 1 chunk +0 lines, -21 lines 0 comments Download
D xfa/src/fxbarcode/src/include/utils.h View 1 2 3 4 1 chunk +0 lines, -219 lines 0 comments Download
A + xfa/src/fxbarcode/utils.h View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download

Messages

Total messages: 10 (1 generated)
Bo Xu
Hi Tom, can you take a look, thanks.
5 years, 11 months ago (2015-01-08 23:17:41 UTC) #2
Tom Sepez
On 2015/01/08 23:17:41, Bo Xu wrote: > Hi Tom, can you take a look, thanks. ...
5 years, 11 months ago (2015-01-08 23:33:14 UTC) #3
Bo Xu
On 2015/01/08 23:33:14, Tom Sepez wrote: > On 2015/01/08 23:17:41, Bo Xu wrote: > > ...
5 years, 11 months ago (2015-01-08 23:34:57 UTC) #4
Tom Sepez
Many thanks for also getting rid of the include directories. Its much easier to work ...
5 years, 11 months ago (2015-01-09 19:41:47 UTC) #5
Bo Xu
On 2015/01/09 19:41:47, Tom Sepez wrote: > Many thanks for also getting rid of the ...
5 years, 11 months ago (2015-01-09 19:46:52 UTC) #6
Bo Xu
On 2015/01/09 19:41:47, Tom Sepez wrote: > Many thanks for also getting rid of the ...
5 years, 11 months ago (2015-01-09 19:47:02 UTC) #7
Tom Sepez
XFA GN build fixed at https://pdfium.googlesource.com/pdfium/+/541726611d9e66f7bc790e6477c0507db0a07d9e
5 years, 11 months ago (2015-01-09 22:51:05 UTC) #8
Bo Xu
On 2015/01/09 22:51:05, Tom Sepez wrote: > XFA GN build fixed at > https://pdfium.googlesource.com/pdfium/+/541726611d9e66f7bc790e6477c0507db0a07d9e Now ...
5 years, 11 months ago (2015-01-10 01:17:47 UTC) #9
Bo Xu
5 years, 11 months ago (2015-01-10 01:27:22 UTC) #10
Message was sent while issue was closed.
Committed patchset #5 (id:40001) manually as
a902979f7c6a39fbdd8e9fc1b2ce00553b655eeb (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698