Searched refs:box (Results 1 - 25 of 653) sorted by last modified time

1234567891011>>

/external/sqlite/dist/orig/
H A Dsqlite3.c2739 ** "Cancel" button on a GUI progress dialog box.
147092 RtreeCell box; /* Bounding box for pNode */ local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c2739 ** "Cancel" button on a GUI progress dialog box.
147124 RtreeCell box; /* Bounding box for pNode */ local
[all...]
/external/skia/src/animator/
H A DSkDrawTextBox.cpp72 SkTextBox box; local
73 box.setMode((SkTextBox::Mode) mode);
74 box.setSpacingAlign((SkTextBox::SpacingAlign) spacingAlign);
75 box.setBox(fRect);
76 box.setSpacing(fSpacingMul, fSpacingAdd);
78 box.draw(maker.fCanvas, fText.c_str(), fText.size(), *maker.fPaint);
/external/skia/src/pdf/
H A DSkPDFFont.cpp267 void setGlyphWidthAndBoundingBox(SkScalar width, SkIRect box, argument
269 // Specify width and bounding box for the glyph.
272 content->writeDecAsText(box.fLeft);
274 content->writeDecAsText(box.fTop);
276 content->writeDecAsText(box.fRight);
278 content->writeDecAsText(box.fBottom);
466 // typing char id 0x0014 in search box will get glyph id 0x0004 first. However,
/external/skia/src/svg/
H A DSkSVGSVG.cpp46 SkRect box; local
47 box.fLeft = SkScalarDiv(viewBox[0], width);
48 box.fTop = SkScalarDiv(viewBox[1], height);
49 box.fRight = SkScalarDiv(viewBox[2], width);
50 box.fBottom = SkScalarDiv(viewBox[3], height);
51 if (box.fLeft == 0 && box.fTop == 0 &&
52 box.fRight == SK_Scalar1 && box.fBottom == SK_Scalar1)
55 if (box
[all...]
/external/skia/src/views/
H A DSkTextBox.cpp136 void SkTextBox::getBox(SkRect* box) const
138 if (box)
139 *box = fBox;
142 void SkTextBox::setBox(const SkRect& box) argument
144 fBox = box;
H A DSkWidgets.cpp300 SkTextBox box; local
301 box.setMode(SkTextBox::kOneLine_Mode);
302 box.setSpacingAlign(SkTextBox::kCenter_SpacingAlign);
303 box.setBox(0, 0, this->width(), this->height());
310 box.draw(canvas, label.c_str(), label.size(), p);
459 SkTextBox box;
461 box.setMode(fMode == kAutoWidth_Mode ? SkTextBox::kOneLine_Mode : SkTextBox::kLineBreak_Mode);
462 box.setSpacingAlign(this->getSpacingAlign());
463 box.setBox(fMargin.fX, fMargin.fY, this->width() - fMargin.fX, this->height() - fMargin.fY);
464 box
[all...]
/external/skia/src/views/animated/
H A DSkStaticTextView.cpp143 SkTextBox box;
145 box.setMode(fMode == kAutoWidth_Mode ? SkTextBox::kOneLine_Mode : SkTextBox::kLineBreak_Mode);
146 box.setSpacingAlign(this->getSpacingAlign());
147 box.setBox(fMargin.fX, fMargin.fY, this->width() - fMargin.fX, this->height() - fMargin.fY);
148 box.draw(canvas, fText.c_str(), fText.size(), fPaint);
/external/skia/tools/lua/
H A Dbbh_filter.lua5 -- "Interesting for bounding box hierarchy benchmarks."
/external/skia/experimental/webtry/res/css/cm/
H A Dcodemirror.css39 -moz-box-sizing: content-box;
40 box-sizing: content-box;
127 -moz-box-sizing: content-box;
128 box-sizing: content-box;
133 -moz-box-sizing: content-box;
[all...]
/external/skia/experimental/webtry/res/js/cm/
H A Dcodemirror.js685 var box = cur.node.getBoundingClientRect();
686 height = box.bottom - box.top;
1514 // Get a {top, bottom, left, right} box (in line-local coordinates)
1626 } else { // If it is a widget, simply get the box for the whole widget.
1680 // Converts a {top, bottom, left, right} box from line-local
1703 // Coverts a box from "div" coords to another coordinate system.
1727 // Returns a box for a given cursor position, which may have an
3514 var display = cm.display, box = display.sizer.getBoundingClientRect(), doScroll = null;
3515 if (coords.top + box
[all...]
/external/robolectric/lib/test/
H A Dmockito-core-1.8.5.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...
/external/qemu/android/skin/
H A Dfile.c318 SkinBox box; local
344 skin_box_minmax_init( &box );
347 skin_box_minmax_update( &box, &part->background->rect );
350 skin_box_minmax_update( &box, &part->display->rect );
353 skin_box_minmax_update( &box, &button->rect );
356 if ( !skin_box_minmax_to_rect( &box, &part->rect ) ) {
369 SkinBox box; local
395 skin_box_minmax_init( &box );
398 skin_box_minmax_update( &box, &part->background->rect );
401 skin_box_minmax_update( &box,
[all...]
H A Drect.c194 skin_box_minmax_init( SkinBox* box )
196 box->x1 = box->y1 = INT_MAX;
197 box->x2 = box->y2 = INT_MIN;
214 skin_box_minmax_to_rect( SkinBox* box, SkinRect* r ) argument
216 if (box->x1 > box->x2) {
220 skin_box_to_rect( box, r );
225 skin_box_from_rect( SkinBox* box, SkinRec argument
234 skin_box_to_rect( SkinBox* box, SkinRect* r ) argument
[all...]
H A Drect.h64 extern void skin_box_init( SkinBox* box, int x1, int y1, int x2, int y2 );
65 extern void skin_box_minmax_init( SkinBox* box );
66 extern void skin_box_minmax_update( SkinBox* box, SkinRect* rect );
67 extern int skin_box_minmax_to_rect( SkinBox* box, SkinRect* rect );
68 extern void skin_box_from_rect( SkinBox* box, SkinRect* rect );
69 extern void skin_box_to_rect( SkinBox* box, SkinRect* rect );
H A Dregion.c401 skin_region_init_box( SkinRegion* r, SkinBox* box )
403 if (box == NULL || box->x1 >= box->x2 || box->y1 >= box->y2) {
407 r->bounds.pos.x = box->x1;
408 r->bounds.pos.y = box->y1;
409 r->bounds.size.w = box->x2 - box
[all...]
H A Dregion.h22 extern void skin_region_init_box( SkinRegion* r, SkinBox* box );
82 SkinBox *box );
/external/qemu/distrib/jpeg-6b/
H A Djquant2.c40 * Next, the color-selection step begins with a box representing the whole
41 * color space, and repeatedly splits the "largest" remaining box until we
43 * remaining box becomes one of the possible output colors.
51 * the "largest" box and deciding where to cut it. The particular policies
259 /* The bounds of the box (inclusive); expressed as histogram indexes */
263 /* The volume (actually 2-norm) of the box */
265 /* The number of nonzero histogram cells within this box */
267 } box; typedef in typeref:struct:__anon29331
269 typedef box * boxptr;
274 /* Find the splittable box wit
[all...]
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dasm-commons-3.3.jarMETA-INF/MANIFEST.MF org/objectweb/asm/commons/AdviceAdapter.class " package org.objectweb.asm ...
H A Dfindbugs.jarMETA-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd/ edu/umd/cs/ edu/ ...
/external/pdfium/core/src/fpdfapi/fpdf_edit/
H A Dfpdf_edit_doc.cpp654 CGRect box = CTFontGetBoundingBox(font); local
655 bbox[0] = box.origin.x;
656 bbox[1] = box.origin.y;
657 bbox[2] = box.origin.x + box.size.width;
658 bbox[3] = box.origin.y + box.size.height;
/external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
H A Dindexbox_manager.h46 #define JPIP_FAIX 0x66616978 /* Fragment array Index box */
48 #define JPIP_TPIX 0x74706978 /* Tile-part Index Table box */
49 #define JPIP_THIX 0x74686978 /* Tile header Index Table box */
50 #define JPIP_PPIX 0x70706978 /* Precinct Packet Index Table box */
55 #define JPIP_IPTR 0x69707472 /* Index finder box */
60 * Write tile-part Index table box (superbox)
66 * @return length of tpix box
73 * Write tile header index table box (superbox)
78 * @return length of thix box
84 * Write precinct packet index table box (superbo
[all...]
H A Djp2.c53 * Reads a IHDR box - Image Header box
68 * Writes the Image Header box - Image Header box.
79 * Writes the Bit per Component box.
90 * Reads a Bit per Component box.
112 * Writes the Colour Specification box.
123 * Writes a FTYP box - File type box
136 * Reads a a FTYP box
437 opj_jp2_read_boxhdr(opj_jp2_box_t *box, OPJ_UINT32 * p_number_bytes_read, opj_stream_private_t *cio, opj_event_mgr_t * p_manager ) argument
1837 opj_jp2_box_t box; local
2198 opj_jp2_box_t box; local
2252 opj_jp2_read_boxhdr_char( opj_jp2_box_t *box, OPJ_BYTE * p_data, OPJ_UINT32 * p_number_bytes_read, OPJ_UINT32 p_box_max_size, opj_event_mgr_t * p_manager ) argument
[all...]
/external/pixman/demos/
H A Dscale.c133 GtkComboBox *box = GTK_COMBO_BOX (get_widget (app, box_name)); local
135 return table[gtk_combo_box_get_active (box)].value;
/external/pixman/pixman/
H A Dpixman-region.c572 box_type_t *prev_box; /* Current box in previous band */
573 box_type_t *cur_box; /* Current box in current band */
613 * The bands may be merged, so set the bottom y of each box
1049 box_type_t *box, *box_end; local
1061 box = PIXREGION_BOXPTR (region);
1065 * Since box is the first rectangle in the region, it must have the
1068 * x2 from box and box_end, resp., as good things to initialize them
1071 region->extents.x1 = box->x1;
1072 region->extents.y1 = box->y1;
1078 while (box <
1588 box_type_t *box; /* Current box in rects */ local
2321 _reset(region_type_t *region, box_type_t *box) argument
2346 _contains_point(region_type_t * region, int x, int y, box_type_t * box) argument
2437 box_type_t box; local
2517 box_type_t *box = &rects[i]; local
[all...]

Completed in 3405 milliseconds

1234567891011>>