Searched refs:width (Results 1 - 25 of 6535) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/resources/options/
H A Dalert_overlay.css6 width: 400px;
H A Dspelling_confirm_overlay.css7 width: 500px;
H A Ddo_not_track_confirm_overlay.css6 width: 500px;
H A Dfactory_reset_overlay.css6 max-width: 550px;
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DTextMetrics.idl27 readonly attribute float width;
/external/chromium_org/ui/gfx/
H A Dfavicon_size.cc11 void CalculateFaviconTargetSize(int* width, int* height) { argument
12 if (*width > kFaviconSize || *height > kFaviconSize) {
14 float aspect_ratio = static_cast<float>(*width) /
17 *width = static_cast<int>(aspect_ratio * *height);
18 if (*width > kFaviconSize) {
19 *width = kFaviconSize;
20 *height = static_cast<int>(*width / aspect_ratio);
/external/chromium_org/chrome/browser/resources/chromeos/network_configuration/css/
H A Dconfig.css8 width: 500px;
/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
H A DQuad.java42 * side is located at the width/height coordinates (width, height, 0).
48 private float width; field in class:Quad
58 * Create a quad with the given width and height. The quad
61 * @param width The X extent or width
62 * @param height The Y extent or width
64 public Quad(float width, float height){ argument
65 updateGeometry(width, height);
69 * Create a quad with the given width an
77 Quad(float width, float height, boolean flipCoords) argument
89 updateGeometry(float width, float height) argument
93 updateGeometry(float width, float height, boolean flipCoords) argument
[all...]
/external/chromium_org/third_party/libwebp/utils/
H A Dquant_levels_dec.c20 int DequantizeLevels(uint8_t* const data, int width, int height) { argument
21 if (data == NULL || width <= 0 || height <= 0) return 0;
23 (void)width;
/external/webp/src/utils/
H A Dquant_levels_dec.c20 int DequantizeLevels(uint8_t* const data, int width, int height) { argument
21 if (data == NULL || width <= 0 || height <= 0) return 0;
23 (void)width;
/external/chromium_org/chrome/common/extensions/docs/examples/api/preferences/allowThirdPartyCookies/
H A Dpopup.css8 width: 300px;
/external/chromium_org/chrome/common/extensions/docs/examples/api/preferences/enableReferrer/
H A Dpopup.css8 width: 300px;
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebFloatSize.h47 float width; member in struct:WebKit::WebFloatSize
50 bool isEmpty() const { return width <= 0 || height <= 0; }
53 : width(0)
58 WebFloatSize(float width, float height) argument
59 : width(width)
66 : width(s.width())
73 width = s.width();
[all...]
H A DWebSize.h47 int width; member in struct:WebKit::WebSize
50 bool isEmpty() const { return width <= 0 || height <= 0; }
53 : width(0)
58 WebSize(int width, int height) argument
59 : width(width)
66 : width(s.width())
73 width = s.width();
[all...]
H A DWebFloatRect.h48 float width; member in struct:WebKit::WebFloatRect
51 bool isEmpty() const { return width <= 0 || height <= 0; }
56 , width(0)
61 WebFloatRect(float x, float y, float width, float height) argument
64 , width(width)
73 , width(r.width())
82 width = r.width();
[all...]
H A DWebRect.h48 int width; member in struct:WebKit::WebRect
51 bool isEmpty() const { return width <= 0 || height <= 0; }
56 , width(0)
61 WebRect(int x, int y, int width, int height) argument
64 , width(width)
73 , width(r.width())
82 width = r.width();
[all...]
/external/chromium_org/chrome/browser/resources/
H A Dabout_version_android.css7 width: 90%;
11 width: auto;
/external/jmonkeyengine/engine/src/core/com/jme3/font/
H A DRectangle.java41 public final float x, y, width, height; field in class:Rectangle
47 * @param width the width of the rectangle
50 public Rectangle(float x, float y, float width, float height) { argument
53 this.width = width;
/external/chromium_org/chrome/browser/resources/print_preview/data/
H A Dsize.js10 * @param {number} width Width of the size.
14 function Size(width, height) {
20 this.width_ = width;
32 get width() {
/external/chromium_org/chrome/browser/ui/panels/
H A Ddocked_panel_browsertest.cc24 DCHECK(primary_display_area.width() == 800);
46 EXPECT_EQ(panel1->GetBounds().width(), panel1->GetRestoredBounds().width());
47 EXPECT_EQ(panel2->GetBounds().width(), panel2->GetRestoredBounds().width());
48 EXPECT_EQ(panel3->GetBounds().width(), panel3->GetRestoredBounds().width());
60 // The active panel should be at full width.
61 EXPECT_EQ(panel7->GetBounds().width(), panel7->GetRestoredBounds().width());
[all...]
/external/chromium_org/third_party/skia/src/gpu/
H A DGrRectanizer.h22 GrRectanizer(int width, int height) : fWidth(width), fHeight(height) { argument
23 GrAssert(width >= 0);
29 int width() const { return fWidth; } function in class:GrRectanizer
32 virtual bool addRect(int width, int height, GrIPoint16* loc) = 0;
44 static GrRectanizer* Factory(int width, int height);
/external/skia/src/gpu/
H A DGrRectanizer.h22 GrRectanizer(int width, int height) : fWidth(width), fHeight(height) { argument
23 GrAssert(width >= 0);
29 int width() const { return fWidth; } function in class:GrRectanizer
32 virtual bool addRect(int width, int height, GrIPoint16* loc) = 0;
44 static GrRectanizer* Factory(int width, int height);
/external/zxing/qr_scanner/src/com/google/zxing/client/android/
H A DPlanarYUVLuminanceSource.java42 int width, int height, boolean reverseHorizontal) {
43 super(width, height);
45 if (left + width > dataWidth || top + height > dataHeight) {
55 reverseHorizontal(width, height);
64 int width = getWidth();
65 if (row == null || row.length < width) {
66 row = new byte[width];
69 System.arraycopy(yuvData, offset, row, 0, width);
75 int width = getWidth();
80 if (width
41 PlanarYUVLuminanceSource(byte[] yuvData, int dataWidth, int dataHeight, int left, int top, int width, int height, boolean reverseHorizontal) argument
130 reverseHorizontal(int width, int height) argument
[all...]
/external/chromium/chrome/browser/resources/options/
H A Dcertificate_manager.css8 width: 100%;
/external/chromium_org/cc/test/
H A Dpixel_test_software_output_device.cc10 gfx::Size expanded_size(size.width() + surface_expansion_size_.width(),

Completed in 1330 milliseconds

1234567891011>>