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

<<11121314151617181920>>

  /external/quake/quake/src/WinQuake/
vid_svgalib.cpp 106 void D_BeginDirectRect (int x, int y, byte *pbitmap, int width, int height)
138 for (j=0 ; j<(width >> 2) ; j++)
162 vid.direct + off, width);
164 &pbitmap[(i >> repshift)*width], width);
170 void D_EndDirectRect (int x, int y, int width, int height)
202 for (j=0 ; j<(width >> 2) ; j++)
223 width);
268 if ((modenum >= num_modes) || (modenum < 0 ) || !modes[modenum].width)
270 Con_Printf("%d: %d x %d - ",modenum,modes[modenum].width,modes[modenum].height)
    [all...]
  /external/skia/src/views/
SkProgressView.cpp 81 r.set(0, 0, this->width(), this->height());
84 r.fRight = r.fLeft + SkScalarMul(r.width(), SkFixedToScalar(percent));
94 r.fRight = this->width() - SK_Scalar1;
95 if (r.width() > 0)
SkScrollBarView.cpp 74 evt.setScalar("dimX", this->width());
103 SkScalar width; local
105 if (evt.findScalar("x", &width))
106 this->setWidth(width);
  /external/webkit/WebCore/html/
HTMLAreaElement.cpp 115 int width = size.width(); local
134 path.moveTo(FloatPoint(m_coords[0].calcMinValue(width), m_coords[1].calcMinValue(height)));
136 path.addLineTo(FloatPoint(m_coords[i * 2].calcMinValue(width), m_coords[i * 2 + 1].calcMinValue(height)));
143 int r = min(radius.calcMinValue(width), radius.calcMinValue(height));
144 path.addEllipse(FloatRect(m_coords[0].calcMinValue(width) - r, m_coords[1].calcMinValue(height) - r, 2 * r, 2 * r));
149 int x0 = m_coords[0].calcMinValue(width);
151 int x1 = m_coords[2].calcMinValue(width);
157 path.addRect(FloatRect(0, 0, width, height));
  /external/webkit/WebCore/manual-tests/
applet-finish-parsing-children.html 7 <applet codebase="resources" code="DrawMessage.class" width=534 height=50>
context-click-generated-content.html 4 width: 50px;
drag-enter-alert.html 27 <img id="dragimage" src="resources/drag-image.png" width="32px" height="32px">
focusringcolor-change-on-theme-change.html 1 <input value="Click on me! Focus ring color around this input element should change." style="width:100%">
input-empty-on-focus.html 1 <div><img width="200" height="200" src="resources/200x200.png"></div>
interrupted-compound-transform.html 10 width: 400px;
17 width: 300px;
27 width: 300px;
36 width: 300px;
java-string-object-type.html 20 <APPLET id="applet" code="StringTypeTest.class" codebase="resources" width="0" height="0">
scrollbar-hover-active.html 4 width:17px;
10 width: 17px;
39 min-width:20px;
64 <div style="width:200px; height:200px; overflow-y:scroll; overflow-x:hidden">
svg-link-hover-use.svg 3 <rect id='rect' width='100' height="100" fill='blue' />
svg-repaint-image.svg 66 <circle fill="pink" cx="300" cy="300" stroke="lightblue" stroke-width="40" r="300" />
69 <rect fill="yellow" stroke="#000000" stroke-width="2" x="60" y="60" width="170" height="170" />
71 <image id="targetGroup" x="60" y="60" width="170" height="170" xlink:href="resources/3dolph.gif" />
svg-repaint-path.svg 66 <circle fill="pink" cx="300" cy="300" stroke="lightblue" stroke-width="40" r="300" />
69 <rect id="targetGroup" fill="yellow" stroke="#000000" stroke-width="2" x="60" y="60" width="170" height="170" />
71 <image x="60" y="60" width="170" height="170" xlink:href="resources/3dolph.gif" />
textarea-iframe-navigation.html 14 <iframe style="border: 2px solid black" width="100%" src="textarea-iframe-navigation2.html">
  /external/webkit/WebCore/manual-tests/qt/
qtplugin-scrolling.html 5 width: 100%;
  /external/webkit/WebCore/platform/graphics/
FloatRect.h 75 FloatRect(float x, float y, float width, float height)
76 : m_location(FloatPoint(x, y)), m_size(FloatSize(width, height)) { }
79 static FloatRect narrowPrecision(double x, double y, double width, double height);
89 float width() const { return m_size.width(); } function in class:WebCore::FloatRect
94 void setWidth(float width) { m_size.setWidth(width); }
99 float right() const { return x() + width(); }
120 m_size.setWidth(m_size.width() + dx + dx);
  /external/webkit/WebCore/platform/graphics/android/
ImageAndroid.cpp 95 m_size = IntSize(ref->bitmap().width(), ref->bitmap().height());
125 if (bm.width() != 1 || bm.height() != 1) {
162 SkScalarRound(SkFloatToScalar((src.x() + src.width()))),
171 SkScalarRound(SkFloatToScalar((src.x() + src.width()) * sx)),
204 bitmap.width(), bitmap.height(),
212 float invScaleX = (float)bitmap.width() / image->origWidth();
219 bitmap.width(), bitmap.height(),
235 if (bitmap.width() != image->origWidth() ||
238 bitmap.width(), bitmap.height(),
274 bool imageIsSubSampled = image->origWidth() != origBitmap.width() ||
    [all...]
  /external/webkit/WebCore/platform/graphics/cairo/
ImageBufferCairo.cpp 52 int width = cairo_image_surface_get_width(surface); local
54 cairo_surface_t* newsurface = cairo_image_surface_create(format, width, height);
78 size.width(),
129 for (int x = 0; x < m_size.width(); x++) {
139 cairo_surface_mark_dirty_rectangle (m_data.m_surface, 0, 0, m_size.width(), m_size.height());
147 PassRefPtr<ImageData> result = ImageData::create(rect.width(), rect.height());
151 if (rect.x() < 0 || rect.y() < 0 || (rect.x() + rect.width()) > size.width() || (rect.y() + rect.height()) > size.height())
160 int endx = rect.x() + rect.width();
161 if (endx > size.width())
    [all...]
  /external/webkit/WebCore/platform/graphics/cg/
ImageBufferCG.cpp 58 if (size.width() < 0 || size.height() < 0)
60 bytesPerRow = size.width();
91 RetainPtr<CGContextRef> cgContext(AdoptCF, CGBitmapContextCreate(m_data.m_data, size.width(), size.height(), 8, bytesPerRow,
128 PassRefPtr<ImageData> result = ImageData::create(rect.width(), rect.height());
131 if (rect.x() < 0 || rect.y() < 0 || (rect.x() + rect.width()) > size.width() || (rect.y() + rect.height()) > size.height())
140 int endx = rect.x() + rect.width();
141 if (endx > size.width())
142 endx = size.width();
156 unsigned srcBytesPerRow = 4 * size.width();
    [all...]
  /external/webkit/WebCore/platform/graphics/mac/
GraphicsContextMac.mm 59 void GraphicsContext::drawFocusRing(const Vector<Path>& paths, int width, int offset, const Color& color)
64 int radius = (width - 1) / 2;
78 void GraphicsContext::drawFocusRing(const Vector<IntRect>& rects, int width, int offset, const Color& color)
83 int radius = (width - 1) / 2;
122 void GraphicsContext::drawLineForMisspellingOrBadGrammar(const IntPoint& point, int width, bool grammar)
150 // NOTE: Code here used to shift the underline to the left and increase the width
156 int widthMod = width % patternWidth;
158 width -= widthMod;
175 NSRectFillUsingOperation(NSMakeRect(point.x(), point.y(), width, patternHeight), NSCompositeSourceOver);
  /external/webkit/WebCore/platform/gtk/
FileChooserGtk.cpp 52 String FileChooser::basenameForWidth(const Font& font, int width) const
54 if (width <= 0)
65 return StringTruncator::rightTruncate(multipleFileUploadText(m_filenames.size()), width, font, false);
67 return StringTruncator::centerTruncate(string, width, font, false);
  /external/webkit/WebCore/platform/win/
BitmapInfo.cpp 32 BitmapInfo bitmapInfoForSize(int width, int height)
36 bitmapInfo.bmiHeader.biWidth = width;
58 return bitmapInfoForSize(size.width(), size.height());
63 return bitmapInfoForSize(size.width(), -size.height());
  /external/webkit/WebCore/rendering/style/
StyleBoxData.cpp 42 , width(o.width)
56 return width == o.width &&

Completed in 49 milliseconds

<<11121314151617181920>>