Searched refs:width (Results 1 - 25 of 6848) 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/css/
H A DviewportAndroid.css34 min-width: 980px;
H A Dxhtmlmp.css33 width: auto;
/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.h49 float width; member in struct:blink::WebFloatSize
52 bool isEmpty() const { return width <= 0 || height <= 0; }
55 : width(0)
60 WebFloatSize(float width, float height) argument
61 : width(width)
68 : width(s.width())
75 width = s.width();
[all...]
H A DWebSize.h48 int width; member in struct:blink::WebSize
51 bool isEmpty() const { return width <= 0 || height <= 0; }
54 : width(0)
59 WebSize(int width, int height) argument
60 : width(width)
67 : width(s.width())
74 width = s.width();
[all...]
H A DWebFloatRect.h49 float width; member in struct:blink::WebFloatRect
52 bool isEmpty() const { return width <= 0 || height <= 0; }
57 , width(0)
62 WebFloatRect(float x, float y, float width, float height) argument
65 , width(width)
74 , width(r.width())
83 width = r.width();
[all...]
H A DWebRect.h49 int width; member in struct:blink::WebRect
52 bool isEmpty() const { return width <= 0 || height <= 0; }
57 , width(0)
62 WebRect(int x, int y, int width, int height) argument
65 , width(width)
74 , width(r.width())
83 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/skia/tests/
H A DBitmapTest.cpp19 for (int width = 0; width < 2; ++width) {
22 bool setConf = bm.setConfig(conf, width, height);
27 REPORTER_ASSERT(reporter, SkToBool(width & height) != bm.empty());
/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 SkASSERT(width >= 0);
31 int width() const { return fWidth; } function in class:GrRectanizer
34 virtual bool addRect(int width, int height, GrIPoint16* loc) = 0;
46 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 SkASSERT(width >= 0);
31 int width() const { return fWidth; } function in class:GrRectanizer
34 virtual bool addRect(int width, int height, GrIPoint16* loc) = 0;
46 static GrRectanizer* Factory(int width, int height);

Completed in 652 milliseconds

1234567891011>>