/external/chromium_org/ui/gfx/ |
path_gtk.cc | 15 int point_count = getPoints(NULL, 0); local 16 if (point_count <= 1) { 22 scoped_ptr<SkPoint[]> points(new SkPoint[point_count]); 23 getPoints(points.get(), point_count); 25 scoped_ptr<GdkPoint[]> gdk_points(new GdkPoint[point_count]); 26 for (int i = 0; i < point_count; ++i) { 31 return gdk_region_polygon(gdk_points.get(), point_count, GDK_EVEN_ODD_RULE);
|
path_x11.cc | 31 int point_count = path.getPoints(NULL, 0); local 32 scoped_ptr<SkPoint[]> points(new SkPoint[point_count]); 33 path.getPoints(points.get(), point_count); 34 scoped_ptr<XPoint[]> x11_points(new XPoint[point_count]); 35 for (int i = 0; i < point_count; ++i) { 40 return XPolygonRegion(x11_points.get(), point_count, EvenOddRule);
|
path_win.cc | 28 int point_count = path.getPoints(NULL, 0); local 29 scoped_ptr<SkPoint[]> points(new SkPoint[point_count]); 30 path.getPoints(points.get(), point_count); 31 scoped_ptr<POINT[]> windows_points(new POINT[point_count]); 32 for (int i = 0; i < point_count; ++i) { 37 return ::CreatePolygonRgn(windows_points.get(), point_count, ALTERNATE);
|
gdi_util.cc | 83 int point_count = path.getPoints(NULL, 0); local 84 scoped_ptr<SkPoint[]> points(new SkPoint[point_count]); 85 path.getPoints(points.get(), point_count); 86 scoped_ptr<POINT[]> windows_points(new POINT[point_count]); 87 for (int i = 0; i < point_count; ++i) { 92 return ::CreatePolygonRgn(windows_points.get(), point_count, ALTERNATE);
|
/packages/apps/Camera/jni/feature_stab/db_vlvm/ |
db_rob_image_homography.h | 132 DB_API double db_RobImageHomography_Cost(double H[9],int point_count,double *x_i, 136 DB_API void db_RobCamRotation_Polish(double H[9],int point_count,double *x_i, 142 DB_API void db_RobCamRotation_Polish_Generic(double H[9],int point_count,int homography_type,
|
db_rob_image_homography.cpp | 36 inline double db_RobImageHomography_Cost(double H[9],int point_count,double *x_i,double *xp_i,double one_over_scale2) 41 for(back=0.0,c=0;c<point_count;) 45 if(c+9<point_count) 64 for(acc=1.0;c<point_count;c++) 74 inline double db_RobImageHomography_Statistics(double H[9],int point_count,double *x_i,double *xp_i,double one_over_scale2,db_Statistics *stat,double thresh=DB_OUTLIER_THRESHOLD) 80 for(i=0,c=0;c<point_count;c++) 84 frac=((double)i)/((double)(db_maxi(point_count,1))); 87 std::cout << "Inlier Percentage RobImageHomography: " << frac*100.0 << "% out of " << point_count << " constraints" << std::endl; 92 stat->nr_points=point_count; 97 stat->cost=db_RobImageHomography_Cost(H,point_count,x_i,xp_i,one_over_scale2) 674 int i,j,c,point_count,hyp_count; local [all...] |
db_metrics.h | 324 inline int db_RemoveOutliers_Homography(const double H[9], double *x_i,double *xp_i, double *wp,double *im, double *im_p, double *im_r, double *im_raw,double *im_raw_p,int point_count,double scale, double thresh=DB_OUTLIER_THRESHOLD) 341 for(c=0;c<point_count;c++)
|
/packages/apps/Camera2/jni/feature_stab/db_vlvm/ |
db_rob_image_homography.h | 132 DB_API double db_RobImageHomography_Cost(double H[9],int point_count,double *x_i, 136 DB_API void db_RobCamRotation_Polish(double H[9],int point_count,double *x_i, 142 DB_API void db_RobCamRotation_Polish_Generic(double H[9],int point_count,int homography_type,
|
db_rob_image_homography.cpp | 36 inline double db_RobImageHomography_Cost(double H[9],int point_count,double *x_i,double *xp_i,double one_over_scale2) 41 for(back=0.0,c=0;c<point_count;) 45 if(c+9<point_count) 64 for(acc=1.0;c<point_count;c++) 74 inline double db_RobImageHomography_Statistics(double H[9],int point_count,double *x_i,double *xp_i,double one_over_scale2,db_Statistics *stat,double thresh=DB_OUTLIER_THRESHOLD) 80 for(i=0,c=0;c<point_count;c++) 84 frac=((double)i)/((double)(db_maxi(point_count,1))); 87 std::cout << "Inlier Percentage RobImageHomography: " << frac*100.0 << "% out of " << point_count << " constraints" << std::endl; 92 stat->nr_points=point_count; 97 stat->cost=db_RobImageHomography_Cost(H,point_count,x_i,xp_i,one_over_scale2) 674 int i,j,c,point_count,hyp_count; local [all...] |
db_metrics.h | 324 inline int db_RemoveOutliers_Homography(const double H[9], double *x_i,double *xp_i, double *wp,double *im, double *im_p, double *im_r, double *im_raw,double *im_raw_p,int point_count,double scale, double thresh=DB_OUTLIER_THRESHOLD) 341 for(c=0;c<point_count;c++)
|
/packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/ |
db_rob_image_homography.h | 132 DB_API double db_RobImageHomography_Cost(double H[9],int point_count,double *x_i, 136 DB_API void db_RobCamRotation_Polish(double H[9],int point_count,double *x_i, 142 DB_API void db_RobCamRotation_Polish_Generic(double H[9],int point_count,int homography_type,
|
db_rob_image_homography.cpp | 36 inline double db_RobImageHomography_Cost(double H[9],int point_count,double *x_i,double *xp_i,double one_over_scale2) 41 for(back=0.0,c=0;c<point_count;) 45 if(c+9<point_count) 64 for(acc=1.0;c<point_count;c++) 74 inline double db_RobImageHomography_Statistics(double H[9],int point_count,double *x_i,double *xp_i,double one_over_scale2,db_Statistics *stat,double thresh=DB_OUTLIER_THRESHOLD) 80 for(i=0,c=0;c<point_count;c++) 84 frac=((double)i)/((double)(db_maxi(point_count,1))); 87 std::cout << "Inlier Percentage RobImageHomography: " << frac*100.0 << "% out of " << point_count << " constraints" << std::endl; 92 stat->nr_points=point_count; 97 stat->cost=db_RobImageHomography_Cost(H,point_count,x_i,xp_i,one_over_scale2) 674 int i,j,c,point_count,hyp_count; local [all...] |
db_metrics.h | 324 inline int db_RemoveOutliers_Homography(const double H[9], double *x_i,double *xp_i, double *wp,double *im, double *im_p, double *im_r, double *im_raw,double *im_raw_p,int point_count,double scale, double thresh=DB_OUTLIER_THRESHOLD) 341 for(c=0;c<point_count;c++)
|
/external/chromium_org/third_party/harfbuzz-ng/src/ |
hb-ot-layout-gdef-table.hh | 51 unsigned int *point_count /* IN/OUT */, 57 if (point_count) 58 *point_count = 0; 64 if (point_count) { 65 const USHORT *array = points.sub_array (start_offset, point_count); 66 unsigned int count = *point_count; 350 unsigned int *point_count /* IN/OUT */, 352 { return (this+attachList).get_attach_points (glyph_id, start_offset, point_count, point_array); }
|
hb-ot-layout.h | 78 unsigned int *point_count /* IN/OUT */,
|
hb-ot-layout.cc | 150 unsigned int *point_count /* IN/OUT */, 153 return _get_gdef (face).get_attach_points (glyph, start_offset, point_count, point_array);
|
/external/harfbuzz_ng/src/ |
hb-ot-layout-gdef-table.hh | 51 unsigned int *point_count /* IN/OUT */, 57 if (point_count) 58 *point_count = 0; 64 if (point_count) { 65 const USHORT *array = points.sub_array (start_offset, point_count); 66 unsigned int count = *point_count; 350 unsigned int *point_count /* IN/OUT */, 352 { return (this+attachList).get_attach_points (glyph_id, start_offset, point_count, point_array); }
|
hb-ot-layout.h | 77 unsigned int *point_count /* IN/OUT */,
|
hb-ot-layout.cc | 142 unsigned int *point_count /* IN/OUT */, 145 return _get_gdef (face).get_attach_points (glyph, start_offset, point_count, point_array);
|
/external/opencv/cv/include/ |
cvcompat.h | 637 CV_INLINE void cvFindExtrinsicCameraParams( int point_count, 643 CvMat image_points = cvMat( point_count, 1, CV_32FC2, _image_points ); 644 CvMat object_points = cvMat( point_count, 1, CV_32FC3, _object_points ); 662 CV_INLINE void cvFindExtrinsicCameraParams_64d( int point_count, 668 CvMat image_points = cvMat( point_count, 1, CV_64FC2, _image_points ); 669 CvMat object_points = cvMat( point_count, 1, CV_64FC3, _object_points ); 702 CV_INLINE void cvProjectPoints( int point_count, CvPoint3D64f* _object_points, 712 CvMat object_points = cvMat( point_count, 1, CV_64FC3, _object_points ); 713 CvMat image_points = cvMat( point_count, 1, CV_64FC2, _image_points ); 719 CvMat dpdr = cvMat( 2*point_count, 3, CV_64FC1, _deriv_points_rotation_matrix ) [all...] |
cv.h | [all...] |
/external/chromium_org/third_party/freetype/src/truetype/ |
ttgxvar.c | 1114 FT_UInt point_count; local 1320 FT_UInt point_count, spoint_count = 0; local [all...] |
/external/freetype/src/truetype/ |
ttgxvar.c | 1114 FT_UInt point_count; local 1320 FT_UInt point_count, spoint_count = 0; local [all...] |
/external/chromium_org/third_party/ots/src/ |
gdef.cc | 80 uint16_t point_count = 0; local 81 if (!subtable.ReadU16(&point_count)) { 84 if (point_count == 0) { 89 for (unsigned j = 0; j < point_count; ++j) {
|
/external/chromium_org/ui/events/gestures/ |
gesture_sequence.h | 65 int point_count() const { return point_count_; } function in class:ui::GestureSequence
|