zxing_cpp_no_cmake 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +13 -0
- data/.gitmodules +0 -0
- data/CHANGELOG.rdoc +6 -0
- data/Gemfile +3 -0
- data/Manifest.txt +375 -0
- data/README.rdoc +141 -0
- data/Rakefile +28 -0
- data/bin/zxd +87 -0
- data/bin/zxe +53 -0
- data/ext/zxing/extconf.rb +20 -0
- data/ext/zxing/zxing-cpp/.gitignore +2 -0
- data/ext/zxing/zxing-cpp/AUTHORS +115 -0
- data/ext/zxing/zxing-cpp/CMakeLists.txt +89 -0
- data/ext/zxing/zxing-cpp/COPYING +201 -0
- data/ext/zxing/zxing-cpp/NOTICE +65 -0
- data/ext/zxing/zxing-cpp/README.md +45 -0
- data/ext/zxing/zxing-cpp/build/CMakeCache.txt +382 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/3.15.4/CMakeCCompiler.cmake +76 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/3.15.4/CMakeCXXCompiler.cmake +79 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/3.15.4/CMakeDetermineCompilerABI_C.bin +0 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/3.15.4/CMakeDetermineCompilerABI_CXX.bin +0 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/3.15.4/CMakeSystem.cmake +15 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/3.15.4/CompilerIdC/CMakeCCompilerId.c +665 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/3.15.4/CompilerIdC/a.out +0 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/3.15.4/CompilerIdCXX/CMakeCXXCompilerId.cpp +644 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/3.15.4/CompilerIdCXX/a.out +0 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/CMakeDirectoryInformation.cmake +16 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/CMakeOutput.log +447 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/Makefile.cmake +125 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/Makefile2 +177 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/TargetDirectories.txt +9 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/cmake.check_cache +1 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/libzxing.dir/CXX.includecache +1892 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/libzxing.dir/DependInfo.cmake +120 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/libzxing.dir/build.make +1584 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/libzxing.dir/cmake_clean.cmake +109 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/libzxing.dir/cmake_clean_target.cmake +3 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/libzxing.dir/depend.internal +1465 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/libzxing.dir/depend.make +1465 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/libzxing.dir/flags.make +10 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/libzxing.dir/link.txt +2 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/libzxing.dir/progress.make +102 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/progress.marks +1 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/testrunner.dir/CXX.includecache +344 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/testrunner.dir/DependInfo.cmake +33 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/testrunner.dir/build.make +266 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/testrunner.dir/cmake_clean.cmake +21 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/testrunner.dir/depend.internal +103 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/testrunner.dir/depend.make +103 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/testrunner.dir/flags.make +10 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/testrunner.dir/link.txt +1 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/testrunner.dir/progress.make +14 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/zxing.dir/CXX.includecache +378 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/zxing.dir/DependInfo.cmake +25 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/zxing.dir/build.make +145 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/zxing.dir/cmake_clean.cmake +13 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/zxing.dir/depend.internal +53 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/zxing.dir/depend.make +53 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/zxing.dir/flags.make +10 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/zxing.dir/link.txt +1 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/zxing.dir/progress.make +6 -0
- data/ext/zxing/zxing-cpp/build/Makefile +3706 -0
- data/ext/zxing/zxing-cpp/build/cmake_install.cmake +73 -0
- data/ext/zxing/zxing-cpp/build/libzxing.a +0 -0
- data/ext/zxing/zxing-cpp/build/testrunner +0 -0
- data/ext/zxing/zxing-cpp/build/zxing +0 -0
- data/ext/zxing/zxing-cpp/cli/src/ImageReaderSource.cpp +113 -0
- data/ext/zxing/zxing-cpp/cli/src/ImageReaderSource.h +40 -0
- data/ext/zxing/zxing-cpp/cli/src/jpgd.cpp +3174 -0
- data/ext/zxing/zxing-cpp/cli/src/jpgd.h +319 -0
- data/ext/zxing/zxing-cpp/cli/src/lodepng.cpp +6261 -0
- data/ext/zxing/zxing-cpp/cli/src/lodepng.h +1695 -0
- data/ext/zxing/zxing-cpp/cli/src/main.cpp +297 -0
- data/ext/zxing/zxing-cpp/cmake/FindCPPUNIT.cmake +54 -0
- data/ext/zxing/zxing-cpp/cmake/FindIconv.cmake +57 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/.gitignore +6 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigInteger.cc +405 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigInteger.hh +215 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigIntegerAlgorithms.cc +70 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigIntegerAlgorithms.hh +25 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigIntegerLibrary.hh +8 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigIntegerUtils.cc +50 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigIntegerUtils.hh +72 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigUnsigned.cc +697 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigUnsigned.hh +418 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigUnsignedInABase.cc +125 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigUnsignedInABase.hh +122 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/ChangeLog +146 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/Makefile +73 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/NumberlikeArray.hh +177 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/README +71 -0
- data/ext/zxing/zxing-cpp/core/src/win32/zxing/iconv.h +14 -0
- data/ext/zxing/zxing-cpp/core/src/win32/zxing/stdint.h +247 -0
- data/ext/zxing/zxing-cpp/core/src/win32/zxing/win_iconv.c +2035 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/BarcodeFormat.cpp +40 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/BarcodeFormat.h +60 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/Binarizer.cpp +45 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/Binarizer.h +50 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/BinaryBitmap.cpp +70 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/BinaryBitmap.h +56 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/ChecksumException.cpp +28 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/ChecksumException.h +34 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/DecodeHints.cpp +142 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/DecodeHints.h +85 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/Exception.cpp +43 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/Exception.h +51 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/FormatException.cpp +41 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/FormatException.h +37 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/IllegalStateException.h +35 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/InvertedLuminanceSource.cpp +68 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/InvertedLuminanceSource.h +48 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/LuminanceSource.cpp +86 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/LuminanceSource.h +59 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/MultiFormatReader.cpp +124 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/MultiFormatReader.h +48 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/NotFoundException.h +35 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/Reader.cpp +31 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/Reader.h +40 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/ReaderException.h +37 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/Result.cpp +61 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/Result.h +55 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/ResultIO.cpp +34 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/ResultPoint.cpp +108 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/ResultPoint.h +55 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/ResultPointCallback.cpp +26 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/ResultPointCallback.h +39 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/ZXing.h +133 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/aztec/AztecDetectorResult.cpp +54 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/aztec/AztecDetectorResult.h +48 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/aztec/AztecReader.cpp +68 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/aztec/AztecReader.h +49 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/aztec/decoder/Decoder.cpp +489 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/aztec/decoder/Decoder.h +69 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/aztec/detector/Detector.cpp +548 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/aztec/detector/Detector.h +92 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/Array.h +170 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/BitArray.cpp +155 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/BitArray.h +81 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/BitArrayIO.cpp +31 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/BitMatrix.cpp +143 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/BitMatrix.h +91 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/BitSource.cpp +76 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/BitSource.h +74 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/CharacterSetECI.cpp +105 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/CharacterSetECI.h +53 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/Counted.h +140 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/DecoderResult.cpp +46 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/DecoderResult.h +51 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/DetectorResult.cpp +39 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/DetectorResult.h +43 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/GlobalHistogramBinarizer.cpp +212 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/GlobalHistogramBinarizer.h +48 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/GreyscaleLuminanceSource.cpp +80 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/GreyscaleLuminanceSource.h +53 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/GreyscaleRotatedLuminanceSource.cpp +81 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/GreyscaleRotatedLuminanceSource.h +46 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/GridSampler.cpp +122 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/GridSampler.h +45 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/HybridBinarizer.cpp +226 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/HybridBinarizer.h +67 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/IllegalArgumentException.cpp +27 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/IllegalArgumentException.h +36 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/PerspectiveTransform.cpp +107 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/PerspectiveTransform.h +49 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/Point.h +47 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/Str.cpp +61 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/Str.h +51 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/StringUtils.cpp +198 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/StringUtils.h +52 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/detector/JavaMath.h +43 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/detector/MathUtils.h +57 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/detector/MonochromeRectangleDetector.cpp +175 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/detector/MonochromeRectangleDetector.h +62 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/detector/WhiteRectangleDetector.cpp +330 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/detector/WhiteRectangleDetector.h +59 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/GenericGF.cpp +150 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/GenericGF.h +73 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/GenericGFPoly.cpp +218 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/GenericGFPoly.h +56 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/ReedSolomonDecoder.cpp +174 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/ReedSolomonDecoder.h +49 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/ReedSolomonException.cpp +30 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/ReedSolomonException.h +33 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/DataMatrixReader.cpp +54 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/DataMatrixReader.h +45 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/Version.cpp +199 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/Version.h +87 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/BitMatrixParser.cpp +361 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/BitMatrixParser.h +59 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/DataBlock.cpp +113 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/DataBlock.h +49 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/DecodedBitStreamParser.cpp +415 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/DecodedBitStreamParser.h +104 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/Decoder.cpp +93 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/Decoder.h +49 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/CornerPoint.cpp +46 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/CornerPoint.h +43 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/Detector.cpp +447 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/Detector.h +94 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/DetectorException.cpp +23 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/DetectorException.h +23 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/ByQuadrantReader.cpp +75 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/ByQuadrantReader.h +42 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/GenericMultipleBarcodeReader.cpp +137 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/GenericMultipleBarcodeReader.h +51 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/MultipleBarcodeReader.cpp +29 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/MultipleBarcodeReader.h +41 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/qrcode/QRCodeMultiReader.cpp +58 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/qrcode/QRCodeMultiReader.h +36 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/qrcode/detector/MultiDetector.cpp +47 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/qrcode/detector/MultiDetector.h +37 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/qrcode/detector/MultiFinderPatternFinder.cpp +236 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/qrcode/detector/MultiFinderPatternFinder.h +47 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/CodaBarReader.cpp +340 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/CodaBarReader.h +57 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/Code128Reader.cpp +497 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/Code128Reader.h +48 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/Code39Reader.cpp +329 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/Code39Reader.h +63 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/Code93Reader.cpp +303 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/Code93Reader.h +58 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/EAN13Reader.cpp +85 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/EAN13Reader.h +49 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/EAN8Reader.cpp +65 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/EAN8Reader.h +47 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/ITFReader.cpp +337 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/ITFReader.h +54 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/MultiFormatOneDReader.cpp +96 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/MultiFormatOneDReader.h +38 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/MultiFormatUPCEANReader.cpp +110 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/MultiFormatUPCEANReader.h +41 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/OneDReader.cpp +228 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/OneDReader.h +81 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/OneDResultPoint.cpp +28 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/OneDResultPoint.h +35 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCAReader.cpp +70 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCAReader.h +50 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCEANReader.cpp +309 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCEANReader.h +88 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCEReader.cpp +146 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCEReader.h +47 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/PDF417Reader.cpp +170 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/PDF417Reader.h +49 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/BitMatrixParser.cpp +997 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/BitMatrixParser.h +84 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/DecodedBitStreamParser.cpp +563 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/DecodedBitStreamParser.h +84 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/Decoder.cpp +118 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/Decoder.h +62 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/ec/ErrorCorrection.cpp +214 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/ec/ErrorCorrection.h +71 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/ec/ModulusGF.cpp +120 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/ec/ModulusGF.h +72 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/ec/ModulusPoly.cpp +284 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/ec/ModulusPoly.h +68 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/detector/Detector.cpp +665 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/detector/Detector.h +106 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/detector/LinesSampler.cpp +715 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/detector/LinesSampler.h +122 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/ErrorCorrectionLevel.cpp +65 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/ErrorCorrectionLevel.h +52 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/FormatInformation.cpp +117 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/FormatInformation.h +54 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/QRCodeReader.cpp +52 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/QRCodeReader.h +48 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/Version.cpp +560 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/Version.h +85 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/BitMatrixParser.cpp +183 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/BitMatrixParser.h +56 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/DataBlock.cpp +118 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/DataBlock.h +50 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/DataMask.cpp +159 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/DataMask.h +50 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/DecodedBitStreamParser.cpp +428 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/DecodedBitStreamParser.h +72 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/Decoder.cpp +107 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/Decoder.h +46 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/Mode.cpp +90 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/Mode.h +57 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/AlignmentPattern.cpp +47 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/AlignmentPattern.h +45 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/AlignmentPatternFinder.cpp +208 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/AlignmentPatternFinder.h +68 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/Detector.cpp +315 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/Detector.h +69 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/FinderPattern.cpp +69 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/FinderPattern.h +48 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/FinderPatternFinder.cpp +559 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/FinderPatternFinder.h +76 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/FinderPatternInfo.cpp +41 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/FinderPatternInfo.h +47 -0
- data/ext/zxing/zxing-cpp/core/tests/src/TestRunner.cpp +30 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/BitArrayTest.cpp +216 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/BitArrayTest.h +61 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/BitMatrixTest.cpp +106 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/BitMatrixTest.h +55 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/BitSourceTest.cpp +49 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/BitSourceTest.h +42 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/CountedTest.cpp +58 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/CountedTest.h +46 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/PerspectiveTransformTest.cpp +69 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/PerspectiveTransformTest.h +47 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/reedsolomon/ReedSolomonTest.cpp +129 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/reedsolomon/ReedSolomonTest.h +62 -0
- data/ext/zxing/zxing-cpp/core/tests/src/qrcode/ErrorCorrectionLevelTest.cpp +47 -0
- data/ext/zxing/zxing-cpp/core/tests/src/qrcode/ErrorCorrectionLevelTest.h +45 -0
- data/ext/zxing/zxing-cpp/core/tests/src/qrcode/FormatInformationTest.cpp +88 -0
- data/ext/zxing/zxing-cpp/core/tests/src/qrcode/FormatInformationTest.h +47 -0
- data/ext/zxing/zxing-cpp/core/tests/src/qrcode/VersionTest.cpp +88 -0
- data/ext/zxing/zxing-cpp/core/tests/src/qrcode/VersionTest.h +49 -0
- data/ext/zxing/zxing-cpp/core/tests/src/qrcode/decoder/DataMaskTest.cpp +132 -0
- data/ext/zxing/zxing-cpp/core/tests/src/qrcode/decoder/DataMaskTest.h +91 -0
- data/ext/zxing/zxing-cpp/core/tests/src/qrcode/decoder/ModeTest.cpp +52 -0
- data/ext/zxing/zxing-cpp/core/tests/src/qrcode/decoder/ModeTest.h +47 -0
- data/ext/zxing/zxing.cc +224 -0
- data/lib/zxing.rb +50 -0
- data/lib/zxing/.gitignore +2 -0
- data/lib/zxing/aztec.rb +5 -0
- data/lib/zxing/aztec/aztec_reader.rb +14 -0
- data/lib/zxing/bad_image_exception.rb +4 -0
- data/lib/zxing/binarizer.rb +8 -0
- data/lib/zxing/binary_bitmap.rb +15 -0
- data/lib/zxing/checksum_exception.rb +4 -0
- data/lib/zxing/common.rb +7 -0
- data/lib/zxing/common/bit_matrix.rb +9 -0
- data/lib/zxing/common/hybrid_binarizer.rb +17 -0
- data/lib/zxing/common/illegal_argument_exception.rb +4 -0
- data/lib/zxing/datamatrix.rb +5 -0
- data/lib/zxing/datamatrix/data_matrix_reader.rb +14 -0
- data/lib/zxing/decodable.rb +11 -0
- data/lib/zxing/exception.rb +4 -0
- data/lib/zxing/ffi.rb +20 -0
- data/lib/zxing/ffi/aztec.rb +6 -0
- data/lib/zxing/ffi/aztec/aztec_reader.rb +9 -0
- data/lib/zxing/ffi/binarizer.rb +25 -0
- data/lib/zxing/ffi/binary_bitmap.rb +15 -0
- data/lib/zxing/ffi/common.rb +8 -0
- data/lib/zxing/ffi/common/bit_matrix.rb +12 -0
- data/lib/zxing/ffi/common/greyscale_luminance_source.rb +30 -0
- data/lib/zxing/ffi/common/hybrid_binarizer.rb +10 -0
- data/lib/zxing/ffi/datamatrix.rb +6 -0
- data/lib/zxing/ffi/datamatrix/data_matrix_reader.rb +9 -0
- data/lib/zxing/ffi/library.rb +102 -0
- data/lib/zxing/ffi/luminance_source.rb +18 -0
- data/lib/zxing/ffi/multi_format_reader.rb +9 -0
- data/lib/zxing/ffi/oned.rb +6 -0
- data/lib/zxing/ffi/oned/code_39_reader.rb +10 -0
- data/lib/zxing/ffi/qrcode.rb +8 -0
- data/lib/zxing/ffi/qrcode/decoder.rb +10 -0
- data/lib/zxing/ffi/qrcode/detector.rb +10 -0
- data/lib/zxing/ffi/reader.rb +58 -0
- data/lib/zxing/ffi/result.rb +23 -0
- data/lib/zxing/format_exception.rb +4 -0
- data/lib/zxing/illegal_argument_exception.rb +4 -0
- data/lib/zxing/image.rb +15 -0
- data/lib/zxing/luminance_source.rb +18 -0
- data/lib/zxing/multi_format_reader.rb +11 -0
- data/lib/zxing/not_found_exception.rb +4 -0
- data/lib/zxing/oned.rb +5 -0
- data/lib/zxing/oned/code_39_reader.rb +15 -0
- data/lib/zxing/qrcode.rb +8 -0
- data/lib/zxing/qrcode/decoder.rb +14 -0
- data/lib/zxing/qrcode/detector.rb +14 -0
- data/lib/zxing/qrcode/encoder.rb +8 -0
- data/lib/zxing/qrcode/encoder/byte_matrix.rb +18 -0
- data/lib/zxing/qrcode/encoder/encoder.rb +9 -0
- data/lib/zxing/qrcode/encoder/qrcode.rb +18 -0
- data/lib/zxing/reader.rb +8 -0
- data/lib/zxing/reader_exception.rb +4 -0
- data/lib/zxing/reed_solomon_exception.rb +2 -0
- data/lib/zxing/result.rb +18 -0
- data/lib/zxing/rmagick.rb +5 -0
- data/lib/zxing/rmagick/image.rb +109 -0
- data/lib/zxing/version.rb +33 -0
- data/zxing_cpp.gemspec +36 -0
- metadata +515 -0
@@ -0,0 +1,125 @@
|
|
1
|
+
# CMAKE generated file: DO NOT EDIT!
|
2
|
+
# Generated by "Unix Makefiles" Generator, CMake Version 3.15
|
3
|
+
|
4
|
+
# The generator used is:
|
5
|
+
set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles")
|
6
|
+
|
7
|
+
# The top level Makefile was generated from the following files:
|
8
|
+
set(CMAKE_MAKEFILE_DEPENDS
|
9
|
+
"CMakeCache.txt"
|
10
|
+
"../CMakeLists.txt"
|
11
|
+
"CMakeFiles/3.15.4/CMakeCCompiler.cmake"
|
12
|
+
"CMakeFiles/3.15.4/CMakeCXXCompiler.cmake"
|
13
|
+
"CMakeFiles/3.15.4/CMakeSystem.cmake"
|
14
|
+
"../cmake/FindCPPUNIT.cmake"
|
15
|
+
"../cmake/FindIconv.cmake"
|
16
|
+
"/usr/share/cmake-3.15/Modules/CMakeCCompiler.cmake.in"
|
17
|
+
"/usr/share/cmake-3.15/Modules/CMakeCCompilerABI.c"
|
18
|
+
"/usr/share/cmake-3.15/Modules/CMakeCInformation.cmake"
|
19
|
+
"/usr/share/cmake-3.15/Modules/CMakeCXXCompiler.cmake.in"
|
20
|
+
"/usr/share/cmake-3.15/Modules/CMakeCXXCompilerABI.cpp"
|
21
|
+
"/usr/share/cmake-3.15/Modules/CMakeCXXInformation.cmake"
|
22
|
+
"/usr/share/cmake-3.15/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake"
|
23
|
+
"/usr/share/cmake-3.15/Modules/CMakeCommonLanguageInclude.cmake"
|
24
|
+
"/usr/share/cmake-3.15/Modules/CMakeCompilerIdDetection.cmake"
|
25
|
+
"/usr/share/cmake-3.15/Modules/CMakeDetermineCCompiler.cmake"
|
26
|
+
"/usr/share/cmake-3.15/Modules/CMakeDetermineCXXCompiler.cmake"
|
27
|
+
"/usr/share/cmake-3.15/Modules/CMakeDetermineCompileFeatures.cmake"
|
28
|
+
"/usr/share/cmake-3.15/Modules/CMakeDetermineCompiler.cmake"
|
29
|
+
"/usr/share/cmake-3.15/Modules/CMakeDetermineCompilerABI.cmake"
|
30
|
+
"/usr/share/cmake-3.15/Modules/CMakeDetermineCompilerId.cmake"
|
31
|
+
"/usr/share/cmake-3.15/Modules/CMakeDetermineSystem.cmake"
|
32
|
+
"/usr/share/cmake-3.15/Modules/CMakeFindBinUtils.cmake"
|
33
|
+
"/usr/share/cmake-3.15/Modules/CMakeGenericSystem.cmake"
|
34
|
+
"/usr/share/cmake-3.15/Modules/CMakeInitializeConfigs.cmake"
|
35
|
+
"/usr/share/cmake-3.15/Modules/CMakeLanguageInformation.cmake"
|
36
|
+
"/usr/share/cmake-3.15/Modules/CMakeParseImplicitIncludeInfo.cmake"
|
37
|
+
"/usr/share/cmake-3.15/Modules/CMakeParseImplicitLinkInfo.cmake"
|
38
|
+
"/usr/share/cmake-3.15/Modules/CMakeSystem.cmake.in"
|
39
|
+
"/usr/share/cmake-3.15/Modules/CMakeSystemSpecificInformation.cmake"
|
40
|
+
"/usr/share/cmake-3.15/Modules/CMakeSystemSpecificInitialize.cmake"
|
41
|
+
"/usr/share/cmake-3.15/Modules/CMakeTestCCompiler.cmake"
|
42
|
+
"/usr/share/cmake-3.15/Modules/CMakeTestCXXCompiler.cmake"
|
43
|
+
"/usr/share/cmake-3.15/Modules/CMakeTestCompilerCommon.cmake"
|
44
|
+
"/usr/share/cmake-3.15/Modules/CMakeUnixFindMake.cmake"
|
45
|
+
"/usr/share/cmake-3.15/Modules/CheckCXXSourceCompiles.cmake"
|
46
|
+
"/usr/share/cmake-3.15/Modules/Compiler/ADSP-DetermineCompiler.cmake"
|
47
|
+
"/usr/share/cmake-3.15/Modules/Compiler/ARMCC-DetermineCompiler.cmake"
|
48
|
+
"/usr/share/cmake-3.15/Modules/Compiler/ARMClang-DetermineCompiler.cmake"
|
49
|
+
"/usr/share/cmake-3.15/Modules/Compiler/AppleClang-DetermineCompiler.cmake"
|
50
|
+
"/usr/share/cmake-3.15/Modules/Compiler/Borland-DetermineCompiler.cmake"
|
51
|
+
"/usr/share/cmake-3.15/Modules/Compiler/Bruce-C-DetermineCompiler.cmake"
|
52
|
+
"/usr/share/cmake-3.15/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
|
53
|
+
"/usr/share/cmake-3.15/Modules/Compiler/Clang-DetermineCompiler.cmake"
|
54
|
+
"/usr/share/cmake-3.15/Modules/Compiler/Clang-DetermineCompilerInternal.cmake"
|
55
|
+
"/usr/share/cmake-3.15/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake"
|
56
|
+
"/usr/share/cmake-3.15/Modules/Compiler/Compaq-C-DetermineCompiler.cmake"
|
57
|
+
"/usr/share/cmake-3.15/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake"
|
58
|
+
"/usr/share/cmake-3.15/Modules/Compiler/Cray-DetermineCompiler.cmake"
|
59
|
+
"/usr/share/cmake-3.15/Modules/Compiler/Embarcadero-DetermineCompiler.cmake"
|
60
|
+
"/usr/share/cmake-3.15/Modules/Compiler/Fujitsu-DetermineCompiler.cmake"
|
61
|
+
"/usr/share/cmake-3.15/Modules/Compiler/GHS-DetermineCompiler.cmake"
|
62
|
+
"/usr/share/cmake-3.15/Modules/Compiler/GNU-C-DetermineCompiler.cmake"
|
63
|
+
"/usr/share/cmake-3.15/Modules/Compiler/GNU-C.cmake"
|
64
|
+
"/usr/share/cmake-3.15/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake"
|
65
|
+
"/usr/share/cmake-3.15/Modules/Compiler/GNU-CXX.cmake"
|
66
|
+
"/usr/share/cmake-3.15/Modules/Compiler/GNU-FindBinUtils.cmake"
|
67
|
+
"/usr/share/cmake-3.15/Modules/Compiler/GNU.cmake"
|
68
|
+
"/usr/share/cmake-3.15/Modules/Compiler/HP-C-DetermineCompiler.cmake"
|
69
|
+
"/usr/share/cmake-3.15/Modules/Compiler/HP-CXX-DetermineCompiler.cmake"
|
70
|
+
"/usr/share/cmake-3.15/Modules/Compiler/IAR-DetermineCompiler.cmake"
|
71
|
+
"/usr/share/cmake-3.15/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake"
|
72
|
+
"/usr/share/cmake-3.15/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake"
|
73
|
+
"/usr/share/cmake-3.15/Modules/Compiler/Intel-DetermineCompiler.cmake"
|
74
|
+
"/usr/share/cmake-3.15/Modules/Compiler/MSVC-DetermineCompiler.cmake"
|
75
|
+
"/usr/share/cmake-3.15/Modules/Compiler/NVIDIA-DetermineCompiler.cmake"
|
76
|
+
"/usr/share/cmake-3.15/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake"
|
77
|
+
"/usr/share/cmake-3.15/Modules/Compiler/PGI-DetermineCompiler.cmake"
|
78
|
+
"/usr/share/cmake-3.15/Modules/Compiler/PathScale-DetermineCompiler.cmake"
|
79
|
+
"/usr/share/cmake-3.15/Modules/Compiler/SCO-DetermineCompiler.cmake"
|
80
|
+
"/usr/share/cmake-3.15/Modules/Compiler/SDCC-C-DetermineCompiler.cmake"
|
81
|
+
"/usr/share/cmake-3.15/Modules/Compiler/SunPro-C-DetermineCompiler.cmake"
|
82
|
+
"/usr/share/cmake-3.15/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake"
|
83
|
+
"/usr/share/cmake-3.15/Modules/Compiler/TI-DetermineCompiler.cmake"
|
84
|
+
"/usr/share/cmake-3.15/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake"
|
85
|
+
"/usr/share/cmake-3.15/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake"
|
86
|
+
"/usr/share/cmake-3.15/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake"
|
87
|
+
"/usr/share/cmake-3.15/Modules/Compiler/Watcom-DetermineCompiler.cmake"
|
88
|
+
"/usr/share/cmake-3.15/Modules/Compiler/XL-C-DetermineCompiler.cmake"
|
89
|
+
"/usr/share/cmake-3.15/Modules/Compiler/XL-CXX-DetermineCompiler.cmake"
|
90
|
+
"/usr/share/cmake-3.15/Modules/Compiler/XLClang-C-DetermineCompiler.cmake"
|
91
|
+
"/usr/share/cmake-3.15/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake"
|
92
|
+
"/usr/share/cmake-3.15/Modules/Compiler/zOS-C-DetermineCompiler.cmake"
|
93
|
+
"/usr/share/cmake-3.15/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake"
|
94
|
+
"/usr/share/cmake-3.15/Modules/Internal/CMakeCheckCompilerFlag.cmake"
|
95
|
+
"/usr/share/cmake-3.15/Modules/Internal/FeatureTesting.cmake"
|
96
|
+
"/usr/share/cmake-3.15/Modules/Platform/Linux-Determine-CXX.cmake"
|
97
|
+
"/usr/share/cmake-3.15/Modules/Platform/Linux-GNU-C.cmake"
|
98
|
+
"/usr/share/cmake-3.15/Modules/Platform/Linux-GNU-CXX.cmake"
|
99
|
+
"/usr/share/cmake-3.15/Modules/Platform/Linux-GNU.cmake"
|
100
|
+
"/usr/share/cmake-3.15/Modules/Platform/Linux.cmake"
|
101
|
+
"/usr/share/cmake-3.15/Modules/Platform/UnixPaths.cmake"
|
102
|
+
)
|
103
|
+
|
104
|
+
# The corresponding makefile is:
|
105
|
+
set(CMAKE_MAKEFILE_OUTPUTS
|
106
|
+
"Makefile"
|
107
|
+
"CMakeFiles/cmake.check_cache"
|
108
|
+
)
|
109
|
+
|
110
|
+
# Byproducts of CMake generate step:
|
111
|
+
set(CMAKE_MAKEFILE_PRODUCTS
|
112
|
+
"CMakeFiles/3.15.4/CMakeSystem.cmake"
|
113
|
+
"CMakeFiles/3.15.4/CMakeCCompiler.cmake"
|
114
|
+
"CMakeFiles/3.15.4/CMakeCXXCompiler.cmake"
|
115
|
+
"CMakeFiles/3.15.4/CMakeCCompiler.cmake"
|
116
|
+
"CMakeFiles/3.15.4/CMakeCXXCompiler.cmake"
|
117
|
+
"CMakeFiles/CMakeDirectoryInformation.cmake"
|
118
|
+
)
|
119
|
+
|
120
|
+
# Dependency information for all targets:
|
121
|
+
set(CMAKE_DEPEND_INFO_FILES
|
122
|
+
"CMakeFiles/libzxing.dir/DependInfo.cmake"
|
123
|
+
"CMakeFiles/testrunner.dir/DependInfo.cmake"
|
124
|
+
"CMakeFiles/zxing.dir/DependInfo.cmake"
|
125
|
+
)
|
@@ -0,0 +1,177 @@
|
|
1
|
+
# CMAKE generated file: DO NOT EDIT!
|
2
|
+
# Generated by "Unix Makefiles" Generator, CMake Version 3.15
|
3
|
+
|
4
|
+
# Default target executed when no arguments are given to make.
|
5
|
+
default_target: all
|
6
|
+
|
7
|
+
.PHONY : default_target
|
8
|
+
|
9
|
+
# The main recursive all target
|
10
|
+
all:
|
11
|
+
|
12
|
+
.PHONY : all
|
13
|
+
|
14
|
+
# The main recursive preinstall target
|
15
|
+
preinstall:
|
16
|
+
|
17
|
+
.PHONY : preinstall
|
18
|
+
|
19
|
+
#=============================================================================
|
20
|
+
# Special targets provided by cmake.
|
21
|
+
|
22
|
+
# Disable implicit rules so canonical targets will work.
|
23
|
+
.SUFFIXES:
|
24
|
+
|
25
|
+
|
26
|
+
# Remove some rules from gmake that .SUFFIXES does not remove.
|
27
|
+
SUFFIXES =
|
28
|
+
|
29
|
+
.SUFFIXES: .hpux_make_needs_suffix_list
|
30
|
+
|
31
|
+
|
32
|
+
# Suppress display of executed commands.
|
33
|
+
$(VERBOSE).SILENT:
|
34
|
+
|
35
|
+
|
36
|
+
# A target that is always out of date.
|
37
|
+
cmake_force:
|
38
|
+
|
39
|
+
.PHONY : cmake_force
|
40
|
+
|
41
|
+
#=============================================================================
|
42
|
+
# Set environment variables for the build.
|
43
|
+
|
44
|
+
# The shell in which to execute make rules.
|
45
|
+
SHELL = /bin/sh
|
46
|
+
|
47
|
+
# The CMake executable.
|
48
|
+
CMAKE_COMMAND = /usr/bin/cmake
|
49
|
+
|
50
|
+
# The command to remove a file.
|
51
|
+
RM = /usr/bin/cmake -E remove -f
|
52
|
+
|
53
|
+
# Escaping for special characters.
|
54
|
+
EQUALS = =
|
55
|
+
|
56
|
+
# The top-level source directory on which CMake was run.
|
57
|
+
CMAKE_SOURCE_DIR = /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp
|
58
|
+
|
59
|
+
# The top-level build directory on which CMake was run.
|
60
|
+
CMAKE_BINARY_DIR = /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build
|
61
|
+
|
62
|
+
#=============================================================================
|
63
|
+
# Directory level rules for the build root directory
|
64
|
+
|
65
|
+
# The main recursive "clean" target.
|
66
|
+
clean: CMakeFiles/libzxing.dir/clean
|
67
|
+
clean: CMakeFiles/testrunner.dir/clean
|
68
|
+
clean: CMakeFiles/zxing.dir/clean
|
69
|
+
|
70
|
+
.PHONY : clean
|
71
|
+
|
72
|
+
#=============================================================================
|
73
|
+
# Target rules for target CMakeFiles/libzxing.dir
|
74
|
+
|
75
|
+
# All Build rule for target.
|
76
|
+
CMakeFiles/libzxing.dir/all:
|
77
|
+
$(MAKE) -f CMakeFiles/libzxing.dir/build.make CMakeFiles/libzxing.dir/depend
|
78
|
+
$(MAKE) -f CMakeFiles/libzxing.dir/build.make CMakeFiles/libzxing.dir/build
|
79
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84 "Built target libzxing"
|
80
|
+
.PHONY : CMakeFiles/libzxing.dir/all
|
81
|
+
|
82
|
+
# Include target in all.
|
83
|
+
all: CMakeFiles/libzxing.dir/all
|
84
|
+
|
85
|
+
.PHONY : all
|
86
|
+
|
87
|
+
# Build rule for subdir invocation for target.
|
88
|
+
CMakeFiles/libzxing.dir/rule: cmake_check_build_system
|
89
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles 84
|
90
|
+
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/libzxing.dir/all
|
91
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles 0
|
92
|
+
.PHONY : CMakeFiles/libzxing.dir/rule
|
93
|
+
|
94
|
+
# Convenience name for target.
|
95
|
+
libzxing: CMakeFiles/libzxing.dir/rule
|
96
|
+
|
97
|
+
.PHONY : libzxing
|
98
|
+
|
99
|
+
# clean rule for target.
|
100
|
+
CMakeFiles/libzxing.dir/clean:
|
101
|
+
$(MAKE) -f CMakeFiles/libzxing.dir/build.make CMakeFiles/libzxing.dir/clean
|
102
|
+
.PHONY : CMakeFiles/libzxing.dir/clean
|
103
|
+
|
104
|
+
#=============================================================================
|
105
|
+
# Target rules for target CMakeFiles/testrunner.dir
|
106
|
+
|
107
|
+
# All Build rule for target.
|
108
|
+
CMakeFiles/testrunner.dir/all: CMakeFiles/libzxing.dir/all
|
109
|
+
$(MAKE) -f CMakeFiles/testrunner.dir/build.make CMakeFiles/testrunner.dir/depend
|
110
|
+
$(MAKE) -f CMakeFiles/testrunner.dir/build.make CMakeFiles/testrunner.dir/build
|
111
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles --progress-num=85,86,87,88,89,90,91,92,93,94,95 "Built target testrunner"
|
112
|
+
.PHONY : CMakeFiles/testrunner.dir/all
|
113
|
+
|
114
|
+
# Include target in all.
|
115
|
+
all: CMakeFiles/testrunner.dir/all
|
116
|
+
|
117
|
+
.PHONY : all
|
118
|
+
|
119
|
+
# Build rule for subdir invocation for target.
|
120
|
+
CMakeFiles/testrunner.dir/rule: cmake_check_build_system
|
121
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles 95
|
122
|
+
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/testrunner.dir/all
|
123
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles 0
|
124
|
+
.PHONY : CMakeFiles/testrunner.dir/rule
|
125
|
+
|
126
|
+
# Convenience name for target.
|
127
|
+
testrunner: CMakeFiles/testrunner.dir/rule
|
128
|
+
|
129
|
+
.PHONY : testrunner
|
130
|
+
|
131
|
+
# clean rule for target.
|
132
|
+
CMakeFiles/testrunner.dir/clean:
|
133
|
+
$(MAKE) -f CMakeFiles/testrunner.dir/build.make CMakeFiles/testrunner.dir/clean
|
134
|
+
.PHONY : CMakeFiles/testrunner.dir/clean
|
135
|
+
|
136
|
+
#=============================================================================
|
137
|
+
# Target rules for target CMakeFiles/zxing.dir
|
138
|
+
|
139
|
+
# All Build rule for target.
|
140
|
+
CMakeFiles/zxing.dir/all: CMakeFiles/libzxing.dir/all
|
141
|
+
$(MAKE) -f CMakeFiles/zxing.dir/build.make CMakeFiles/zxing.dir/depend
|
142
|
+
$(MAKE) -f CMakeFiles/zxing.dir/build.make CMakeFiles/zxing.dir/build
|
143
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles --progress-num=96,97,98,99,100 "Built target zxing"
|
144
|
+
.PHONY : CMakeFiles/zxing.dir/all
|
145
|
+
|
146
|
+
# Include target in all.
|
147
|
+
all: CMakeFiles/zxing.dir/all
|
148
|
+
|
149
|
+
.PHONY : all
|
150
|
+
|
151
|
+
# Build rule for subdir invocation for target.
|
152
|
+
CMakeFiles/zxing.dir/rule: cmake_check_build_system
|
153
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles 89
|
154
|
+
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/zxing.dir/all
|
155
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles 0
|
156
|
+
.PHONY : CMakeFiles/zxing.dir/rule
|
157
|
+
|
158
|
+
# Convenience name for target.
|
159
|
+
zxing: CMakeFiles/zxing.dir/rule
|
160
|
+
|
161
|
+
.PHONY : zxing
|
162
|
+
|
163
|
+
# clean rule for target.
|
164
|
+
CMakeFiles/zxing.dir/clean:
|
165
|
+
$(MAKE) -f CMakeFiles/zxing.dir/build.make CMakeFiles/zxing.dir/clean
|
166
|
+
.PHONY : CMakeFiles/zxing.dir/clean
|
167
|
+
|
168
|
+
#=============================================================================
|
169
|
+
# Special targets to cleanup operation of make.
|
170
|
+
|
171
|
+
# Special rule to run CMake to check the build system integrity.
|
172
|
+
# No rule that depends on this can have commands that come from listfiles
|
173
|
+
# because they might be regenerated.
|
174
|
+
cmake_check_build_system:
|
175
|
+
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
|
176
|
+
.PHONY : cmake_check_build_system
|
177
|
+
|
@@ -0,0 +1,9 @@
|
|
1
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles/install/strip.dir
|
2
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles/install/local.dir
|
3
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles/install.dir
|
4
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles/list_install_components.dir
|
5
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles/libzxing.dir
|
6
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles/testrunner.dir
|
7
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles/rebuild_cache.dir
|
8
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles/zxing.dir
|
9
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles/edit_cache.dir
|
@@ -0,0 +1 @@
|
|
1
|
+
# This file is generated by cmake for dependency checking of the CMakeCache.txt file
|
@@ -0,0 +1,1892 @@
|
|
1
|
+
#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">])
|
2
|
+
|
3
|
+
#IncludeRegexScan: ^.*$
|
4
|
+
|
5
|
+
#IncludeRegexComplain: ^$
|
6
|
+
|
7
|
+
#IncludeRegexTransform:
|
8
|
+
|
9
|
+
../core/src/bigint/BigInteger.hh
|
10
|
+
BigUnsigned.hh
|
11
|
+
../core/src/bigint/BigUnsigned.hh
|
12
|
+
|
13
|
+
../core/src/bigint/BigIntegerUtils.hh
|
14
|
+
BigInteger.hh
|
15
|
+
../core/src/bigint/BigInteger.hh
|
16
|
+
string
|
17
|
+
-
|
18
|
+
iostream
|
19
|
+
-
|
20
|
+
|
21
|
+
../core/src/bigint/BigUnsigned.hh
|
22
|
+
NumberlikeArray.hh
|
23
|
+
../core/src/bigint/NumberlikeArray.hh
|
24
|
+
|
25
|
+
../core/src/bigint/NumberlikeArray.hh
|
26
|
+
|
27
|
+
../core/src/zxing/BarcodeFormat.h
|
28
|
+
|
29
|
+
../core/src/zxing/Binarizer.h
|
30
|
+
zxing/LuminanceSource.h
|
31
|
+
-
|
32
|
+
zxing/common/BitArray.h
|
33
|
+
-
|
34
|
+
zxing/common/BitMatrix.h
|
35
|
+
-
|
36
|
+
zxing/common/Counted.h
|
37
|
+
-
|
38
|
+
|
39
|
+
../core/src/zxing/BinaryBitmap.h
|
40
|
+
zxing/common/Counted.h
|
41
|
+
-
|
42
|
+
zxing/common/BitMatrix.h
|
43
|
+
-
|
44
|
+
zxing/common/BitArray.h
|
45
|
+
-
|
46
|
+
zxing/Binarizer.h
|
47
|
+
-
|
48
|
+
|
49
|
+
../core/src/zxing/ChecksumException.h
|
50
|
+
zxing/ReaderException.h
|
51
|
+
-
|
52
|
+
|
53
|
+
../core/src/zxing/DecodeHints.h
|
54
|
+
zxing/BarcodeFormat.h
|
55
|
+
-
|
56
|
+
zxing/ResultPointCallback.h
|
57
|
+
-
|
58
|
+
|
59
|
+
../core/src/zxing/Exception.h
|
60
|
+
string
|
61
|
+
-
|
62
|
+
exception
|
63
|
+
-
|
64
|
+
|
65
|
+
../core/src/zxing/FormatException.h
|
66
|
+
zxing/ReaderException.h
|
67
|
+
-
|
68
|
+
|
69
|
+
../core/src/zxing/IllegalStateException.h
|
70
|
+
zxing/ReaderException.h
|
71
|
+
-
|
72
|
+
|
73
|
+
../core/src/zxing/InvertedLuminanceSource.h
|
74
|
+
zxing/ZXing.h
|
75
|
+
-
|
76
|
+
zxing/LuminanceSource.h
|
77
|
+
-
|
78
|
+
|
79
|
+
../core/src/zxing/LuminanceSource.h
|
80
|
+
zxing/common/Counted.h
|
81
|
+
-
|
82
|
+
zxing/common/Array.h
|
83
|
+
-
|
84
|
+
string.h
|
85
|
+
-
|
86
|
+
|
87
|
+
../core/src/zxing/MultiFormatReader.h
|
88
|
+
zxing/Reader.h
|
89
|
+
-
|
90
|
+
zxing/common/BitArray.h
|
91
|
+
-
|
92
|
+
zxing/Result.h
|
93
|
+
-
|
94
|
+
zxing/DecodeHints.h
|
95
|
+
-
|
96
|
+
|
97
|
+
../core/src/zxing/NotFoundException.h
|
98
|
+
zxing/ReaderException.h
|
99
|
+
-
|
100
|
+
|
101
|
+
../core/src/zxing/Reader.h
|
102
|
+
zxing/BinaryBitmap.h
|
103
|
+
-
|
104
|
+
zxing/Result.h
|
105
|
+
-
|
106
|
+
zxing/DecodeHints.h
|
107
|
+
-
|
108
|
+
|
109
|
+
../core/src/zxing/ReaderException.h
|
110
|
+
zxing/Exception.h
|
111
|
+
-
|
112
|
+
|
113
|
+
../core/src/zxing/Result.h
|
114
|
+
string
|
115
|
+
-
|
116
|
+
zxing/common/Array.h
|
117
|
+
-
|
118
|
+
zxing/common/Counted.h
|
119
|
+
-
|
120
|
+
zxing/common/Str.h
|
121
|
+
-
|
122
|
+
zxing/ResultPoint.h
|
123
|
+
-
|
124
|
+
zxing/BarcodeFormat.h
|
125
|
+
-
|
126
|
+
|
127
|
+
../core/src/zxing/ResultPoint.h
|
128
|
+
zxing/common/Counted.h
|
129
|
+
-
|
130
|
+
vector
|
131
|
+
-
|
132
|
+
|
133
|
+
../core/src/zxing/ResultPointCallback.h
|
134
|
+
zxing/common/Counted.h
|
135
|
+
-
|
136
|
+
|
137
|
+
../core/src/zxing/ZXing.h
|
138
|
+
limits
|
139
|
+
-
|
140
|
+
float.h
|
141
|
+
-
|
142
|
+
cmath
|
143
|
+
-
|
144
|
+
iostream
|
145
|
+
-
|
146
|
+
string
|
147
|
+
-
|
148
|
+
sys/time.h
|
149
|
+
-
|
150
|
+
|
151
|
+
../core/src/zxing/aztec/AztecDetectorResult.h
|
152
|
+
zxing/common/DetectorResult.h
|
153
|
+
-
|
154
|
+
|
155
|
+
../core/src/zxing/aztec/AztecReader.h
|
156
|
+
zxing/Reader.h
|
157
|
+
-
|
158
|
+
zxing/aztec/decoder/Decoder.h
|
159
|
+
-
|
160
|
+
zxing/DecodeHints.h
|
161
|
+
-
|
162
|
+
|
163
|
+
../core/src/zxing/aztec/decoder/Decoder.h
|
164
|
+
zxing/common/BitMatrix.h
|
165
|
+
-
|
166
|
+
zxing/common/Str.h
|
167
|
+
-
|
168
|
+
zxing/aztec/AztecDetectorResult.h
|
169
|
+
-
|
170
|
+
|
171
|
+
../core/src/zxing/aztec/detector/Detector.h
|
172
|
+
vector
|
173
|
+
-
|
174
|
+
zxing/common/BitArray.h
|
175
|
+
-
|
176
|
+
zxing/ResultPoint.h
|
177
|
+
-
|
178
|
+
zxing/common/BitMatrix.h
|
179
|
+
-
|
180
|
+
zxing/DecodeHints.h
|
181
|
+
-
|
182
|
+
zxing/aztec/AztecDetectorResult.h
|
183
|
+
-
|
184
|
+
|
185
|
+
../core/src/zxing/common/Array.h
|
186
|
+
vector
|
187
|
+
-
|
188
|
+
zxing/common/Counted.h
|
189
|
+
-
|
190
|
+
|
191
|
+
../core/src/zxing/common/BitArray.h
|
192
|
+
zxing/ZXing.h
|
193
|
+
-
|
194
|
+
zxing/common/Counted.h
|
195
|
+
-
|
196
|
+
zxing/common/IllegalArgumentException.h
|
197
|
+
-
|
198
|
+
zxing/common/Array.h
|
199
|
+
-
|
200
|
+
vector
|
201
|
+
-
|
202
|
+
limits
|
203
|
+
-
|
204
|
+
iostream
|
205
|
+
-
|
206
|
+
|
207
|
+
../core/src/zxing/common/BitMatrix.h
|
208
|
+
zxing/common/Counted.h
|
209
|
+
-
|
210
|
+
zxing/common/BitArray.h
|
211
|
+
-
|
212
|
+
zxing/common/Array.h
|
213
|
+
-
|
214
|
+
limits
|
215
|
+
-
|
216
|
+
|
217
|
+
../core/src/zxing/common/BitSource.h
|
218
|
+
zxing/common/Array.h
|
219
|
+
-
|
220
|
+
|
221
|
+
../core/src/zxing/common/CharacterSetECI.h
|
222
|
+
map
|
223
|
+
-
|
224
|
+
zxing/DecodeHints.h
|
225
|
+
-
|
226
|
+
|
227
|
+
../core/src/zxing/common/Counted.h
|
228
|
+
iostream
|
229
|
+
-
|
230
|
+
|
231
|
+
../core/src/zxing/common/DecoderResult.h
|
232
|
+
zxing/common/Counted.h
|
233
|
+
-
|
234
|
+
zxing/common/Array.h
|
235
|
+
-
|
236
|
+
string
|
237
|
+
-
|
238
|
+
zxing/common/Str.h
|
239
|
+
-
|
240
|
+
|
241
|
+
../core/src/zxing/common/DetectorResult.h
|
242
|
+
zxing/common/Counted.h
|
243
|
+
-
|
244
|
+
zxing/common/Array.h
|
245
|
+
-
|
246
|
+
zxing/common/BitMatrix.h
|
247
|
+
-
|
248
|
+
zxing/ResultPoint.h
|
249
|
+
-
|
250
|
+
|
251
|
+
../core/src/zxing/common/GlobalHistogramBinarizer.h
|
252
|
+
zxing/Binarizer.h
|
253
|
+
-
|
254
|
+
zxing/common/BitArray.h
|
255
|
+
-
|
256
|
+
zxing/common/BitMatrix.h
|
257
|
+
-
|
258
|
+
zxing/common/Array.h
|
259
|
+
-
|
260
|
+
|
261
|
+
../core/src/zxing/common/GreyscaleLuminanceSource.h
|
262
|
+
zxing/LuminanceSource.h
|
263
|
+
-
|
264
|
+
|
265
|
+
../core/src/zxing/common/GreyscaleRotatedLuminanceSource.h
|
266
|
+
zxing/LuminanceSource.h
|
267
|
+
-
|
268
|
+
|
269
|
+
../core/src/zxing/common/GridSampler.h
|
270
|
+
zxing/common/Counted.h
|
271
|
+
-
|
272
|
+
zxing/common/BitMatrix.h
|
273
|
+
-
|
274
|
+
zxing/common/PerspectiveTransform.h
|
275
|
+
-
|
276
|
+
|
277
|
+
../core/src/zxing/common/HybridBinarizer.h
|
278
|
+
vector
|
279
|
+
-
|
280
|
+
zxing/Binarizer.h
|
281
|
+
-
|
282
|
+
zxing/common/GlobalHistogramBinarizer.h
|
283
|
+
-
|
284
|
+
zxing/common/BitArray.h
|
285
|
+
-
|
286
|
+
zxing/common/BitMatrix.h
|
287
|
+
-
|
288
|
+
|
289
|
+
../core/src/zxing/common/IllegalArgumentException.h
|
290
|
+
zxing/Exception.h
|
291
|
+
-
|
292
|
+
|
293
|
+
../core/src/zxing/common/PerspectiveTransform.h
|
294
|
+
zxing/common/Counted.h
|
295
|
+
-
|
296
|
+
vector
|
297
|
+
-
|
298
|
+
|
299
|
+
../core/src/zxing/common/Point.h
|
300
|
+
|
301
|
+
../core/src/zxing/common/Str.h
|
302
|
+
string
|
303
|
+
-
|
304
|
+
iostream
|
305
|
+
-
|
306
|
+
zxing/common/Counted.h
|
307
|
+
-
|
308
|
+
|
309
|
+
../core/src/zxing/common/StringUtils.h
|
310
|
+
string
|
311
|
+
-
|
312
|
+
map
|
313
|
+
-
|
314
|
+
zxing/DecodeHints.h
|
315
|
+
-
|
316
|
+
|
317
|
+
../core/src/zxing/common/detector/JavaMath.h
|
318
|
+
cmath
|
319
|
+
-
|
320
|
+
|
321
|
+
../core/src/zxing/common/detector/MathUtils.h
|
322
|
+
cmath
|
323
|
+
-
|
324
|
+
|
325
|
+
../core/src/zxing/common/detector/MonochromeRectangleDetector.h
|
326
|
+
vector
|
327
|
+
-
|
328
|
+
zxing/NotFoundException.h
|
329
|
+
-
|
330
|
+
zxing/ResultPoint.h
|
331
|
+
-
|
332
|
+
zxing/common/BitMatrix.h
|
333
|
+
-
|
334
|
+
zxing/common/Counted.h
|
335
|
+
-
|
336
|
+
zxing/ResultPoint.h
|
337
|
+
-
|
338
|
+
|
339
|
+
../core/src/zxing/common/detector/WhiteRectangleDetector.h
|
340
|
+
vector
|
341
|
+
-
|
342
|
+
zxing/ReaderException.h
|
343
|
+
-
|
344
|
+
zxing/ResultPoint.h
|
345
|
+
-
|
346
|
+
zxing/common/BitMatrix.h
|
347
|
+
-
|
348
|
+
zxing/common/Counted.h
|
349
|
+
-
|
350
|
+
zxing/ResultPoint.h
|
351
|
+
-
|
352
|
+
|
353
|
+
../core/src/zxing/common/reedsolomon/GenericGF.h
|
354
|
+
vector
|
355
|
+
-
|
356
|
+
zxing/common/Counted.h
|
357
|
+
-
|
358
|
+
|
359
|
+
../core/src/zxing/common/reedsolomon/GenericGFPoly.h
|
360
|
+
vector
|
361
|
+
-
|
362
|
+
zxing/common/Array.h
|
363
|
+
-
|
364
|
+
zxing/common/Counted.h
|
365
|
+
-
|
366
|
+
|
367
|
+
../core/src/zxing/common/reedsolomon/ReedSolomonDecoder.h
|
368
|
+
memory
|
369
|
+
-
|
370
|
+
vector
|
371
|
+
-
|
372
|
+
zxing/common/Counted.h
|
373
|
+
-
|
374
|
+
zxing/common/Array.h
|
375
|
+
-
|
376
|
+
zxing/common/reedsolomon/GenericGFPoly.h
|
377
|
+
-
|
378
|
+
zxing/common/reedsolomon/GenericGF.h
|
379
|
+
-
|
380
|
+
|
381
|
+
../core/src/zxing/common/reedsolomon/ReedSolomonException.h
|
382
|
+
zxing/Exception.h
|
383
|
+
-
|
384
|
+
|
385
|
+
../core/src/zxing/datamatrix/DataMatrixReader.h
|
386
|
+
zxing/Reader.h
|
387
|
+
-
|
388
|
+
zxing/DecodeHints.h
|
389
|
+
-
|
390
|
+
zxing/datamatrix/decoder/Decoder.h
|
391
|
+
-
|
392
|
+
|
393
|
+
../core/src/zxing/datamatrix/Version.h
|
394
|
+
zxing/ReaderException.h
|
395
|
+
-
|
396
|
+
zxing/common/BitMatrix.h
|
397
|
+
-
|
398
|
+
zxing/common/Counted.h
|
399
|
+
-
|
400
|
+
vector
|
401
|
+
-
|
402
|
+
|
403
|
+
../core/src/zxing/datamatrix/decoder/BitMatrixParser.h
|
404
|
+
zxing/ReaderException.h
|
405
|
+
-
|
406
|
+
zxing/common/BitMatrix.h
|
407
|
+
-
|
408
|
+
zxing/common/Counted.h
|
409
|
+
-
|
410
|
+
zxing/common/Array.h
|
411
|
+
-
|
412
|
+
zxing/datamatrix/Version.h
|
413
|
+
-
|
414
|
+
|
415
|
+
../core/src/zxing/datamatrix/decoder/DataBlock.h
|
416
|
+
vector
|
417
|
+
-
|
418
|
+
zxing/common/Counted.h
|
419
|
+
-
|
420
|
+
zxing/common/Array.h
|
421
|
+
-
|
422
|
+
zxing/datamatrix/Version.h
|
423
|
+
-
|
424
|
+
|
425
|
+
../core/src/zxing/datamatrix/decoder/DecodedBitStreamParser.h
|
426
|
+
string
|
427
|
+
-
|
428
|
+
sstream
|
429
|
+
-
|
430
|
+
zxing/common/Array.h
|
431
|
+
-
|
432
|
+
zxing/common/BitSource.h
|
433
|
+
-
|
434
|
+
zxing/common/Counted.h
|
435
|
+
-
|
436
|
+
zxing/common/DecoderResult.h
|
437
|
+
-
|
438
|
+
|
439
|
+
../core/src/zxing/datamatrix/decoder/Decoder.h
|
440
|
+
zxing/common/reedsolomon/ReedSolomonDecoder.h
|
441
|
+
-
|
442
|
+
zxing/common/Counted.h
|
443
|
+
-
|
444
|
+
zxing/common/Array.h
|
445
|
+
-
|
446
|
+
zxing/common/DecoderResult.h
|
447
|
+
-
|
448
|
+
zxing/common/BitMatrix.h
|
449
|
+
-
|
450
|
+
|
451
|
+
../core/src/zxing/datamatrix/detector/CornerPoint.h
|
452
|
+
zxing/ResultPoint.h
|
453
|
+
-
|
454
|
+
cmath
|
455
|
+
-
|
456
|
+
|
457
|
+
../core/src/zxing/datamatrix/detector/Detector.h
|
458
|
+
zxing/common/Counted.h
|
459
|
+
-
|
460
|
+
zxing/common/DetectorResult.h
|
461
|
+
-
|
462
|
+
zxing/common/BitMatrix.h
|
463
|
+
-
|
464
|
+
zxing/common/PerspectiveTransform.h
|
465
|
+
-
|
466
|
+
zxing/common/detector/WhiteRectangleDetector.h
|
467
|
+
-
|
468
|
+
|
469
|
+
../core/src/zxing/multi/ByQuadrantReader.h
|
470
|
+
zxing/Reader.h
|
471
|
+
-
|
472
|
+
zxing/BinaryBitmap.h
|
473
|
+
-
|
474
|
+
zxing/Result.h
|
475
|
+
-
|
476
|
+
zxing/DecodeHints.h
|
477
|
+
-
|
478
|
+
|
479
|
+
../core/src/zxing/multi/GenericMultipleBarcodeReader.h
|
480
|
+
zxing/multi/MultipleBarcodeReader.h
|
481
|
+
-
|
482
|
+
zxing/Reader.h
|
483
|
+
-
|
484
|
+
|
485
|
+
../core/src/zxing/multi/MultipleBarcodeReader.h
|
486
|
+
zxing/common/Counted.h
|
487
|
+
-
|
488
|
+
zxing/Result.h
|
489
|
+
-
|
490
|
+
zxing/BinaryBitmap.h
|
491
|
+
-
|
492
|
+
zxing/DecodeHints.h
|
493
|
+
-
|
494
|
+
vector
|
495
|
+
-
|
496
|
+
|
497
|
+
../core/src/zxing/multi/qrcode/QRCodeMultiReader.h
|
498
|
+
zxing/multi/MultipleBarcodeReader.h
|
499
|
+
-
|
500
|
+
zxing/qrcode/QRCodeReader.h
|
501
|
+
-
|
502
|
+
|
503
|
+
../core/src/zxing/multi/qrcode/detector/MultiDetector.h
|
504
|
+
zxing/qrcode/detector/Detector.h
|
505
|
+
-
|
506
|
+
zxing/common/DetectorResult.h
|
507
|
+
-
|
508
|
+
zxing/DecodeHints.h
|
509
|
+
-
|
510
|
+
|
511
|
+
../core/src/zxing/multi/qrcode/detector/MultiFinderPatternFinder.h
|
512
|
+
zxing/qrcode/detector/FinderPattern.h
|
513
|
+
-
|
514
|
+
zxing/qrcode/detector/FinderPatternFinder.h
|
515
|
+
-
|
516
|
+
zxing/qrcode/detector/FinderPatternInfo.h
|
517
|
+
-
|
518
|
+
|
519
|
+
../core/src/zxing/oned/CodaBarReader.h
|
520
|
+
zxing/oned/OneDReader.h
|
521
|
+
-
|
522
|
+
zxing/common/BitArray.h
|
523
|
+
-
|
524
|
+
zxing/Result.h
|
525
|
+
-
|
526
|
+
|
527
|
+
../core/src/zxing/oned/Code128Reader.h
|
528
|
+
zxing/oned/OneDReader.h
|
529
|
+
-
|
530
|
+
zxing/common/BitArray.h
|
531
|
+
-
|
532
|
+
zxing/Result.h
|
533
|
+
-
|
534
|
+
|
535
|
+
../core/src/zxing/oned/Code39Reader.h
|
536
|
+
zxing/oned/OneDReader.h
|
537
|
+
-
|
538
|
+
zxing/common/BitArray.h
|
539
|
+
-
|
540
|
+
zxing/Result.h
|
541
|
+
-
|
542
|
+
|
543
|
+
../core/src/zxing/oned/Code93Reader.h
|
544
|
+
zxing/oned/OneDReader.h
|
545
|
+
-
|
546
|
+
zxing/common/BitArray.h
|
547
|
+
-
|
548
|
+
zxing/Result.h
|
549
|
+
-
|
550
|
+
|
551
|
+
../core/src/zxing/oned/EAN13Reader.h
|
552
|
+
zxing/oned/UPCEANReader.h
|
553
|
+
-
|
554
|
+
zxing/Result.h
|
555
|
+
-
|
556
|
+
|
557
|
+
../core/src/zxing/oned/EAN8Reader.h
|
558
|
+
zxing/oned/UPCEANReader.h
|
559
|
+
-
|
560
|
+
zxing/Result.h
|
561
|
+
-
|
562
|
+
|
563
|
+
../core/src/zxing/oned/ITFReader.h
|
564
|
+
zxing/oned/OneDReader.h
|
565
|
+
-
|
566
|
+
zxing/common/BitArray.h
|
567
|
+
-
|
568
|
+
zxing/Result.h
|
569
|
+
-
|
570
|
+
|
571
|
+
../core/src/zxing/oned/MultiFormatOneDReader.h
|
572
|
+
zxing/oned/OneDReader.h
|
573
|
+
-
|
574
|
+
|
575
|
+
../core/src/zxing/oned/MultiFormatUPCEANReader.h
|
576
|
+
zxing/oned/OneDReader.h
|
577
|
+
-
|
578
|
+
|
579
|
+
../core/src/zxing/oned/OneDReader.h
|
580
|
+
zxing/Reader.h
|
581
|
+
-
|
582
|
+
|
583
|
+
../core/src/zxing/oned/OneDResultPoint.h
|
584
|
+
zxing/ResultPoint.h
|
585
|
+
-
|
586
|
+
cmath
|
587
|
+
-
|
588
|
+
|
589
|
+
../core/src/zxing/oned/UPCAReader.h
|
590
|
+
zxing/oned/EAN13Reader.h
|
591
|
+
-
|
592
|
+
zxing/DecodeHints.h
|
593
|
+
-
|
594
|
+
|
595
|
+
../core/src/zxing/oned/UPCEANReader.h
|
596
|
+
zxing/oned/OneDReader.h
|
597
|
+
-
|
598
|
+
zxing/common/BitArray.h
|
599
|
+
-
|
600
|
+
zxing/Result.h
|
601
|
+
-
|
602
|
+
|
603
|
+
../core/src/zxing/oned/UPCEReader.h
|
604
|
+
zxing/oned/UPCEANReader.h
|
605
|
+
-
|
606
|
+
zxing/Result.h
|
607
|
+
-
|
608
|
+
|
609
|
+
../core/src/zxing/pdf417/PDF417Reader.h
|
610
|
+
zxing/Reader.h
|
611
|
+
-
|
612
|
+
zxing/pdf417/decoder/Decoder.h
|
613
|
+
-
|
614
|
+
zxing/DecodeHints.h
|
615
|
+
-
|
616
|
+
|
617
|
+
../core/src/zxing/pdf417/decoder/BitMatrixParser.h
|
618
|
+
zxing/ReaderException.h
|
619
|
+
-
|
620
|
+
zxing/FormatException.h
|
621
|
+
-
|
622
|
+
zxing/common/BitMatrix.h
|
623
|
+
-
|
624
|
+
zxing/common/Counted.h
|
625
|
+
-
|
626
|
+
zxing/common/Array.h
|
627
|
+
-
|
628
|
+
stdint.h
|
629
|
+
-
|
630
|
+
|
631
|
+
../core/src/zxing/pdf417/decoder/DecodedBitStreamParser.h
|
632
|
+
bigint/BigInteger.hh
|
633
|
+
-
|
634
|
+
zxing/common/Array.h
|
635
|
+
-
|
636
|
+
zxing/common/Str.h
|
637
|
+
-
|
638
|
+
zxing/common/DecoderResult.h
|
639
|
+
-
|
640
|
+
|
641
|
+
../core/src/zxing/pdf417/decoder/Decoder.h
|
642
|
+
zxing/pdf417/decoder/ec/ErrorCorrection.h
|
643
|
+
-
|
644
|
+
zxing/pdf417/decoder/ec/ModulusGF.h
|
645
|
+
-
|
646
|
+
zxing/common/Counted.h
|
647
|
+
-
|
648
|
+
zxing/common/Array.h
|
649
|
+
-
|
650
|
+
zxing/common/DecoderResult.h
|
651
|
+
-
|
652
|
+
zxing/common/BitMatrix.h
|
653
|
+
-
|
654
|
+
|
655
|
+
../core/src/zxing/pdf417/decoder/ec/ErrorCorrection.h
|
656
|
+
zxing/common/Counted.h
|
657
|
+
-
|
658
|
+
zxing/common/Array.h
|
659
|
+
-
|
660
|
+
zxing/common/DecoderResult.h
|
661
|
+
-
|
662
|
+
zxing/common/BitMatrix.h
|
663
|
+
-
|
664
|
+
zxing/pdf417/decoder/ec/ModulusGF.h
|
665
|
+
-
|
666
|
+
zxing/pdf417/decoder/ec/ModulusPoly.h
|
667
|
+
-
|
668
|
+
zxing/common/reedsolomon/ReedSolomonException.h
|
669
|
+
-
|
670
|
+
|
671
|
+
../core/src/zxing/pdf417/decoder/ec/ModulusGF.h
|
672
|
+
zxing/common/Counted.h
|
673
|
+
-
|
674
|
+
zxing/common/Array.h
|
675
|
+
-
|
676
|
+
zxing/common/DecoderResult.h
|
677
|
+
-
|
678
|
+
zxing/common/BitMatrix.h
|
679
|
+
-
|
680
|
+
|
681
|
+
../core/src/zxing/pdf417/decoder/ec/ModulusPoly.h
|
682
|
+
zxing/common/Counted.h
|
683
|
+
-
|
684
|
+
zxing/common/Array.h
|
685
|
+
-
|
686
|
+
zxing/common/DecoderResult.h
|
687
|
+
-
|
688
|
+
zxing/common/BitMatrix.h
|
689
|
+
-
|
690
|
+
|
691
|
+
../core/src/zxing/pdf417/detector/Detector.h
|
692
|
+
zxing/common/Point.h
|
693
|
+
-
|
694
|
+
zxing/common/DetectorResult.h
|
695
|
+
-
|
696
|
+
zxing/NotFoundException.h
|
697
|
+
-
|
698
|
+
zxing/BinaryBitmap.h
|
699
|
+
-
|
700
|
+
zxing/DecodeHints.h
|
701
|
+
-
|
702
|
+
|
703
|
+
../core/src/zxing/pdf417/detector/LinesSampler.h
|
704
|
+
map
|
705
|
+
-
|
706
|
+
zxing/common/BitMatrix.h
|
707
|
+
-
|
708
|
+
zxing/ResultPoint.h
|
709
|
+
-
|
710
|
+
zxing/common/Point.h
|
711
|
+
-
|
712
|
+
|
713
|
+
../core/src/zxing/qrcode/ErrorCorrectionLevel.h
|
714
|
+
zxing/ReaderException.h
|
715
|
+
-
|
716
|
+
|
717
|
+
../core/src/zxing/qrcode/FormatInformation.h
|
718
|
+
zxing/qrcode/ErrorCorrectionLevel.h
|
719
|
+
-
|
720
|
+
zxing/common/Counted.h
|
721
|
+
-
|
722
|
+
iostream
|
723
|
+
-
|
724
|
+
|
725
|
+
../core/src/zxing/qrcode/QRCodeReader.h
|
726
|
+
zxing/Reader.h
|
727
|
+
-
|
728
|
+
zxing/qrcode/decoder/Decoder.h
|
729
|
+
-
|
730
|
+
zxing/DecodeHints.h
|
731
|
+
-
|
732
|
+
|
733
|
+
../core/src/zxing/qrcode/Version.h
|
734
|
+
zxing/common/Counted.h
|
735
|
+
-
|
736
|
+
zxing/qrcode/ErrorCorrectionLevel.h
|
737
|
+
-
|
738
|
+
zxing/ReaderException.h
|
739
|
+
-
|
740
|
+
zxing/common/BitMatrix.h
|
741
|
+
-
|
742
|
+
zxing/common/Counted.h
|
743
|
+
-
|
744
|
+
vector
|
745
|
+
-
|
746
|
+
|
747
|
+
../core/src/zxing/qrcode/decoder/BitMatrixParser.h
|
748
|
+
zxing/ReaderException.h
|
749
|
+
-
|
750
|
+
zxing/common/BitMatrix.h
|
751
|
+
-
|
752
|
+
zxing/common/Counted.h
|
753
|
+
-
|
754
|
+
zxing/common/Array.h
|
755
|
+
-
|
756
|
+
zxing/qrcode/Version.h
|
757
|
+
-
|
758
|
+
zxing/qrcode/FormatInformation.h
|
759
|
+
-
|
760
|
+
|
761
|
+
../core/src/zxing/qrcode/decoder/DataBlock.h
|
762
|
+
vector
|
763
|
+
-
|
764
|
+
zxing/common/Counted.h
|
765
|
+
-
|
766
|
+
zxing/common/Array.h
|
767
|
+
-
|
768
|
+
zxing/qrcode/Version.h
|
769
|
+
-
|
770
|
+
zxing/qrcode/ErrorCorrectionLevel.h
|
771
|
+
-
|
772
|
+
|
773
|
+
../core/src/zxing/qrcode/decoder/DataMask.h
|
774
|
+
zxing/common/Array.h
|
775
|
+
-
|
776
|
+
zxing/common/Counted.h
|
777
|
+
-
|
778
|
+
zxing/common/BitMatrix.h
|
779
|
+
-
|
780
|
+
vector
|
781
|
+
-
|
782
|
+
|
783
|
+
../core/src/zxing/qrcode/decoder/DecodedBitStreamParser.h
|
784
|
+
string
|
785
|
+
-
|
786
|
+
sstream
|
787
|
+
-
|
788
|
+
map
|
789
|
+
-
|
790
|
+
zxing/qrcode/decoder/Mode.h
|
791
|
+
-
|
792
|
+
zxing/common/BitSource.h
|
793
|
+
-
|
794
|
+
zxing/common/Counted.h
|
795
|
+
-
|
796
|
+
zxing/common/Array.h
|
797
|
+
-
|
798
|
+
zxing/common/DecoderResult.h
|
799
|
+
-
|
800
|
+
zxing/common/CharacterSetECI.h
|
801
|
+
-
|
802
|
+
zxing/DecodeHints.h
|
803
|
+
-
|
804
|
+
|
805
|
+
../core/src/zxing/qrcode/decoder/Decoder.h
|
806
|
+
zxing/common/reedsolomon/ReedSolomonDecoder.h
|
807
|
+
-
|
808
|
+
zxing/common/Counted.h
|
809
|
+
-
|
810
|
+
zxing/common/Array.h
|
811
|
+
-
|
812
|
+
zxing/common/DecoderResult.h
|
813
|
+
-
|
814
|
+
zxing/common/BitMatrix.h
|
815
|
+
-
|
816
|
+
|
817
|
+
../core/src/zxing/qrcode/decoder/Mode.h
|
818
|
+
zxing/common/Counted.h
|
819
|
+
-
|
820
|
+
zxing/qrcode/Version.h
|
821
|
+
-
|
822
|
+
|
823
|
+
../core/src/zxing/qrcode/detector/AlignmentPattern.h
|
824
|
+
zxing/ResultPoint.h
|
825
|
+
-
|
826
|
+
cmath
|
827
|
+
-
|
828
|
+
|
829
|
+
../core/src/zxing/qrcode/detector/AlignmentPatternFinder.h
|
830
|
+
AlignmentPattern.h
|
831
|
+
../core/src/zxing/qrcode/detector/AlignmentPattern.h
|
832
|
+
zxing/common/Counted.h
|
833
|
+
-
|
834
|
+
zxing/common/BitMatrix.h
|
835
|
+
-
|
836
|
+
zxing/ResultPointCallback.h
|
837
|
+
-
|
838
|
+
vector
|
839
|
+
-
|
840
|
+
|
841
|
+
../core/src/zxing/qrcode/detector/Detector.h
|
842
|
+
zxing/common/Counted.h
|
843
|
+
-
|
844
|
+
zxing/common/DetectorResult.h
|
845
|
+
-
|
846
|
+
zxing/common/BitMatrix.h
|
847
|
+
-
|
848
|
+
zxing/qrcode/detector/AlignmentPattern.h
|
849
|
+
-
|
850
|
+
zxing/common/PerspectiveTransform.h
|
851
|
+
-
|
852
|
+
zxing/ResultPointCallback.h
|
853
|
+
-
|
854
|
+
zxing/qrcode/detector/FinderPatternInfo.h
|
855
|
+
-
|
856
|
+
|
857
|
+
../core/src/zxing/qrcode/detector/FinderPattern.h
|
858
|
+
zxing/ResultPoint.h
|
859
|
+
-
|
860
|
+
cmath
|
861
|
+
-
|
862
|
+
|
863
|
+
../core/src/zxing/qrcode/detector/FinderPatternFinder.h
|
864
|
+
zxing/qrcode/detector/FinderPattern.h
|
865
|
+
-
|
866
|
+
zxing/qrcode/detector/FinderPatternInfo.h
|
867
|
+
-
|
868
|
+
zxing/common/Counted.h
|
869
|
+
-
|
870
|
+
zxing/common/BitMatrix.h
|
871
|
+
-
|
872
|
+
zxing/ResultPointCallback.h
|
873
|
+
-
|
874
|
+
vector
|
875
|
+
-
|
876
|
+
|
877
|
+
../core/src/zxing/qrcode/detector/FinderPatternInfo.h
|
878
|
+
zxing/qrcode/detector/FinderPattern.h
|
879
|
+
-
|
880
|
+
zxing/common/Counted.h
|
881
|
+
-
|
882
|
+
zxing/common/Array.h
|
883
|
+
-
|
884
|
+
vector
|
885
|
+
-
|
886
|
+
|
887
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/bigint/BigInteger.cc
|
888
|
+
BigInteger.hh
|
889
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/bigint/BigInteger.hh
|
890
|
+
|
891
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/bigint/BigInteger.hh
|
892
|
+
BigUnsigned.hh
|
893
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/bigint/BigUnsigned.hh
|
894
|
+
|
895
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/bigint/BigIntegerAlgorithms.cc
|
896
|
+
BigIntegerAlgorithms.hh
|
897
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/bigint/BigIntegerAlgorithms.hh
|
898
|
+
|
899
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/bigint/BigIntegerAlgorithms.hh
|
900
|
+
BigInteger.hh
|
901
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/bigint/BigInteger.hh
|
902
|
+
|
903
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/bigint/BigIntegerUtils.cc
|
904
|
+
BigIntegerUtils.hh
|
905
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/bigint/BigIntegerUtils.hh
|
906
|
+
BigUnsignedInABase.hh
|
907
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/bigint/BigUnsignedInABase.hh
|
908
|
+
|
909
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/bigint/BigIntegerUtils.hh
|
910
|
+
BigInteger.hh
|
911
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/bigint/BigInteger.hh
|
912
|
+
string
|
913
|
+
-
|
914
|
+
iostream
|
915
|
+
-
|
916
|
+
|
917
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/bigint/BigUnsigned.cc
|
918
|
+
BigUnsigned.hh
|
919
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/bigint/BigUnsigned.hh
|
920
|
+
|
921
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/bigint/BigUnsigned.hh
|
922
|
+
NumberlikeArray.hh
|
923
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/bigint/NumberlikeArray.hh
|
924
|
+
|
925
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/bigint/BigUnsignedInABase.cc
|
926
|
+
BigUnsignedInABase.hh
|
927
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/bigint/BigUnsignedInABase.hh
|
928
|
+
|
929
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/bigint/BigUnsignedInABase.hh
|
930
|
+
NumberlikeArray.hh
|
931
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/bigint/NumberlikeArray.hh
|
932
|
+
BigUnsigned.hh
|
933
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/bigint/BigUnsigned.hh
|
934
|
+
string
|
935
|
+
-
|
936
|
+
|
937
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/bigint/NumberlikeArray.hh
|
938
|
+
|
939
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/BarcodeFormat.cpp
|
940
|
+
zxing/BarcodeFormat.h
|
941
|
+
-
|
942
|
+
|
943
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/Binarizer.cpp
|
944
|
+
zxing/Binarizer.h
|
945
|
+
-
|
946
|
+
|
947
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/BinaryBitmap.cpp
|
948
|
+
zxing/BinaryBitmap.h
|
949
|
+
-
|
950
|
+
|
951
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/ChecksumException.cpp
|
952
|
+
zxing/ChecksumException.h
|
953
|
+
-
|
954
|
+
|
955
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/DecodeHints.cpp
|
956
|
+
zxing/DecodeHints.h
|
957
|
+
-
|
958
|
+
zxing/common/IllegalArgumentException.h
|
959
|
+
-
|
960
|
+
|
961
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/Exception.cpp
|
962
|
+
zxing/ZXing.h
|
963
|
+
-
|
964
|
+
zxing/Exception.h
|
965
|
+
-
|
966
|
+
string.h
|
967
|
+
-
|
968
|
+
|
969
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/FormatException.cpp
|
970
|
+
zxing/FormatException.h
|
971
|
+
-
|
972
|
+
|
973
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/InvertedLuminanceSource.cpp
|
974
|
+
zxing/ZXing.h
|
975
|
+
-
|
976
|
+
zxing/InvertedLuminanceSource.h
|
977
|
+
-
|
978
|
+
|
979
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/LuminanceSource.cpp
|
980
|
+
sstream
|
981
|
+
-
|
982
|
+
zxing/LuminanceSource.h
|
983
|
+
-
|
984
|
+
zxing/InvertedLuminanceSource.h
|
985
|
+
-
|
986
|
+
zxing/common/IllegalArgumentException.h
|
987
|
+
-
|
988
|
+
|
989
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/MultiFormatReader.cpp
|
990
|
+
zxing/ZXing.h
|
991
|
+
-
|
992
|
+
zxing/MultiFormatReader.h
|
993
|
+
-
|
994
|
+
zxing/qrcode/QRCodeReader.h
|
995
|
+
-
|
996
|
+
zxing/datamatrix/DataMatrixReader.h
|
997
|
+
-
|
998
|
+
zxing/aztec/AztecReader.h
|
999
|
+
-
|
1000
|
+
zxing/pdf417/PDF417Reader.h
|
1001
|
+
-
|
1002
|
+
zxing/oned/MultiFormatUPCEANReader.h
|
1003
|
+
-
|
1004
|
+
zxing/oned/MultiFormatOneDReader.h
|
1005
|
+
-
|
1006
|
+
zxing/ReaderException.h
|
1007
|
+
-
|
1008
|
+
|
1009
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/Reader.cpp
|
1010
|
+
zxing/Reader.h
|
1011
|
+
-
|
1012
|
+
|
1013
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/Result.cpp
|
1014
|
+
zxing/Result.h
|
1015
|
+
-
|
1016
|
+
|
1017
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/ResultIO.cpp
|
1018
|
+
zxing/Result.h
|
1019
|
+
-
|
1020
|
+
|
1021
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/ResultPoint.cpp
|
1022
|
+
zxing/ResultPoint.h
|
1023
|
+
-
|
1024
|
+
zxing/common/detector/MathUtils.h
|
1025
|
+
-
|
1026
|
+
|
1027
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/ResultPointCallback.cpp
|
1028
|
+
zxing/ResultPointCallback.h
|
1029
|
+
-
|
1030
|
+
|
1031
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/aztec/AztecDetectorResult.cpp
|
1032
|
+
zxing/aztec/AztecDetectorResult.h
|
1033
|
+
-
|
1034
|
+
|
1035
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/aztec/AztecReader.cpp
|
1036
|
+
zxing/aztec/AztecReader.h
|
1037
|
+
-
|
1038
|
+
zxing/aztec/detector/Detector.h
|
1039
|
+
-
|
1040
|
+
zxing/common/DecoderResult.h
|
1041
|
+
-
|
1042
|
+
iostream
|
1043
|
+
-
|
1044
|
+
|
1045
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/aztec/decoder/Decoder.cpp
|
1046
|
+
zxing/aztec/decoder/Decoder.h
|
1047
|
+
-
|
1048
|
+
iconv.h
|
1049
|
+
-
|
1050
|
+
iostream
|
1051
|
+
-
|
1052
|
+
zxing/FormatException.h
|
1053
|
+
-
|
1054
|
+
zxing/common/reedsolomon/ReedSolomonDecoder.h
|
1055
|
+
-
|
1056
|
+
zxing/common/reedsolomon/ReedSolomonException.h
|
1057
|
+
-
|
1058
|
+
zxing/common/reedsolomon/GenericGF.h
|
1059
|
+
-
|
1060
|
+
zxing/common/IllegalArgumentException.h
|
1061
|
+
-
|
1062
|
+
zxing/common/DecoderResult.h
|
1063
|
+
-
|
1064
|
+
|
1065
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/aztec/detector/Detector.cpp
|
1066
|
+
zxing/aztec/detector/Detector.h
|
1067
|
+
-
|
1068
|
+
zxing/common/GridSampler.h
|
1069
|
+
-
|
1070
|
+
zxing/common/detector/WhiteRectangleDetector.h
|
1071
|
+
-
|
1072
|
+
zxing/common/reedsolomon/ReedSolomonDecoder.h
|
1073
|
+
-
|
1074
|
+
zxing/common/reedsolomon/ReedSolomonException.h
|
1075
|
+
-
|
1076
|
+
zxing/common/reedsolomon/GenericGF.h
|
1077
|
+
-
|
1078
|
+
iostream
|
1079
|
+
-
|
1080
|
+
zxing/common/detector/MathUtils.h
|
1081
|
+
-
|
1082
|
+
zxing/NotFoundException.h
|
1083
|
+
-
|
1084
|
+
|
1085
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/common/BitArray.cpp
|
1086
|
+
zxing/common/BitArray.h
|
1087
|
+
-
|
1088
|
+
|
1089
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/common/BitArrayIO.cpp
|
1090
|
+
zxing/common/BitArray.h
|
1091
|
+
-
|
1092
|
+
|
1093
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/common/BitMatrix.cpp
|
1094
|
+
zxing/common/BitMatrix.h
|
1095
|
+
-
|
1096
|
+
zxing/common/IllegalArgumentException.h
|
1097
|
+
-
|
1098
|
+
iostream
|
1099
|
+
-
|
1100
|
+
sstream
|
1101
|
+
-
|
1102
|
+
string
|
1103
|
+
-
|
1104
|
+
|
1105
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/common/BitSource.cpp
|
1106
|
+
zxing/common/BitSource.h
|
1107
|
+
-
|
1108
|
+
sstream
|
1109
|
+
-
|
1110
|
+
zxing/common/IllegalArgumentException.h
|
1111
|
+
-
|
1112
|
+
|
1113
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/common/CharacterSetECI.cpp
|
1114
|
+
zxing/common/CharacterSetECI.h
|
1115
|
+
-
|
1116
|
+
zxing/common/IllegalArgumentException.h
|
1117
|
+
-
|
1118
|
+
zxing/FormatException.h
|
1119
|
+
-
|
1120
|
+
|
1121
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/common/DecoderResult.cpp
|
1122
|
+
zxing/common/DecoderResult.h
|
1123
|
+
-
|
1124
|
+
|
1125
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/common/DetectorResult.cpp
|
1126
|
+
zxing/common/DetectorResult.h
|
1127
|
+
-
|
1128
|
+
|
1129
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/common/GlobalHistogramBinarizer.cpp
|
1130
|
+
zxing/common/GlobalHistogramBinarizer.h
|
1131
|
+
-
|
1132
|
+
zxing/NotFoundException.h
|
1133
|
+
-
|
1134
|
+
zxing/common/Array.h
|
1135
|
+
-
|
1136
|
+
|
1137
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/common/GreyscaleLuminanceSource.cpp
|
1138
|
+
zxing/common/GreyscaleLuminanceSource.h
|
1139
|
+
-
|
1140
|
+
zxing/common/GreyscaleRotatedLuminanceSource.h
|
1141
|
+
-
|
1142
|
+
zxing/common/IllegalArgumentException.h
|
1143
|
+
-
|
1144
|
+
|
1145
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/common/GreyscaleRotatedLuminanceSource.cpp
|
1146
|
+
zxing/common/GreyscaleRotatedLuminanceSource.h
|
1147
|
+
-
|
1148
|
+
zxing/common/IllegalArgumentException.h
|
1149
|
+
-
|
1150
|
+
|
1151
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/common/GridSampler.cpp
|
1152
|
+
zxing/common/GridSampler.h
|
1153
|
+
-
|
1154
|
+
zxing/common/PerspectiveTransform.h
|
1155
|
+
-
|
1156
|
+
zxing/ReaderException.h
|
1157
|
+
-
|
1158
|
+
iostream
|
1159
|
+
-
|
1160
|
+
sstream
|
1161
|
+
-
|
1162
|
+
|
1163
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/common/HybridBinarizer.cpp
|
1164
|
+
zxing/common/HybridBinarizer.h
|
1165
|
+
-
|
1166
|
+
zxing/common/IllegalArgumentException.h
|
1167
|
+
-
|
1168
|
+
|
1169
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/common/IllegalArgumentException.cpp
|
1170
|
+
zxing/common/IllegalArgumentException.h
|
1171
|
+
-
|
1172
|
+
|
1173
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/common/PerspectiveTransform.cpp
|
1174
|
+
zxing/common/PerspectiveTransform.h
|
1175
|
+
-
|
1176
|
+
|
1177
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/common/Str.cpp
|
1178
|
+
zxing/common/Str.h
|
1179
|
+
-
|
1180
|
+
|
1181
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/common/StringUtils.cpp
|
1182
|
+
zxing/common/StringUtils.h
|
1183
|
+
-
|
1184
|
+
zxing/DecodeHints.h
|
1185
|
+
-
|
1186
|
+
|
1187
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/common/detector/MonochromeRectangleDetector.cpp
|
1188
|
+
zxing/NotFoundException.h
|
1189
|
+
-
|
1190
|
+
zxing/common/detector/MonochromeRectangleDetector.h
|
1191
|
+
-
|
1192
|
+
sstream
|
1193
|
+
-
|
1194
|
+
algorithm
|
1195
|
+
-
|
1196
|
+
|
1197
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/common/detector/WhiteRectangleDetector.cpp
|
1198
|
+
zxing/NotFoundException.h
|
1199
|
+
-
|
1200
|
+
zxing/common/detector/WhiteRectangleDetector.h
|
1201
|
+
-
|
1202
|
+
zxing/common/detector/MathUtils.h
|
1203
|
+
-
|
1204
|
+
sstream
|
1205
|
+
-
|
1206
|
+
|
1207
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/GenericGF.cpp
|
1208
|
+
iostream
|
1209
|
+
-
|
1210
|
+
zxing/common/reedsolomon/GenericGF.h
|
1211
|
+
-
|
1212
|
+
zxing/common/reedsolomon/GenericGFPoly.h
|
1213
|
+
-
|
1214
|
+
zxing/common/IllegalArgumentException.h
|
1215
|
+
-
|
1216
|
+
|
1217
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/GenericGFPoly.cpp
|
1218
|
+
iostream
|
1219
|
+
-
|
1220
|
+
zxing/common/reedsolomon/GenericGFPoly.h
|
1221
|
+
-
|
1222
|
+
zxing/common/reedsolomon/GenericGF.h
|
1223
|
+
-
|
1224
|
+
zxing/common/IllegalArgumentException.h
|
1225
|
+
-
|
1226
|
+
|
1227
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/ReedSolomonDecoder.cpp
|
1228
|
+
iostream
|
1229
|
+
-
|
1230
|
+
memory
|
1231
|
+
-
|
1232
|
+
zxing/common/reedsolomon/ReedSolomonDecoder.h
|
1233
|
+
-
|
1234
|
+
zxing/common/reedsolomon/ReedSolomonException.h
|
1235
|
+
-
|
1236
|
+
zxing/common/IllegalArgumentException.h
|
1237
|
+
-
|
1238
|
+
zxing/IllegalStateException.h
|
1239
|
+
-
|
1240
|
+
|
1241
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/ReedSolomonException.cpp
|
1242
|
+
zxing/common/reedsolomon/ReedSolomonException.h
|
1243
|
+
-
|
1244
|
+
|
1245
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/DataMatrixReader.cpp
|
1246
|
+
zxing/datamatrix/DataMatrixReader.h
|
1247
|
+
-
|
1248
|
+
zxing/datamatrix/detector/Detector.h
|
1249
|
+
-
|
1250
|
+
iostream
|
1251
|
+
-
|
1252
|
+
|
1253
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/Version.cpp
|
1254
|
+
zxing/datamatrix/Version.h
|
1255
|
+
-
|
1256
|
+
limits
|
1257
|
+
-
|
1258
|
+
iostream
|
1259
|
+
-
|
1260
|
+
|
1261
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/BitMatrixParser.cpp
|
1262
|
+
zxing/datamatrix/decoder/BitMatrixParser.h
|
1263
|
+
-
|
1264
|
+
zxing/common/IllegalArgumentException.h
|
1265
|
+
-
|
1266
|
+
iostream
|
1267
|
+
-
|
1268
|
+
|
1269
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/DataBlock.cpp
|
1270
|
+
zxing/datamatrix/decoder/DataBlock.h
|
1271
|
+
-
|
1272
|
+
zxing/common/IllegalArgumentException.h
|
1273
|
+
-
|
1274
|
+
|
1275
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/DecodedBitStreamParser.cpp
|
1276
|
+
zxing/FormatException.h
|
1277
|
+
-
|
1278
|
+
zxing/datamatrix/decoder/DecodedBitStreamParser.h
|
1279
|
+
-
|
1280
|
+
iostream
|
1281
|
+
-
|
1282
|
+
zxing/common/DecoderResult.h
|
1283
|
+
-
|
1284
|
+
|
1285
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/Decoder.cpp
|
1286
|
+
zxing/datamatrix/decoder/Decoder.h
|
1287
|
+
-
|
1288
|
+
zxing/datamatrix/decoder/BitMatrixParser.h
|
1289
|
+
-
|
1290
|
+
zxing/datamatrix/decoder/DataBlock.h
|
1291
|
+
-
|
1292
|
+
zxing/datamatrix/decoder/DecodedBitStreamParser.h
|
1293
|
+
-
|
1294
|
+
zxing/datamatrix/Version.h
|
1295
|
+
-
|
1296
|
+
zxing/ReaderException.h
|
1297
|
+
-
|
1298
|
+
zxing/ChecksumException.h
|
1299
|
+
-
|
1300
|
+
zxing/common/reedsolomon/ReedSolomonException.h
|
1301
|
+
-
|
1302
|
+
|
1303
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/CornerPoint.cpp
|
1304
|
+
zxing/datamatrix/detector/CornerPoint.h
|
1305
|
+
-
|
1306
|
+
|
1307
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/Detector.cpp
|
1308
|
+
map
|
1309
|
+
-
|
1310
|
+
zxing/ResultPoint.h
|
1311
|
+
-
|
1312
|
+
zxing/common/GridSampler.h
|
1313
|
+
-
|
1314
|
+
zxing/datamatrix/detector/Detector.h
|
1315
|
+
-
|
1316
|
+
zxing/common/detector/MathUtils.h
|
1317
|
+
-
|
1318
|
+
zxing/NotFoundException.h
|
1319
|
+
-
|
1320
|
+
sstream
|
1321
|
+
-
|
1322
|
+
cstdlib
|
1323
|
+
-
|
1324
|
+
algorithm
|
1325
|
+
-
|
1326
|
+
|
1327
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/DetectorException.cpp
|
1328
|
+
DetectorException.h
|
1329
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/DetectorException.h
|
1330
|
+
|
1331
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/DetectorException.h
|
1332
|
+
zxing/Exception.h
|
1333
|
+
-
|
1334
|
+
|
1335
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/multi/ByQuadrantReader.cpp
|
1336
|
+
zxing/multi/ByQuadrantReader.h
|
1337
|
+
-
|
1338
|
+
zxing/ReaderException.h
|
1339
|
+
-
|
1340
|
+
|
1341
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/multi/GenericMultipleBarcodeReader.cpp
|
1342
|
+
zxing/multi/GenericMultipleBarcodeReader.h
|
1343
|
+
-
|
1344
|
+
zxing/ReaderException.h
|
1345
|
+
-
|
1346
|
+
zxing/ResultPoint.h
|
1347
|
+
-
|
1348
|
+
|
1349
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/multi/MultipleBarcodeReader.cpp
|
1350
|
+
zxing/multi/MultipleBarcodeReader.h
|
1351
|
+
-
|
1352
|
+
|
1353
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/multi/qrcode/QRCodeMultiReader.cpp
|
1354
|
+
zxing/multi/qrcode/QRCodeMultiReader.h
|
1355
|
+
-
|
1356
|
+
zxing/ReaderException.h
|
1357
|
+
-
|
1358
|
+
zxing/multi/qrcode/detector/MultiDetector.h
|
1359
|
+
-
|
1360
|
+
zxing/BarcodeFormat.h
|
1361
|
+
-
|
1362
|
+
|
1363
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/multi/qrcode/detector/MultiDetector.cpp
|
1364
|
+
zxing/multi/qrcode/detector/MultiDetector.h
|
1365
|
+
-
|
1366
|
+
zxing/multi/qrcode/detector/MultiFinderPatternFinder.h
|
1367
|
+
-
|
1368
|
+
zxing/ReaderException.h
|
1369
|
+
-
|
1370
|
+
|
1371
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/multi/qrcode/detector/MultiFinderPatternFinder.cpp
|
1372
|
+
cmath
|
1373
|
+
-
|
1374
|
+
algorithm
|
1375
|
+
-
|
1376
|
+
zxing/multi/qrcode/detector/MultiFinderPatternFinder.h
|
1377
|
+
-
|
1378
|
+
zxing/DecodeHints.h
|
1379
|
+
-
|
1380
|
+
zxing/ReaderException.h
|
1381
|
+
-
|
1382
|
+
|
1383
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/oned/CodaBarReader.cpp
|
1384
|
+
zxing/ZXing.h
|
1385
|
+
-
|
1386
|
+
zxing/oned/CodaBarReader.h
|
1387
|
+
-
|
1388
|
+
zxing/oned/OneDResultPoint.h
|
1389
|
+
-
|
1390
|
+
zxing/common/Array.h
|
1391
|
+
-
|
1392
|
+
zxing/ReaderException.h
|
1393
|
+
-
|
1394
|
+
zxing/NotFoundException.h
|
1395
|
+
-
|
1396
|
+
zxing/FormatException.h
|
1397
|
+
-
|
1398
|
+
zxing/ChecksumException.h
|
1399
|
+
-
|
1400
|
+
math.h
|
1401
|
+
-
|
1402
|
+
sstream
|
1403
|
+
-
|
1404
|
+
|
1405
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/oned/Code128Reader.cpp
|
1406
|
+
zxing/ZXing.h
|
1407
|
+
-
|
1408
|
+
zxing/oned/Code128Reader.h
|
1409
|
+
-
|
1410
|
+
zxing/oned/OneDResultPoint.h
|
1411
|
+
-
|
1412
|
+
zxing/common/Array.h
|
1413
|
+
-
|
1414
|
+
zxing/ReaderException.h
|
1415
|
+
-
|
1416
|
+
zxing/NotFoundException.h
|
1417
|
+
-
|
1418
|
+
zxing/FormatException.h
|
1419
|
+
-
|
1420
|
+
zxing/ChecksumException.h
|
1421
|
+
-
|
1422
|
+
math.h
|
1423
|
+
-
|
1424
|
+
string.h
|
1425
|
+
-
|
1426
|
+
sstream
|
1427
|
+
-
|
1428
|
+
algorithm
|
1429
|
+
-
|
1430
|
+
|
1431
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/oned/Code39Reader.cpp
|
1432
|
+
Code39Reader.h
|
1433
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/oned/Code39Reader.h
|
1434
|
+
zxing/oned/OneDResultPoint.h
|
1435
|
+
-
|
1436
|
+
zxing/common/Array.h
|
1437
|
+
-
|
1438
|
+
zxing/ReaderException.h
|
1439
|
+
-
|
1440
|
+
zxing/NotFoundException.h
|
1441
|
+
-
|
1442
|
+
zxing/ChecksumException.h
|
1443
|
+
-
|
1444
|
+
math.h
|
1445
|
+
-
|
1446
|
+
limits.h
|
1447
|
+
-
|
1448
|
+
algorithm
|
1449
|
+
-
|
1450
|
+
|
1451
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/oned/Code39Reader.h
|
1452
|
+
zxing/oned/OneDReader.h
|
1453
|
+
-
|
1454
|
+
zxing/common/BitArray.h
|
1455
|
+
-
|
1456
|
+
zxing/Result.h
|
1457
|
+
-
|
1458
|
+
|
1459
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/oned/Code93Reader.cpp
|
1460
|
+
Code93Reader.h
|
1461
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/oned/Code93Reader.h
|
1462
|
+
zxing/oned/OneDResultPoint.h
|
1463
|
+
-
|
1464
|
+
zxing/common/Array.h
|
1465
|
+
-
|
1466
|
+
zxing/ReaderException.h
|
1467
|
+
-
|
1468
|
+
zxing/FormatException.h
|
1469
|
+
-
|
1470
|
+
zxing/NotFoundException.h
|
1471
|
+
-
|
1472
|
+
zxing/ChecksumException.h
|
1473
|
+
-
|
1474
|
+
math.h
|
1475
|
+
-
|
1476
|
+
limits.h
|
1477
|
+
-
|
1478
|
+
|
1479
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/oned/Code93Reader.h
|
1480
|
+
zxing/oned/OneDReader.h
|
1481
|
+
-
|
1482
|
+
zxing/common/BitArray.h
|
1483
|
+
-
|
1484
|
+
zxing/Result.h
|
1485
|
+
-
|
1486
|
+
|
1487
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/oned/EAN13Reader.cpp
|
1488
|
+
EAN13Reader.h
|
1489
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/oned/EAN13Reader.h
|
1490
|
+
zxing/NotFoundException.h
|
1491
|
+
-
|
1492
|
+
|
1493
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/oned/EAN13Reader.h
|
1494
|
+
zxing/oned/UPCEANReader.h
|
1495
|
+
-
|
1496
|
+
zxing/Result.h
|
1497
|
+
-
|
1498
|
+
|
1499
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/oned/EAN8Reader.cpp
|
1500
|
+
EAN8Reader.h
|
1501
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/oned/EAN8Reader.h
|
1502
|
+
zxing/ReaderException.h
|
1503
|
+
-
|
1504
|
+
|
1505
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/oned/EAN8Reader.h
|
1506
|
+
zxing/oned/UPCEANReader.h
|
1507
|
+
-
|
1508
|
+
zxing/Result.h
|
1509
|
+
-
|
1510
|
+
|
1511
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/oned/ITFReader.cpp
|
1512
|
+
zxing/ZXing.h
|
1513
|
+
-
|
1514
|
+
zxing/oned/ITFReader.h
|
1515
|
+
-
|
1516
|
+
zxing/oned/OneDResultPoint.h
|
1517
|
+
-
|
1518
|
+
zxing/common/Array.h
|
1519
|
+
-
|
1520
|
+
zxing/ReaderException.h
|
1521
|
+
-
|
1522
|
+
zxing/FormatException.h
|
1523
|
+
-
|
1524
|
+
zxing/NotFoundException.h
|
1525
|
+
-
|
1526
|
+
math.h
|
1527
|
+
-
|
1528
|
+
|
1529
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/oned/MultiFormatOneDReader.cpp
|
1530
|
+
zxing/ZXing.h
|
1531
|
+
-
|
1532
|
+
zxing/oned/MultiFormatOneDReader.h
|
1533
|
+
-
|
1534
|
+
zxing/oned/MultiFormatUPCEANReader.h
|
1535
|
+
-
|
1536
|
+
zxing/oned/Code39Reader.h
|
1537
|
+
-
|
1538
|
+
zxing/oned/Code128Reader.h
|
1539
|
+
-
|
1540
|
+
zxing/oned/Code93Reader.h
|
1541
|
+
-
|
1542
|
+
zxing/oned/CodaBarReader.h
|
1543
|
+
-
|
1544
|
+
zxing/oned/ITFReader.h
|
1545
|
+
-
|
1546
|
+
zxing/ReaderException.h
|
1547
|
+
-
|
1548
|
+
zxing/NotFoundException.h
|
1549
|
+
-
|
1550
|
+
typeinfo
|
1551
|
+
-
|
1552
|
+
|
1553
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/oned/MultiFormatUPCEANReader.cpp
|
1554
|
+
zxing/ZXing.h
|
1555
|
+
-
|
1556
|
+
zxing/oned/MultiFormatUPCEANReader.h
|
1557
|
+
-
|
1558
|
+
zxing/oned/EAN13Reader.h
|
1559
|
+
-
|
1560
|
+
zxing/oned/EAN8Reader.h
|
1561
|
+
-
|
1562
|
+
zxing/oned/UPCEReader.h
|
1563
|
+
-
|
1564
|
+
zxing/oned/UPCAReader.h
|
1565
|
+
-
|
1566
|
+
zxing/oned/OneDResultPoint.h
|
1567
|
+
-
|
1568
|
+
zxing/common/Array.h
|
1569
|
+
-
|
1570
|
+
zxing/ReaderException.h
|
1571
|
+
-
|
1572
|
+
zxing/NotFoundException.h
|
1573
|
+
-
|
1574
|
+
math.h
|
1575
|
+
-
|
1576
|
+
typeinfo
|
1577
|
+
-
|
1578
|
+
|
1579
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/oned/OneDReader.cpp
|
1580
|
+
zxing/ZXing.h
|
1581
|
+
-
|
1582
|
+
zxing/oned/OneDReader.h
|
1583
|
+
-
|
1584
|
+
zxing/ReaderException.h
|
1585
|
+
-
|
1586
|
+
zxing/oned/OneDResultPoint.h
|
1587
|
+
-
|
1588
|
+
zxing/NotFoundException.h
|
1589
|
+
-
|
1590
|
+
math.h
|
1591
|
+
-
|
1592
|
+
limits.h
|
1593
|
+
-
|
1594
|
+
algorithm
|
1595
|
+
-
|
1596
|
+
typeinfo
|
1597
|
+
-
|
1598
|
+
|
1599
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/oned/OneDResultPoint.cpp
|
1600
|
+
OneDResultPoint.h
|
1601
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/oned/OneDResultPoint.h
|
1602
|
+
|
1603
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/oned/OneDResultPoint.h
|
1604
|
+
zxing/ResultPoint.h
|
1605
|
+
-
|
1606
|
+
cmath
|
1607
|
+
-
|
1608
|
+
|
1609
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCAReader.cpp
|
1610
|
+
UPCAReader.h
|
1611
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCAReader.h
|
1612
|
+
zxing/FormatException.h
|
1613
|
+
-
|
1614
|
+
|
1615
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCAReader.h
|
1616
|
+
zxing/oned/EAN13Reader.h
|
1617
|
+
-
|
1618
|
+
zxing/DecodeHints.h
|
1619
|
+
-
|
1620
|
+
|
1621
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCEANReader.cpp
|
1622
|
+
zxing/ZXing.h
|
1623
|
+
-
|
1624
|
+
zxing/oned/UPCEANReader.h
|
1625
|
+
-
|
1626
|
+
zxing/oned/OneDResultPoint.h
|
1627
|
+
-
|
1628
|
+
zxing/ReaderException.h
|
1629
|
+
-
|
1630
|
+
zxing/NotFoundException.h
|
1631
|
+
-
|
1632
|
+
zxing/FormatException.h
|
1633
|
+
-
|
1634
|
+
zxing/ChecksumException.h
|
1635
|
+
-
|
1636
|
+
|
1637
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCEReader.cpp
|
1638
|
+
zxing/ZXing.h
|
1639
|
+
-
|
1640
|
+
zxing/oned/UPCEReader.h
|
1641
|
+
-
|
1642
|
+
zxing/ReaderException.h
|
1643
|
+
-
|
1644
|
+
|
1645
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/pdf417/PDF417Reader.cpp
|
1646
|
+
zxing/pdf417/PDF417Reader.h
|
1647
|
+
-
|
1648
|
+
zxing/pdf417/detector/Detector.h
|
1649
|
+
-
|
1650
|
+
|
1651
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/BitMatrixParser.cpp
|
1652
|
+
zxing/pdf417/decoder/BitMatrixParser.h
|
1653
|
+
-
|
1654
|
+
|
1655
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/DecodedBitStreamParser.cpp
|
1656
|
+
stdint.h
|
1657
|
+
-
|
1658
|
+
bigint/BigIntegerUtils.hh
|
1659
|
+
-
|
1660
|
+
zxing/FormatException.h
|
1661
|
+
-
|
1662
|
+
zxing/pdf417/decoder/DecodedBitStreamParser.h
|
1663
|
+
-
|
1664
|
+
zxing/common/DecoderResult.h
|
1665
|
+
-
|
1666
|
+
|
1667
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/Decoder.cpp
|
1668
|
+
zxing/pdf417/PDF417Reader.h
|
1669
|
+
-
|
1670
|
+
zxing/pdf417/decoder/Decoder.h
|
1671
|
+
-
|
1672
|
+
zxing/pdf417/decoder/BitMatrixParser.h
|
1673
|
+
-
|
1674
|
+
zxing/pdf417/decoder/DecodedBitStreamParser.h
|
1675
|
+
-
|
1676
|
+
zxing/ReaderException.h
|
1677
|
+
-
|
1678
|
+
zxing/common/reedsolomon/ReedSolomonException.h
|
1679
|
+
-
|
1680
|
+
|
1681
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/ec/ErrorCorrection.cpp
|
1682
|
+
zxing/pdf417/decoder/ec/ErrorCorrection.h
|
1683
|
+
-
|
1684
|
+
zxing/pdf417/decoder/ec/ModulusPoly.h
|
1685
|
+
-
|
1686
|
+
zxing/pdf417/decoder/ec/ModulusGF.h
|
1687
|
+
-
|
1688
|
+
|
1689
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/ec/ModulusGF.cpp
|
1690
|
+
zxing/pdf417/decoder/ec/ModulusGF.h
|
1691
|
+
-
|
1692
|
+
zxing/pdf417/decoder/ec/ModulusPoly.h
|
1693
|
+
-
|
1694
|
+
|
1695
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/ec/ModulusPoly.cpp
|
1696
|
+
zxing/pdf417/decoder/ec/ModulusPoly.h
|
1697
|
+
-
|
1698
|
+
zxing/pdf417/decoder/ec/ModulusGF.h
|
1699
|
+
-
|
1700
|
+
|
1701
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/pdf417/detector/Detector.cpp
|
1702
|
+
limits
|
1703
|
+
-
|
1704
|
+
zxing/pdf417/detector/Detector.h
|
1705
|
+
-
|
1706
|
+
zxing/pdf417/detector/LinesSampler.h
|
1707
|
+
-
|
1708
|
+
zxing/common/GridSampler.h
|
1709
|
+
-
|
1710
|
+
zxing/common/detector/JavaMath.h
|
1711
|
+
-
|
1712
|
+
zxing/common/detector/MathUtils.h
|
1713
|
+
-
|
1714
|
+
algorithm
|
1715
|
+
-
|
1716
|
+
|
1717
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/pdf417/detector/LinesSampler.cpp
|
1718
|
+
map
|
1719
|
+
-
|
1720
|
+
zxing/pdf417/detector/LinesSampler.h
|
1721
|
+
-
|
1722
|
+
zxing/pdf417/decoder/BitMatrixParser.h
|
1723
|
+
-
|
1724
|
+
zxing/NotFoundException.h
|
1725
|
+
-
|
1726
|
+
zxing/common/Point.h
|
1727
|
+
-
|
1728
|
+
algorithm
|
1729
|
+
-
|
1730
|
+
cmath
|
1731
|
+
-
|
1732
|
+
|
1733
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/qrcode/ErrorCorrectionLevel.cpp
|
1734
|
+
zxing/qrcode/ErrorCorrectionLevel.h
|
1735
|
+
-
|
1736
|
+
|
1737
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/qrcode/FormatInformation.cpp
|
1738
|
+
zxing/qrcode/FormatInformation.h
|
1739
|
+
-
|
1740
|
+
limits
|
1741
|
+
-
|
1742
|
+
|
1743
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/qrcode/QRCodeReader.cpp
|
1744
|
+
zxing/qrcode/QRCodeReader.h
|
1745
|
+
-
|
1746
|
+
zxing/qrcode/detector/Detector.h
|
1747
|
+
-
|
1748
|
+
iostream
|
1749
|
+
-
|
1750
|
+
|
1751
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/qrcode/Version.cpp
|
1752
|
+
zxing/qrcode/Version.h
|
1753
|
+
-
|
1754
|
+
zxing/qrcode/FormatInformation.h
|
1755
|
+
-
|
1756
|
+
zxing/FormatException.h
|
1757
|
+
-
|
1758
|
+
limits
|
1759
|
+
-
|
1760
|
+
iostream
|
1761
|
+
-
|
1762
|
+
cstdarg
|
1763
|
+
-
|
1764
|
+
|
1765
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/BitMatrixParser.cpp
|
1766
|
+
zxing/qrcode/decoder/BitMatrixParser.h
|
1767
|
+
-
|
1768
|
+
zxing/qrcode/decoder/DataMask.h
|
1769
|
+
-
|
1770
|
+
|
1771
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/DataBlock.cpp
|
1772
|
+
zxing/qrcode/decoder/DataBlock.h
|
1773
|
+
-
|
1774
|
+
zxing/common/IllegalArgumentException.h
|
1775
|
+
-
|
1776
|
+
|
1777
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/DataMask.cpp
|
1778
|
+
zxing/qrcode/decoder/DataMask.h
|
1779
|
+
-
|
1780
|
+
zxing/common/IllegalArgumentException.h
|
1781
|
+
-
|
1782
|
+
|
1783
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/DecodedBitStreamParser.cpp
|
1784
|
+
zxing/qrcode/decoder/DecodedBitStreamParser.h
|
1785
|
+
-
|
1786
|
+
zxing/common/CharacterSetECI.h
|
1787
|
+
-
|
1788
|
+
zxing/FormatException.h
|
1789
|
+
-
|
1790
|
+
zxing/common/StringUtils.h
|
1791
|
+
-
|
1792
|
+
iostream
|
1793
|
+
-
|
1794
|
+
iconv.h
|
1795
|
+
-
|
1796
|
+
|
1797
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/Decoder.cpp
|
1798
|
+
zxing/qrcode/decoder/Decoder.h
|
1799
|
+
-
|
1800
|
+
zxing/qrcode/decoder/BitMatrixParser.h
|
1801
|
+
-
|
1802
|
+
zxing/qrcode/ErrorCorrectionLevel.h
|
1803
|
+
-
|
1804
|
+
zxing/qrcode/Version.h
|
1805
|
+
-
|
1806
|
+
zxing/qrcode/decoder/DataBlock.h
|
1807
|
+
-
|
1808
|
+
zxing/qrcode/decoder/DecodedBitStreamParser.h
|
1809
|
+
-
|
1810
|
+
zxing/ReaderException.h
|
1811
|
+
-
|
1812
|
+
zxing/ChecksumException.h
|
1813
|
+
-
|
1814
|
+
zxing/common/reedsolomon/ReedSolomonException.h
|
1815
|
+
-
|
1816
|
+
|
1817
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/Mode.cpp
|
1818
|
+
zxing/ZXing.h
|
1819
|
+
-
|
1820
|
+
zxing/qrcode/decoder/Mode.h
|
1821
|
+
-
|
1822
|
+
zxing/common/Counted.h
|
1823
|
+
-
|
1824
|
+
zxing/ReaderException.h
|
1825
|
+
-
|
1826
|
+
zxing/qrcode/Version.h
|
1827
|
+
-
|
1828
|
+
sstream
|
1829
|
+
-
|
1830
|
+
|
1831
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/AlignmentPattern.cpp
|
1832
|
+
zxing/qrcode/detector/AlignmentPattern.h
|
1833
|
+
-
|
1834
|
+
|
1835
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/AlignmentPatternFinder.cpp
|
1836
|
+
zxing/qrcode/detector/AlignmentPatternFinder.h
|
1837
|
+
-
|
1838
|
+
zxing/ReaderException.h
|
1839
|
+
-
|
1840
|
+
zxing/common/BitArray.h
|
1841
|
+
-
|
1842
|
+
vector
|
1843
|
+
-
|
1844
|
+
cmath
|
1845
|
+
-
|
1846
|
+
cstdlib
|
1847
|
+
-
|
1848
|
+
|
1849
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/Detector.cpp
|
1850
|
+
zxing/qrcode/detector/Detector.h
|
1851
|
+
-
|
1852
|
+
zxing/qrcode/detector/FinderPatternFinder.h
|
1853
|
+
-
|
1854
|
+
zxing/qrcode/detector/FinderPattern.h
|
1855
|
+
-
|
1856
|
+
zxing/qrcode/detector/AlignmentPattern.h
|
1857
|
+
-
|
1858
|
+
zxing/qrcode/detector/AlignmentPatternFinder.h
|
1859
|
+
-
|
1860
|
+
zxing/qrcode/Version.h
|
1861
|
+
-
|
1862
|
+
zxing/common/GridSampler.h
|
1863
|
+
-
|
1864
|
+
zxing/DecodeHints.h
|
1865
|
+
-
|
1866
|
+
zxing/common/detector/MathUtils.h
|
1867
|
+
-
|
1868
|
+
sstream
|
1869
|
+
-
|
1870
|
+
cstdlib
|
1871
|
+
-
|
1872
|
+
algorithm
|
1873
|
+
-
|
1874
|
+
|
1875
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/FinderPattern.cpp
|
1876
|
+
zxing/qrcode/detector/FinderPattern.h
|
1877
|
+
-
|
1878
|
+
|
1879
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/FinderPatternFinder.cpp
|
1880
|
+
algorithm
|
1881
|
+
-
|
1882
|
+
zxing/qrcode/detector/FinderPatternFinder.h
|
1883
|
+
-
|
1884
|
+
zxing/ReaderException.h
|
1885
|
+
-
|
1886
|
+
zxing/DecodeHints.h
|
1887
|
+
-
|
1888
|
+
|
1889
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/FinderPatternInfo.cpp
|
1890
|
+
zxing/qrcode/detector/FinderPatternInfo.h
|
1891
|
+
-
|
1892
|
+
|