Searched refs:CBC_QRFinderPattern (Results 1 - 7 of 7) sorted by relevance

/external/pdfium/xfa/src/fxbarcode/qrcode/
H A DBC_FinderPatternInfo.h9 class CBC_QRFinderPattern;
12 CBC_QRFinderPattern* m_bottomLeft;
13 CBC_QRFinderPattern* m_topLeft;
14 CBC_QRFinderPattern* m_topRight;
19 CBC_QRFinderPattern* GetBottomLeft();
20 CBC_QRFinderPattern* GetTopLeft();
21 CBC_QRFinderPattern* GetTopRight();
H A DBC_FinderPatternInfo.cpp28 m_bottomLeft = (CBC_QRFinderPattern*)(*patternCenters)[0];
29 m_topLeft = (CBC_QRFinderPattern*)(*patternCenters)[1];
30 m_topRight = (CBC_QRFinderPattern*)(*patternCenters)[2];
33 CBC_QRFinderPattern* CBC_QRFinderPatternInfo::GetBottomLeft() {
36 CBC_QRFinderPattern* CBC_QRFinderPatternInfo::GetTopLeft() {
39 CBC_QRFinderPattern* CBC_QRFinderPatternInfo::GetTopRight() {
H A DBC_QRFinderPattern.cpp26 CBC_QRFinderPattern::CBC_QRFinderPattern(FX_FLOAT x, function in class:CBC_QRFinderPattern
32 CBC_QRFinderPattern::~CBC_QRFinderPattern() {
38 CBC_QRFinderPattern* CBC_QRFinderPattern::Clone() {
39 CBC_QRFinderPattern* temp =
40 new CBC_QRFinderPattern(m_x, m_y, m_estimatedModuleSize);
44 FX_FLOAT CBC_QRFinderPattern::GetEstimatedModuleSize() {
47 int32_t CBC_QRFinderPattern
[all...]
H A DBC_QRFinderPattern.h10 class CBC_QRFinderPattern;
11 class CBC_QRFinderPattern : public CBC_ResultPoint { class in inherits:CBC_ResultPoint
17 CBC_QRFinderPattern(FX_FLOAT x, FX_FLOAT posY, FX_FLOAT estimatedModuleSize);
18 virtual ~CBC_QRFinderPattern();
26 CBC_QRFinderPattern* Clone();
28 typedef CBC_QRFinderPattern FinderPattern;
H A DBC_QRFinderPatternFinder.cpp41 delete (CBC_QRFinderPattern*)m_possibleCenters[i];
171 CBC_QRFinderPattern *topLeft, *topRight, *bottomLeft;
173 topLeft = (CBC_QRFinderPattern*)(*patterns)[0];
174 topRight = (CBC_QRFinderPattern*)(*patterns)[1];
175 bottomLeft = (CBC_QRFinderPattern*)(*patterns)[2];
177 topLeft = (CBC_QRFinderPattern*)(*patterns)[1];
178 topRight = (CBC_QRFinderPattern*)(*patterns)[0];
179 bottomLeft = (CBC_QRFinderPattern*)(*patterns)[2];
181 topLeft = (CBC_QRFinderPattern*)(*patterns)[2];
182 topRight = (CBC_QRFinderPattern*)(*pattern
[all...]
H A DBC_QRFinderPatternFinder.h10 class CBC_QRFinderPattern;
H A DBC_QRDetector.cpp50 CBC_AutoPtr<CBC_QRFinderPattern> topLeft(info->GetTopLeft());
51 CBC_AutoPtr<CBC_QRFinderPattern> topRight(info->GetTopRight());
52 CBC_AutoPtr<CBC_QRFinderPattern> bottomLeft(info->GetBottomLeft());

Completed in 150 milliseconds