Searched refs:CBC_QRCoderErrorCorrectionLevel (Results 1 – 12 of 12) sorted by relevance
/aosp_15_r20/external/pdfium/fxbarcode/qrcode/ |
H A D | BC_QRCoderErrorCorrectionLevel.cpp | 25 CBC_QRCoderErrorCorrectionLevel* CBC_QRCoderErrorCorrectionLevel::L = nullptr; 26 CBC_QRCoderErrorCorrectionLevel* CBC_QRCoderErrorCorrectionLevel::M = nullptr; 27 CBC_QRCoderErrorCorrectionLevel* CBC_QRCoderErrorCorrectionLevel::Q = nullptr; 28 CBC_QRCoderErrorCorrectionLevel* CBC_QRCoderErrorCorrectionLevel::H = nullptr; 30 CBC_QRCoderErrorCorrectionLevel::CBC_QRCoderErrorCorrectionLevel( in CBC_QRCoderErrorCorrectionLevel() function in CBC_QRCoderErrorCorrectionLevel 35 CBC_QRCoderErrorCorrectionLevel::~CBC_QRCoderErrorCorrectionLevel() = default; 37 void CBC_QRCoderErrorCorrectionLevel::Initialize() { in Initialize() 38 L = new CBC_QRCoderErrorCorrectionLevel(0, 0x01); in Initialize() 39 M = new CBC_QRCoderErrorCorrectionLevel(1, 0x00); in Initialize() 40 Q = new CBC_QRCoderErrorCorrectionLevel(2, 0x03); in Initialize() [all …]
|
H A D | BC_QRCoderErrorCorrectionLevel.h | 12 class CBC_QRCoderErrorCorrectionLevel { 14 static CBC_QRCoderErrorCorrectionLevel* L; 15 static CBC_QRCoderErrorCorrectionLevel* M; 16 static CBC_QRCoderErrorCorrectionLevel* Q; 17 static CBC_QRCoderErrorCorrectionLevel* H; 22 ~CBC_QRCoderErrorCorrectionLevel(); 28 CBC_QRCoderErrorCorrectionLevel(int32_t ordinal, int32_t bits);
|
H A D | BC_QRCodeWriter.cpp | 54 CBC_QRCoderErrorCorrectionLevel* ec = nullptr; in Encode() 57 ec = CBC_QRCoderErrorCorrectionLevel::L; in Encode() 60 ec = CBC_QRCoderErrorCorrectionLevel::M; in Encode() 63 ec = CBC_QRCoderErrorCorrectionLevel::Q; in Encode() 66 ec = CBC_QRCoderErrorCorrectionLevel::H; in Encode()
|
H A D | BC_QRCoder.h | 14 class CBC_QRCoderErrorCorrectionLevel; variable 26 const CBC_QRCoderErrorCorrectionLevel* GetECLevel() const; 37 void SetECLevel(const CBC_QRCoderErrorCorrectionLevel* ecLevel); 48 UnownedPtr<const CBC_QRCoderErrorCorrectionLevel> m_ecLevel;
|
H A D | BC_QRCoderEncoder.h | 13 class CBC_QRCoderErrorCorrectionLevel; variable 23 const CBC_QRCoderErrorCorrectionLevel* ecLevel,
|
H A D | BC_QRCoderMatrixUtil.h | 13 class CBC_QRCoderErrorCorrectionLevel; variable 22 const CBC_QRCoderErrorCorrectionLevel* ecLevel,
|
H A D | BC_QRCoderVersion.h | 14 class CBC_QRCoderErrorCorrectionLevel; variable 33 const CBC_QRCoderErrorCorrectionLevel& ecLevel) const;
|
H A D | BC_QRCoder.cpp | 35 const CBC_QRCoderErrorCorrectionLevel* CBC_QRCoder::GetECLevel() const { in GetECLevel() 78 void CBC_QRCoder::SetECLevel(const CBC_QRCoderErrorCorrectionLevel* ecLevel) { in SetECLevel()
|
H A D | BC_QRCoderMatrixUtil.cpp | 150 bool MakeTypeInfoBits(const CBC_QRCoderErrorCorrectionLevel* ecLevel, in MakeTypeInfoBits() 176 bool EmbedTypeInfo(const CBC_QRCoderErrorCorrectionLevel* ecLevel, in EmbedTypeInfo() 375 const CBC_QRCoderErrorCorrectionLevel* ecLevel, in BuildMatrix()
|
H A D | BC_QRCoderEncoder.cpp | 162 const CBC_QRCoderErrorCorrectionLevel* ecLevel, in InitQRCode() 211 const CBC_QRCoderErrorCorrectionLevel* ecLevel, in ChooseMaskPattern() 373 const CBC_QRCoderErrorCorrectionLevel* ecLevel, in Encode()
|
H A D | BC_QRCoderVersion.cpp | 89 const CBC_QRCoderErrorCorrectionLevel& ecLevel) const { in GetECBlocksForLevel()
|
/aosp_15_r20/external/pdfium/fxbarcode/ |
H A D | BC_Library.cpp | 18 CBC_QRCoderErrorCorrectionLevel::Initialize(); in BC_Library_Init() 26 CBC_QRCoderErrorCorrectionLevel::Finalize(); in BC_Library_Destroy()
|