Home
last modified time | relevance | path

Searched refs:CBC_QRCoderErrorCorrectionLevel (Results 1 – 12 of 12) sorted by relevance

/external/pdfium/fxbarcode/qrcode/
DBC_QRCoderErrorCorrectionLevel.cpp25 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 …]
DBC_QRCoderErrorCorrectionLevel.h12 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();
DBC_QRCodeWriter.cpp46 CBC_QRCoderErrorCorrectionLevel::Destroy(); in ReleaseAll()
62 CBC_QRCoderErrorCorrectionLevel* ec = nullptr; in Encode()
65 ec = CBC_QRCoderErrorCorrectionLevel::L; in Encode()
68 ec = CBC_QRCoderErrorCorrectionLevel::M; in Encode()
71 ec = CBC_QRCoderErrorCorrectionLevel::Q; in Encode()
74 ec = CBC_QRCoderErrorCorrectionLevel::H; in Encode()
DBC_QRCoder.h14 class CBC_QRCoderErrorCorrectionLevel; variable
28 const CBC_QRCoderErrorCorrectionLevel* GetECLevel() const;
42 void SetECLevel(const CBC_QRCoderErrorCorrectionLevel* ecLevel);
54 UnownedPtr<const CBC_QRCoderErrorCorrectionLevel> m_ecLevel;
DBC_QRCoderMatrixUtil.h11 class CBC_QRCoderErrorCorrectionLevel; variable
20 const CBC_QRCoderErrorCorrectionLevel* ecLevel,
28 static void EmbedTypeInfo(const CBC_QRCoderErrorCorrectionLevel* ecLevel,
41 static void MakeTypeInfoBits(const CBC_QRCoderErrorCorrectionLevel* ecLevel,
DBC_QRCoderEncoder.h16 class CBC_QRCoderErrorCorrectionLevel; variable
24 const CBC_QRCoderErrorCorrectionLevel* ecLevel,
DBC_QRCoderVersion.h15 class CBC_QRCoderErrorCorrectionLevel; variable
35 const CBC_QRCoderErrorCorrectionLevel& ecLevel) const;
DBC_QRCoder.cpp48 const CBC_QRCoderErrorCorrectionLevel* CBC_QRCoder::GetECLevel() const { in GetECLevel()
107 void CBC_QRCoder::SetECLevel(const CBC_QRCoderErrorCorrectionLevel* ecLevel) { in SetECLevel()
DBC_QRCoderMatrixUtil.cpp88 const CBC_QRCoderErrorCorrectionLevel* ecLevel, in BuildMatrix()
135 const CBC_QRCoderErrorCorrectionLevel* ecLevel, in EmbedTypeInfo()
257 const CBC_QRCoderErrorCorrectionLevel* ecLevel, in MakeTypeInfoBits()
DBC_QRCoderVersion.cpp97 const CBC_QRCoderErrorCorrectionLevel& ecLevel) const { in GetECBlocksForLevel()
DBC_QRCoderEncoder.cpp207 const CBC_QRCoderErrorCorrectionLevel* ecLevel, in InitQRCode()
300 const CBC_QRCoderErrorCorrectionLevel* ecLevel, in ChooseMaskPattern()
569 const CBC_QRCoderErrorCorrectionLevel* ecLevel, in Encode()
/external/pdfium/fxbarcode/
DBC_Library.cpp20 CBC_QRCoderErrorCorrectionLevel::Initialize(); in BC_Library_Init()
30 CBC_QRCoderErrorCorrectionLevel::Finalize(); in BC_Library_Destroy()