HomeSort by relevance Sort by last modified time
    Searched refs:CBC_QRFinderPattern (Results 1 - 7 of 7) sorted by null

  /external/pdfium/xfa/src/fxbarcode/qrcode/
BC_FinderPatternInfo.h 9 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();
BC_FinderPatternInfo.cpp 28 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() {
BC_QRFinderPattern.h 10 class CBC_QRFinderPattern;
11 class CBC_QRFinderPattern : public 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;
BC_QRFinderPattern.cpp 26 CBC_QRFinderPattern::CBC_QRFinderPattern(FX_FLOAT x,
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::GetCount() {
    [all...]
BC_QRFinderPatternFinder.cpp 41 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*)(*patterns)[0];
    [all...]
BC_QRFinderPatternFinder.h 10 class CBC_QRFinderPattern;
BC_QRDetector.cpp 50 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 90 milliseconds