Home
last modified time | relevance | path

Searched refs:BC_TYPE (Results 1 – 13 of 13) sorted by relevance

/external/pdfium/xfa/include/fxbarcode/
DBC_BarCode.h29 enum BC_TYPE { enum
51 virtual BC_TYPE GetType() = 0;
82 virtual BC_TYPE GetType() = 0;
118 BC_TYPE GetType() { return BC_CODE39; } in GetType()
136 BC_TYPE GetType() { return BC_CODABAR; } in GetType()
147 CBC_Code128(BC_TYPE type);
156 BC_TYPE GetType() { return BC_CODE128; } in GetType()
173 BC_TYPE GetType() { return BC_EAN8; } in GetType()
190 BC_TYPE GetType() { return BC_EAN13; } in GetType()
207 BC_TYPE GetType() { return BC_UPCA; } in GetType()
[all …]
/external/pdfium/xfa/src/fwl/src/basewidget/
Dfxmath_barcodeimp.cpp9 static CBC_CodeBase* FX_Barcode_CreateBarCodeEngineObject(BC_TYPE type) { in FX_Barcode_CreateBarCodeEngineObject()
45 FX_BOOL CFX_Barcode::Crreate(BC_TYPE type) { in Crreate()
52 BC_TYPE CFX_Barcode::GetType() { in GetType()
349 for (BC_TYPE t = BC_TYPE_MIN; t <= BC_TYPE_MAX; in Decode()
350 t = (BC_TYPE)((int32_t)t + 1)) { in Decode()
364 for (BC_TYPE t = BC_TYPE_MIN; t <= BC_TYPE_MAX; in Decode()
365 t = (BC_TYPE)((int32_t)t + 1)) { in Decode()
378 IFX_Barcode* FX_Barcode_Create(BC_TYPE type) { in FX_Barcode_Create()
Dfwl_barcodeimp.cpp23 void IFWL_Barcode::SetType(BC_TYPE type) { in SetType()
186 void CFWL_BarcodeImp::SetType(BC_TYPE type) { in SetType()
203 BC_TYPE tEngineType = m_pBarcodeEngine->GetType(); in IsProtectedType()
/external/pdfium/xfa/src/fxbarcode/oned/
DBC_OnedCode128Writer.h14 CBC_OnedCode128Writer(BC_TYPE type);
33 BC_TYPE GetType();
41 BC_TYPE m_codeFormat;
DBC_OnedCode128Writer.cpp38 CBC_OnedCode128Writer::CBC_OnedCode128Writer(BC_TYPE type) { in CBC_OnedCode128Writer()
42 BC_TYPE CBC_OnedCode128Writer::GetType() { in GetType()
/external/pdfium/xfa/src/fwl/src/basewidget/include/
Dfwl_barcodeimp.h34 virtual void SetType(BC_TYPE type);
43 BC_TYPE m_type;
Dfxmath_barcodeimp.h13 FX_BOOL Crreate(BC_TYPE type);
15 virtual BC_TYPE GetType();
/external/pdfium/xfa/include/fwl/basewidget/
Dfxmath_barcode.h13 virtual BC_TYPE GetType() = 0;
47 IFX_Barcode* FX_Barcode_Create(BC_TYPE type);
Dfwl_barcode.h54 void SetType(BC_TYPE type);
/external/pdfium/xfa/src/fwl/src/lightwidget/
Dbarcode.cpp32 void CFWL_Barcode::SetType(BC_TYPE type) { in SetType()
/external/pdfium/xfa/src/fxfa/src/app/
Dxfa_ffbarcode.h91 BC_TYPE eBCType;
/external/pdfium/xfa/include/fwl/lightwidget/
Dbarcode.h19 void SetType(BC_TYPE type);
/external/pdfium/xfa/src/fxbarcode/
DBC_BarCode.cpp360 CBC_Code128::CBC_Code128(BC_TYPE type) { in CBC_Code128()