Home
last modified time | relevance | path

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

/external/pdfium/fxbarcode/oned/
DBC_OnedCodaBarWriter_unittest.cpp105 EXPECT_TRUE(writer.SetStartChar('A')); in TEST()
106 EXPECT_TRUE(writer.SetStartChar('B')); in TEST()
107 EXPECT_TRUE(writer.SetStartChar('C')); in TEST()
108 EXPECT_TRUE(writer.SetStartChar('D')); in TEST()
109 EXPECT_TRUE(writer.SetStartChar('E')); in TEST()
110 EXPECT_TRUE(writer.SetStartChar('N')); in TEST()
111 EXPECT_TRUE(writer.SetStartChar('T')); in TEST()
112 EXPECT_TRUE(writer.SetStartChar('*')); in TEST()
113 EXPECT_FALSE(writer.SetStartChar('V')); in TEST()
114 EXPECT_FALSE(writer.SetStartChar('0')); in TEST()
[all …]
DBC_OnedCodaBarWriter.h35 bool SetStartChar(char start) override;
DBC_OnedCodaBarWriter.cpp55 bool CBC_OnedCodaBarWriter::SetStartChar(char start) { in SetStartChar() function in CBC_OnedCodaBarWriter
/external/pdfium/fxbarcode/
Dcbc_codebase.cpp41 bool CBC_CodeBase::SetStartChar(char start) { in SetStartChar() function in CBC_CodeBase
42 return m_pBCWriter->SetStartChar(start); in SetStartChar()
Dcfx_barcode.cpp213 bool CFX_Barcode::SetStartChar(char start) { in SetStartChar() function in CFX_Barcode
214 return m_pBCEngine && m_pBCEngine->SetStartChar(start); in SetStartChar()
DBC_Writer.cpp52 bool CBC_Writer::SetStartChar(char start) { in SetStartChar() function in CBC_Writer
DBC_Writer.h24 virtual bool SetStartChar(char start);
Dcbc_codebase.h35 bool SetStartChar(char start);
Dcfx_barcode.h52 bool SetStartChar(char start);
/external/pdfium/xfa/fwl/
Dcfwl_barcode.cpp137 void CFWL_Barcode::SetStartChar(char startChar) { in SetStartChar() function in CFWL_Barcode
194 m_pBarcodeEngine->SetStartChar(m_cStartChar); in GenerateBarcodeImageCache()
Dcfwl_barcode.h58 void SetStartChar(char startChar);
/external/pdfium/xfa/fxfa/
Dcxfa_ffbarcode.cpp209 pBarCodeWidget->SetStartChar(*startChar); in UpdateWidgetProperty()