Searched refs:CBC_QRCoderErrorCorrectionLevel (Results 1 – 12 of 12) sorted by relevance
/external/pdfium/xfa/fxbarcode/qrcode/ |
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 36 CBC_QRCoderErrorCorrectionLevel::~CBC_QRCoderErrorCorrectionLevel() {} in ~CBC_QRCoderErrorCorrectionLevel() 38 void CBC_QRCoderErrorCorrectionLevel::Initialize() { in Initialize() 39 L = new CBC_QRCoderErrorCorrectionLevel(0, 0x01, "L"); in Initialize() 40 M = new CBC_QRCoderErrorCorrectionLevel(1, 0x00, "M"); in Initialize() 41 Q = new CBC_QRCoderErrorCorrectionLevel(2, 0x03, "Q"); in Initialize() [all …]
|
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 static CBC_QRCoderErrorCorrectionLevel* ForBits(int32_t bits); 24 ~CBC_QRCoderErrorCorrectionLevel(); 31 CBC_QRCoderErrorCorrectionLevel(int32_t ordinal, 34 CBC_QRCoderErrorCorrectionLevel();
|
D | BC_QRCoderEncoder.h | 17 class CBC_QRCoderErrorCorrectionLevel; variable 29 CBC_QRCoderErrorCorrectionLevel* ecLevel, 34 CBC_QRCoderErrorCorrectionLevel* ecLevel, 38 CBC_QRCoderErrorCorrectionLevel* ecLevel, 43 CBC_QRCoderErrorCorrectionLevel* ecLevel, 76 CBC_QRCoderErrorCorrectionLevel* ecLevel, 81 CBC_QRCoderErrorCorrectionLevel* ecLevel, 111 CBC_QRCoderErrorCorrectionLevel* ecLevel,
|
D | BC_QRCodeWriter.cpp | 47 CBC_QRCoderErrorCorrectionLevel::Destroy(); in ReleaseAll() 72 CBC_QRCoderErrorCorrectionLevel* ec = nullptr; in Encode() 75 ec = CBC_QRCoderErrorCorrectionLevel::L; in Encode() 78 ec = CBC_QRCoderErrorCorrectionLevel::M; in Encode() 81 ec = CBC_QRCoderErrorCorrectionLevel::Q; in Encode() 84 ec = CBC_QRCoderErrorCorrectionLevel::H; in Encode()
|
D | BC_QRCoder.h | 12 class CBC_QRCoderErrorCorrectionLevel; variable 26 CBC_QRCoderErrorCorrectionLevel* GetECLevel() const; 40 void SetECLevel(CBC_QRCoderErrorCorrectionLevel* ecLevel); 52 CBC_QRCoderErrorCorrectionLevel* m_ecLevel;
|
D | BC_QRCoderMatrixUtil.h | 11 class CBC_QRCoderErrorCorrectionLevel; variable 30 CBC_QRCoderErrorCorrectionLevel* ecLevel, 38 static void EmbedTypeInfo(CBC_QRCoderErrorCorrectionLevel* ecLevel, 51 static void MakeTypeInfoBits(CBC_QRCoderErrorCorrectionLevel* ecLevel,
|
D | BC_QRCoderVersion.h | 14 class CBC_QRCoderErrorCorrectionLevel; variable 28 CBC_QRCoderErrorCorrectionLevel* ecLevel);
|
D | BC_QRCoder.cpp | 48 CBC_QRCoderErrorCorrectionLevel* CBC_QRCoder::GetECLevel() const { in GetECLevel() 107 void CBC_QRCoder::SetECLevel(CBC_QRCoderErrorCorrectionLevel* ecLevel) { in SetECLevel()
|
D | BC_QRCoderEncoder.cpp | 60 CBC_QRCoderErrorCorrectionLevel* ecLevel, in Encode() 318 CBC_QRCoderErrorCorrectionLevel* ecLevel, in InitQRCode() 347 CBC_QRCoderErrorCorrectionLevel* ecLevel, in EncodeWithSpecifyVersion() 413 CBC_QRCoderErrorCorrectionLevel* ecLevel, in EncodeWithAutoVersion() 496 CBC_QRCoderErrorCorrectionLevel* ecLevel, in Encode() 599 CBC_QRCoderErrorCorrectionLevel* ecLevel, in ChooseMaskPattern() 801 CBC_QRCoderErrorCorrectionLevel* ecLevel, in InitQRCode()
|
D | BC_QRCoderMatrixUtil.cpp | 88 CBC_QRCoderErrorCorrectionLevel* ecLevel, in BuildMatrix() 134 CBC_QRCoderErrorCorrectionLevel* ecLevel, in EmbedTypeInfo() 256 CBC_QRCoderErrorCorrectionLevel* ecLevel, in MakeTypeInfoBits()
|
D | BC_QRCoderVersion.cpp | 367 CBC_QRCoderErrorCorrectionLevel* ecLevel) { in GetECBlocksForLevel()
|
/external/pdfium/xfa/fxbarcode/ |
D | BC_Library.cpp | 20 CBC_QRCoderErrorCorrectionLevel::Initialize(); in BC_Library_Init() 29 CBC_QRCoderErrorCorrectionLevel::Finalize(); in BC_Library_Destory()
|