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

  /external/pdfium/fpdfsdk/src/
fpdf_transformpage.cpp 242 int point_type = pPoints[i].m_Flag & FXPT_TYPE; local
243 if (point_type == FXPT_MOVETO)
245 else if (point_type == FXPT_BEZIERTO) {
254 } else if (point_type == FXPT_LINETO) {
  /external/pdfium/core/src/fxge/agg/src/
fx_agg_driver.cpp 43 int point_type = pPoints[i].m_Flag & FXPT_TYPE; local
44 if (point_type == FXPT_MOVETO) {
46 } else if (point_type == FXPT_LINETO) {
54 } else if (point_type == FXPT_BEZIERTO) {
    [all...]
  /external/pdfium/core/src/fxge/skia/
fx_skia_device.cpp 142 int point_type = pPoints[i].m_Flag & FXPT_TYPE; local
143 if (point_type == FXPT_MOVETO) {
145 } else if (point_type == FXPT_LINETO) {
161 } else if (point_type == FXPT_BEZIERTO) {
  /external/pdfium/third_party/agg23/
agg_basics.h 263 struct point_type { struct in namespace:agg
266 point_type() {} function in struct:agg::point_type
267 point_type(FX_FLOAT x_, FX_FLOAT y_, unsigned flag_ = 0) : x(x_), y(y_), flag(flag_) {} function in struct:agg::point_type
269 struct point_type_flag : public point_type {
275 point_type_flag(FX_FLOAT x_, FX_FLOAT y_, unsigned flag_ = 0) : point_type(x_, y_), flag(flag_) {}
  /external/opencv3/modules/imgproc/test/
test_convhull.cpp 276 int i, k, n, total, point_type; local
292 point_type = CV_SEQ_ELTYPE(ptseq);
300 point_type = CV_MAT_TYPE(ptm->type);
304 n = CV_MAT_CN(point_type);
305 point_type = CV_MAT_DEPTH(point_type);
307 assert( (point_type == CV_32S || point_type == CV_32F) && n <= 4 );
324 if( point_type == CV_32S )
338 int point_type; local
487 int point_type = points1 ? CV_SEQ_ELTYPE(points1) : CV_MAT_TYPE(points2->type); local
1160 int i, total, point_type; local
1450 int i, k, n, total, point_type; local
1642 int i, total, point_type; local
    [all...]
  /external/pdfium/core/src/fxge/win32/
fx_win32_device.cpp 770 int point_type = pPoints[i].m_Flag & FXPT_TYPE; local
771 if (point_type == PT_MOVETO) {
773 } else if (point_type == PT_LINETO) {
779 } else if (point_type == PT_BEZIERTO) {
    [all...]
fx_win32_gdipext.cpp 1153 int point_type = pPoints[i].m_Flag & FXPT_TYPE; local
    [all...]

Completed in 1018 milliseconds