HomeSort by relevance Sort by last modified time
    Searched full:width (Results 26 - 50 of 5636) sorted by null

12 3 4 5 6 7 8 91011>>

  /dalvik/docs/
java-bytecode.css 26 border-width: 0;
30 width: 25%;
35 width: 100%;
39 border-width: 0;
  /development/tools/yuv420sp2rgb/
cmdline.h 9 int *width,
  /external/skia/src/images/
SkBitmap_RLEPixels.h 8 SkBitmap_RLEPixels(int width, int height);
  /external/webkit/WebCore/manual-tests/qt/
main.html 7 <IFRAME SRC="qtplugin.html" FRAMEBORDER="0" width="100%" height="100%" ></IFRAME>
  /external/webkit/WebCore/manual-tests/resources/
big-page.html 2 <div style="width: 400px; height: 400px; background-color: blue"></div>
popup200x100.html 6 <img src="200x100.png" width="200" height="100">
popup200x200.html 6 <img src="200x200.png" width="200" height="200">
  /frameworks/base/opengl/tools/glgen/specs/jsr239/
glspec-1.1ext 2 void glDrawTexfOES ( GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height )
4 void glDrawTexiOES ( GLint x, GLint y, GLint z, GLint width, GLint height )
6 void glDrawTexsOES ( GLshort x, GLshort y, GLshort z, GLshort width, GLshort height )
8 void glDrawTexxOES ( GLfixed x, GLfixed y, GLfixed z, GLfixed width, GLfixed height )
  /external/icu4c/samples/layout/
rsurface.cpp 17 const float *positions, le_int32 x, le_int32 y, le_int32 width, le_int32 height)
21 rs->drawGlyphs((const LEFontInstance *) font, glyphs, count, positions, x, y, width, height);
  /external/webkit/WebCore/manual-tests/animation/
animateTransform-toanimation.svg 2 <svg xmlns="http://www.w3.org/2000/svg" width="800px" height="600px">
4 <rect fill="red" x="0" y="0" width="100" height="100">
set-to.svg 2 <rect width='100' height='100' fill='red' />
3 <rect x='-100' width='100' height='100' fill='red'>
animateTransform-parser.svg 9 <svg xmlns="http://www.w3.org/2000/svg" width="800px" height="600px">
11 <circle fill="none" stroke="black" stroke-width="3" cx="200" cy="200" r="100" />
12 <line x1="200" y1="200" x2="300" y2="200" stroke="red" stroke-width="30" stroke-linecap="round">
16 <line x1="200" y1="200" x2="300" y2="200" stroke="green" stroke-width="20" stroke-linecap="round">
20 <line x1="200" y1="200" x2="300" y2="200" stroke="blue" stroke-width="10" stroke-linecap="round">
24 <line x1="200" y1="200" x2="300" y2="200" stroke="white" stroke-width="5" stroke-linecap="round">
30 <rect fill="none" stroke="black" stroke-width="3" x="0" y="0" width="200" height="200" />
45 <rect fill="none" stroke="black" stroke-width="3" x="0" y="0" width="200" height="200" /
    [all...]
  /external/webkit/WebCore/platform/graphics/
WidthIterator.cpp 122 // Now that we have a glyph and font data, get its width.
123 float width; local
126 width = tabWidth - fmodf(m_run.xPos() + runWidthSoFar, tabWidth);
128 width = fontData->widthForGlyph(glyph);
130 // First, we round spaces to an adjusted width in all fonts.
132 // match the width of the space character have the same width as the space character.
133 if (width == fontData->spaceWidth() && (fontData->pitch() == FixedPitch || glyph == fontData->spaceGlyph()) && m_run.applyWordRounding())
134 width = fontData->adjustedSpaceWidth();
137 if (fontData != lastFontData && width) {
    [all...]
  /external/webkit/WebKit/qt/tests/hybridPixmap/
widget.ui 9 <width>600</width>
39 <width>120</width>
45 <width>120</width>
75 <width>40</width>
  /frameworks/base/awt/java/awt/geom/
Dimension2D.java 25 * The Class Dimension2D represents a size (width and height) of a geometric
40 * Gets the width.
42 * @return the width.
54 * Sets the width and height.
56 * @param width
57 * the width.
61 public abstract void setSize(double width, double height);
64 * Sets the width and height based on the data of another Dimension2D
Ellipse2D.java 57 * The width of the ellipse's bounding rectangle.
59 public float width; field in class:Ellipse2D.Float
81 * @param width
82 * the width of the ellipse's bounding rectangle.
86 public Float(float x, float y, float width, float height) {
87 setFrame(x, y, width, height);
102 return width;
112 return width <= 0.0 || height <= 0.0;
124 * @param width
125 * the width of the ellipse's bounding rectangle
172 public double width; field in class:Ellipse2D.Double
291 double width; field in class:Ellipse2D.Iterator
    [all...]
  /dalvik/libcore/luni/src/main/java/java/util/
IllegalFormatWidthException.java 20 * An {@code IllegalFormatWidthException} will be thrown if the width is a
21 * negative value other than -1 or in other cases where a width is not
34 * width.
37 * the width.
44 * Returns the width associated with the exception.
46 * @return the width.
  /external/webkit/WebCore/manual-tests/
autofill-popup-width-and-item-direction.html 5 Test the popup list box's width and its items' display directionality
10 Autofill popup list box should have the same width as its input field's width.
12 input field's width
16 the form autofill pop-up should show up now with the width the same as
17 the width of the input field, and the text "abcd abcd abcd abcd abcd abcd" got
  /external/webkit/WebCore/rendering/
AutoTableLayout.cpp 80 // a min/max width of at least 1px for this column now.
99 // ignore width=0
100 if (w.value() > 0 && (int)l.width.type() != Percent) {
102 if (l.width.isFixed()) {
104 if ((wval > l.width.value()) ||
105 ((l.width.value() == wval) && (maxContributor == cell))) {
106 l.width.setValue(wval);
110 l.width.setValue(Fixed, wval);
117 if (w.isPositive() && (!l.width.isPercent() || w.rawValue() > l.width.rawValue())
531 Length& width = m_layoutStruct[i].effWidth; local
564 Length &width = m_layoutStruct[i].effWidth; local
591 Length &width = m_layoutStruct[i].effWidth; local
602 Length &width = m_layoutStruct[i].effWidth; local
616 Length &width = m_layoutStruct[i].effWidth; local
630 Length &width = m_layoutStruct[i].effWidth; local
644 Length &width = m_layoutStruct[i].effWidth; local
683 Length &width = m_layoutStruct[i].effWidth; local
689 Length &width = m_layoutStruct[i].effWidth; local
705 Length& width = m_layoutStruct[i].effWidth; local
711 Length& width = m_layoutStruct[i].effWidth; local
727 Length& width = m_layoutStruct[i].effWidth; local
733 Length& width = m_layoutStruct[i].effWidth; local
749 Length& width = m_layoutStruct[i].effWidth; local
755 Length& width = m_layoutStruct[i].effWidth; local
    [all...]
  /frameworks/base/awt/java/awt/image/
Kernel.java 50 * The width.
52 private int width; field in class:Kernel
66 * width*height elements of the data array are copied.
68 * @param width
69 * the width of the Kernel.
75 public Kernel(int width, int height, float[] data) {
76 int dataLength = width * height;
78 // awt.22B=Length of data should not be less than width*height
82 this.width = width;
    [all...]
  /packages/inputmethods/PinyinIME/res/xml/
skb_qwerty.xml 21 width="10%p"
32 <row start_pos_x="4.078%p" width="10.205%p">
37 <row width="10.205%p">
38 <key label="?" width="14.286%p" icon="@drawable/comma_full_icon"
57 <row width="20%p" row_id="@string/toggle_row_cn">
60 <key code="62" key_type="5" width="30.608%p"/>
61 <key label="?" width="14.696%p" icon="@drawable/period_full_icon"
66 <row width="20%p" row_id="@string/toggle_row_en" start_pos_y="75%p">
69 <key code="62" key_type="5" width="30.608%p"/>
74 <row width="20%p" row_id="@string/toggle_row_uri" start_pos_y="75%p"
    [all...]
  /cts/tools/host/src/res/
cts_result.css 30 border-width:0;
32 width: 95%;
38 border-width: 0px;
51 border-width: 0px 0px 0px 0px;
54 width:80%;
61 width: 50%;
65 border-width: 0px 0px 0px 0px;
74 border-width:0;
81 border-width: 0px 0px 0px 0px;
88 border-width:1
    [all...]
  /frameworks/base/core/jni/android/graphics/
YuvToJpegEncoder.cpp 24 bool YuvToJpegEncoder::encode(SkWStream* stream, void* inYuv, int width,
39 setJpegCompressStruct(&cinfo, width, height, jpegQuality);
51 int width, int height, int quality) {
52 cinfo->image_width = width;
82 int width = cinfo->image_width; local
85 uint8_t* vuPlanar = yuv + offsets[1]; //width * height;
86 uint8_t* uRows = new uint8_t [8 * (width >> 1)];
87 uint8_t* vRows = new uint8_t [8 * (width >> 1)];
93 deinterleave(vuPlanar, uRows, vRows, cinfo->next_scanline, width);
101 // height and width are both halved because of downsamplin
155 int width = cinfo->image_width; local
    [all...]
YuvToJpegEncoder.h 27 * @param width Width of the the Yuv data in terms of pixels.
33 bool encode(SkWStream* stream, void* inYuv, int width,
41 void setJpegCompressStruct(jpeg_compress_struct* cinfo, int width,
55 void deinterleaveYuv(uint8_t* yuv, int width, int height,
58 int rowIndex, int width);
71 uint8_t* vRows, int rowIndex, int width, int height);
  /external/proguard/docs/
testimonials.html 29 <td class="shadow8"><img src="drop2.gif" width="8" height="100"></td></tr><tr>
30 <td class="shadow400"><img src="drop1.gif" width="400" height="8"></td>
31 <td class="shadow8"><img src="drop3.gif" width="8" height="8"></td>
41 <td class="shadow8"><img src="drop2.gif" width="8" height="100"></td></tr><tr>
42 <td class="shadow400"><img src="drop1.gif" width="400" height="8"></td>
43 <td class="shadow8"><img src="drop3.gif" width="8" height="8"></td>
53 <td class="shadow8"><img src="drop2.gif" width="8" height="100"></td></tr><tr>
54 <td class="shadow400"><img src="drop1.gif" width="400" height="8"></td>
55 <td class="shadow8"><img src="drop3.gif" width="8" height="8"></td>
65 <td class="shadow8"><img src="drop2.gif" width="8" height="100"></td></tr><tr
    [all...]

Completed in 118 milliseconds

12 3 4 5 6 7 8 91011>>