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

<<11121314151617181920>>

  /external/webkit/WebCore/manual-tests/
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/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 &&
  /external/webkit/WebCore/svg/
SVGPatternElement.cpp 97 document()->accessSVGExtensions()->reportError("A negative value for pattern attribute <width> is not allowed");
202 patternBoundaries = FloatRect(attributes.x().valueAsPercentage() * targetRect.width(),
204 attributes.width().valueAsPercentage() * targetRect.width(),
209 attributes.width().value(this),
212 IntSize patternSize(patternBoundaries.width(), patternBoundaries.height());
215 if (patternSize.width() < static_cast<int>(patternBoundaries.width()))
216 patternBoundaries.setWidth(patternSize.width());
231 AffineTransform viewBoxCTM = viewBoxToViewTransform(viewBox(), preserveAspectRatio(), patternBoundaries.width(), patternBoundaries.height());
    [all...]
  /external/webkit/WebCore/svg/graphics/filters/
SVGFEOffset.cpp 80 sourceImageRect.scale(filter->filterResolution().width(), filter->filterResolution().height());
83 m_dx *= sourceImageRect.width();
86 m_dx *= filter->filterResolution().width();
91 m_in->scaledSubRegion().width(),
  /external/webkit/WebKit/android/benchmark/
main.cpp 38 int width = 800; local
48 width = atoi(optarg);
50 LOGD("Rendering page at %dx%d", width, height);
64 android::benchmark(argv[optind], reloadCount, width, height);
  /external/webkit/WebKit/qt/tests/qwebframe/resources/
testiframe.html 12 width: 800px;
20 width: 400px;
29 width: 400px;
37 width: 800px;
  /external/webkit/WebKitTools/CodeCoverage/
gcov.css 46 width:70%;
52 width:5%;
64 width:5%;
72 width:25%;
  /external/wpa_supplicant/wpa_gui/
eventhistory.ui 11 <width>533</width>
86 <width>20</width>
userdatarequest.ui 11 <width>216</width>
82 <width>20</width>
  /external/wpa_supplicant_6/wpa_supplicant/wpa_gui/
eventhistory.ui 11 <width>533</width>
86 <width>20</width>
userdatarequest.ui 11 <width>216</width>
82 <width>20</width>
  /frameworks/base/core/java/android/gesture/
Gesture.java 142 public Path toPath(int width, int height, int edge, int numSample) {
143 return toPath(null, width, height, edge, numSample);
146 public Path toPath(Path path, int width, int height, int edge, int numSample) {
153 path.addPath(strokes.get(i).toPath(width - 2 * edge, height - 2 * edge, numSample));
178 * @param width width of the target bitmap
185 public Bitmap toBitmap(int width, int height, int edge, int numSample, int color) {
186 final Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
204 Path path = strokes.get(i).toPath(width - 2 * edge, height - 2 * edge, numSample);
214 * @param width
    [all...]
  /frameworks/base/core/java/android/service/urlrenderer/
UrlRenderer.java 75 * @param width The desired width of the result.
79 public void render(List<String> urls, int width, int height,
83 mService.render(urls, width, height,
  /frameworks/base/core/java/android/widget/
AbsoluteLayout.java 87 // Check against minimum height and width
96 * Returns a set of layout parameters with a width of
161 * Creates a new set of layout parameters with the specified width,
164 * @param width the width, either {@link #MATCH_PARENT},
171 public LayoutParams(int width, int height, int x, int y) {
172 super(width, height);
213 return output + "Absolute.LayoutParams={width="
214 + sizeToString(width) + ", height=" + sizeToString(height)
  /frameworks/base/core/tests/coretests/src/android/view/
IncludeTest.java 55 assertTrue("Both buttons should have different width",
56 button1.getLayoutParams().width != button2.getLayoutParams().width);
76 assertEquals("Included button should be 23dip x 23dip", 23, lp.width);
  /frameworks/base/docs/html/sdk/api_diff/3/changes/
android.widget.AutoCompleteTextView.html 80 <TABLE summary="Added Methods" WIDTH="100%">
85 <TD VALIGN="TOP" WIDTH="25%">
92 <TD VALIGN="TOP" WIDTH="25%">
99 <TD VALIGN="TOP" WIDTH="25%">
106 <TD VALIGN="TOP" WIDTH="25%">
113 <TD VALIGN="TOP" WIDTH="25%">
120 <TD VALIGN="TOP" WIDTH="25%">
127 <TD VALIGN="TOP" WIDTH="25%">
134 <TD VALIGN="TOP" WIDTH="25%">
141 <TD VALIGN="TOP" WIDTH="25%"
    [all...]

Completed in 2638 milliseconds

<<11121314151617181920>>