/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/tools/ |
test_bbox.c | 24 /* test bbox computations */ 91 /* dummy outline #3 with bbox of [0 100 128 128] precisely */ 114 FT_BBox bbox; local 117 FT_Outline_Get_CBox( outline, &bbox ); 119 XVAL( bbox.xMin ), 120 XVAL( bbox.yMin ), 121 XVAL( bbox.xMax ), 122 XVAL( bbox.yMax ) ); 124 /* compute and display bbox */ 125 FT_Outline_Get_BBox( outline, &bbox ); 139 FT_BBox bbox; local [all...] |
/external/chromium-trace/catapult/tracing/tracing/base/ |
bbox2_test.html | 17 var bbox = new tr.b.BBox2(); 20 bbox.addVec2(x); 21 assert.equal(bbox.minVec2[0], 10); 22 assert.equal(bbox.minVec2[1], 10); 23 assert.equal(bbox.maxVec2[0], 10); 24 assert.equal(bbox.maxVec2[1], 10); 29 // Bbox shouldn't have changed. 30 assert.equal(bbox.minVec2[0], 10); 31 assert.equal(bbox.minVec2[1], 10); 32 assert.equal(bbox.maxVec2[0], 10) [all...] |
/external/freetype/src/base/ |
ftbbox.c | 5 /* FreeType bbox computation (body). */ 40 FT_BBox bbox; member in struct:TBBox_Rec_ 45 #define FT_UPDATE_BBOX( p, bbox ) \ 47 if ( p->x < bbox.xMin ) \ 48 bbox.xMin = p->x; \ 49 if ( p->x > bbox.xMax ) \ 50 bbox.xMax = p->x; \ 51 if ( p->y < bbox.yMin ) \ 52 bbox.yMin = p->y; \ 53 if ( p->y > bbox.yMax ) 443 FT_BBox bbox = { 0x7FFFFFFFL, 0x7FFFFFFFL, local [all...] |
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/base/ |
ftbbox.c | 5 /* FreeType bbox computation (body). */ 40 FT_BBox bbox; member in struct:TBBox_Rec_ 45 #define FT_UPDATE_BBOX( p, bbox ) \ 47 if ( p->x < bbox.xMin ) \ 48 bbox.xMin = p->x; \ 49 if ( p->x > bbox.xMax ) \ 50 bbox.xMax = p->x; \ 51 if ( p->y < bbox.yMin ) \ 52 bbox.yMin = p->y; \ 53 if ( p->y > bbox.yMax ) 443 FT_BBox bbox = { 0x7FFFFFFFL, 0x7FFFFFFFL, local [all...] |
/external/pdfium/third_party/freetype/src/base/ |
ftbbox.c | 5 /* FreeType bbox computation (body). */ 40 FT_BBox bbox; member in struct:TBBox_Rec_ 45 #define FT_UPDATE_BBOX( p, bbox ) \ 47 if ( p->x < bbox.xMin ) \ 48 bbox.xMin = p->x; \ 49 if ( p->x > bbox.xMax ) \ 50 bbox.xMax = p->x; \ 51 if ( p->y < bbox.yMin ) \ 52 bbox.yMin = p->y; \ 53 if ( p->y > bbox.yMax ) 443 FT_BBox bbox = { 0x7FFFFFFFL, 0x7FFFFFFFL, local [all...] |
/prebuilts/go/darwin-x86/test/fixedbugs/ |
bug281.go | 24 bbox Rect 27 func (o *Obj) Bbox() Rect { 28 return o.bbox 32 return [2]Point{o.bbox.Min, o.bbox.Max} 40 q := p.Sub(o.Bbox().Min)
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
bug281.go | 24 bbox Rect 27 func (o *Obj) Bbox() Rect { 28 return o.bbox 32 return [2]Point{o.bbox.Min, o.bbox.Max} 40 q := p.Sub(o.Bbox().Min)
|
/external/pdfium/core/src/fxge/ge/ |
fx_ge_font.cpp | 276 FX_BOOL CFX_Font::GetGlyphBBox(FX_DWORD glyph_index, FX_RECT& bbox) { 300 bbox.left = cbox.xMin; 301 bbox.right = cbox.xMax; 302 bbox.top = cbox.yMax; 303 bbox.bottom = cbox.yMin; 305 bbox.left = cbox.xMin * 1000 / pixel_size_x; 306 bbox.right = cbox.xMax * 1000 / pixel_size_x; 307 bbox.top = cbox.yMax * 1000 / pixel_size_y; 308 bbox.bottom = cbox.yMin * 1000 / pixel_size_y; 310 if (bbox.top > FXFT_Get_Face_Ascender(m_Face)) [all...] |
/external/skia/src/pdf/ |
SkPDFFormXObject.cpp | 47 SkPDFFormXObject::SkPDFFormXObject(SkStream* content, SkRect bbox, 51 SkAutoTUnref<SkPDFArray> bboxArray(SkPDFUtils::RectToArray(bbox)); 57 * Note that bbox is unreferenced here, so calling code does not need worry. 60 SkPDFDict* resourceDict, SkPDFArray* bbox) { 64 this->insertObject("BBox", SkRef(bbox));
|
SkPDFFormXObject.h | 45 SkRect bbox, 51 SkPDFDict* resourceDict, SkPDFArray* bbox);
|
/external/skia/platform_tools/android/apps/sample_app/src/main/res/values/ |
strings.xml | 9 <string name="bbox">Toggle SKP BBox</string>
|
/external/freetype/include/ |
ftbbox.h | 5 /* FreeType exact bbox computation (specification). */ 78 /* @FT_LOAD_NO_SCALE, the resulting BBox is meaningless. To get */ 79 /* reasonable values for the BBox it is necessary to load the glyph */ 81 /* properly shift and scale the subglyphs), then extracting the BBox, */
|
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/include/freetype/ |
ftbbox.h | 5 /* FreeType exact bbox computation (specification). */ 78 /* @FT_LOAD_NO_SCALE, the resulting BBox is meaningless. To get */ 79 /* reasonable values for the BBox it is necessary to load the glyph */ 81 /* properly shift and scale the subglyphs), then extracting the BBox, */
|
/external/pdfium/third_party/freetype/include/freetype/ |
ftbbox.h | 5 /* FreeType exact bbox computation (specification). */ 78 /* @FT_LOAD_NO_SCALE, the resulting BBox is meaningless. To get */ 79 /* reasonable values for the BBox it is necessary to load the glyph */ 81 /* properly shift and scale the subglyphs), then extracting the BBox, */
|
/prebuilts/misc/darwin-x86_64/freetype/include/freetype2/ |
ftbbox.h | 5 /* FreeType exact bbox computation (specification). */ 78 /* @FT_LOAD_NO_SCALE, the resulting BBox is meaningless. To get */ 79 /* reasonable values for the BBox it is necessary to load the glyph */ 81 /* properly shift and scale the subglyphs), then extracting the BBox, */
|
/external/freetype/src/autofit/ |
afloader.c | 238 FT_BBox bbox; local 259 FT_Outline_Get_CBox( &gloader->base.outline, &bbox ); 261 bbox.xMin = FT_PIX_FLOOR( bbox.xMin ); 262 bbox.yMin = FT_PIX_FLOOR( bbox.yMin ); 263 bbox.xMax = FT_PIX_CEIL( bbox.xMax ); 264 bbox.yMax = FT_PIX_CEIL( bbox.yMax ) [all...] |
/external/opencv3/modules/flann/include/opencv2/flann/ |
kdtree_single_index.h | 314 void computeBoundingBox(BoundingBox& bbox) 316 bbox.resize(dim_); 318 bbox[i].low = (DistanceType)dataset_[0][i]; 319 bbox[i].high = (DistanceType)dataset_[0][i]; 323 if (dataset_[k][i]<bbox[i].low) bbox[i].low = (DistanceType)dataset_[k][i]; 324 if (dataset_[k][i]>bbox[i].high) bbox[i].high = (DistanceType)dataset_[k][i]; 339 NodePtr divideTree(int left, int right, BoundingBox& bbox) 351 bbox[i].low = (DistanceType)dataset_[vind_[left]][i] [all...] |
/external/pdfium/xfa/src/fgas/src/font/ |
fx_gefont.h | 40 CFX_Rect& bbox,
42 virtual FX_BOOL GetBBox(CFX_Rect& bbox);
77 CFX_Rect& bbox,
|
/external/mesa3d/src/gallium/winsys/svga/drm/ |
vmw_screen_dri.c | 125 const struct drm_clip_rect *bbox) 130 xy1 = ((int)src->x1 > (int)bbox->x1 + dst_x) ? src->x1 : 131 (int)bbox->x1 + dst_x; 132 xy2 = ((int)src->x2 < (int)bbox->x2 + dst_x) ? src->x2 : 133 (int)bbox->x2 + dst_x; 140 xy1 = ((int)src->y1 > (int)bbox->y1 + dst_y) ? src->y1 : 141 (int)bbox->y1 + dst_y; 142 xy2 = ((int)src->y2 < (int)bbox->y2 + dst_y) ? src->y2 : 143 (int)bbox->y2 + dst_y;
|
/external/pdfium/xfa/src/fdp/include/ |
fde_pth.h | 28 virtual void GetBBox(CFX_RectF& bbox) const = 0;
29 virtual void GetBBox(CFX_RectF& bbox,
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
lp_setup_point.c | 324 struct u_rect bbox; local 338 bbox.x0 = (x0 + (FIXED_ONE-1) + adj) >> FIXED_ORDER; 339 bbox.x1 = (x0 + fixed_width + (FIXED_ONE-1) + adj) >> FIXED_ORDER; 340 bbox.y0 = (y0 + (FIXED_ONE-1)) >> FIXED_ORDER; 341 bbox.y1 = (y0 + fixed_width + (FIXED_ONE-1)) >> FIXED_ORDER; 345 bbox.x1--; 346 bbox.y1--; 349 if (!u_rect_test_intersection(&setup->draw_region, &bbox)) { 355 u_rect_find_intersection(&setup->draw_region, &bbox); 391 plane[0].c = 1-bbox.x0 [all...] |
lp_setup_tri.c | 246 struct u_rect bbox; local 273 bbox.x0 = MIN3(position->x[0], position->x[1], position->x[2]) >> FIXED_ORDER; 274 bbox.x1 = (MAX3(position->x[0], position->x[1], position->x[2]) - 1) >> FIXED_ORDER; 277 bbox.y0 = (MIN3(position->y[0], position->y[1], position->y[2]) + adj) >> FIXED_ORDER; 278 bbox.y1 = (MAX3(position->y[0], position->y[1], position->y[2]) - 1 + adj) >> FIXED_ORDER; 281 if (bbox.x1 < bbox.x0 || 282 bbox.y1 < bbox.y0) { 288 if (!u_rect_test_intersection(&setup->draw_region, &bbox)) { [all...] |
/external/pdfium/testing/resources/ |
bug_451265.in | 63 /BBox [0 0 225 161]
|
/external/pdfium/xfa/src/fdp/src/fde/ |
fde_geobject.h | 30 virtual void GetBBox(CFX_RectF& bbox) const;
31 virtual void GetBBox(CFX_RectF& bbox,
|
/external/skia/platform_tools/android/apps/sample_app/src/main/res/menu/ |
action_bar.xml | 42 android:id="@+id/bbox" 43 android:title="@string/bbox"
|