Searched refs:height (Results 1 - 25 of 5964) sorted by relevance

1234567891011>>

/external/chromium-trace/trace-viewer/src/tracing/tracks/
H A Dslice_track.css7 height: 18px;
H A Dspacing_track.css6 height: 4px;
H A Dobject_instance_track.css7 height: 18px;
H A Dcounter_track.css7 height: 30px;
H A Druler_track.css7 height: 12px;
11 height: 24px;
/external/chromium_org/chrome/browser/resources/chromeos/network_configuration/css/
H A Dconfig.css7 height: 300px;
/external/chromium_org/chrome/browser/resources/options/chromeos/
H A Dbrowser_options.css6 min-height: 64px;
/external/chromium_org/ui/gfx/
H A Dfavicon_size.cc11 void CalculateFaviconTargetSize(int* width, int* height) { argument
12 if (*width > kFaviconSize || *height > kFaviconSize) {
15 static_cast<float>(*height);
16 *height = kFaviconSize;
17 *width = static_cast<int>(aspect_ratio * *height);
20 *height = static_cast<int>(*width / aspect_ratio);
/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
H A DQuad.java42 * side is located at the width/height coordinates (width, height, 0).
49 private float height; field in class:Quad
58 * Create a quad with the given width and height. The quad
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 and height. The quad
73 * @param height The Y extent or width
77 public Quad(float width, float height, boolea argument
89 updateGeometry(float width, float height) argument
93 updateGeometry(float width, float height, boolean flipCoords) argument
[all...]
/external/chromium_org/third_party/skia/src/gpu/
H A DGrRectanizer.cpp30 return fAreaSoFar / ((float)this->width() * this->height());
33 virtual int stripToPurge(int height) const { return -1; }
49 static int HeightToRowIndex(int height) { argument
50 GrAssert(height >= MIN_HEIGHT_POW2);
51 return 32 - SkCLZ(height - 1);
57 bool canAddStrip(int height) const {
58 return fNextStripY + height <= this->height();
68 bool GrRectanizerPow2::addRect(int width, int height, GrIPoint16* loc) { argument
70 (unsigned)height > (unsigne
119 Factory(int width, int height) argument
[all...]
H A DGrRectanizer_fifo.cpp30 return fAreaSoFar / ((float)this->width() * this->height());
33 virtual int stripToPurge(int height) const { return -1; }
49 static int HeightToRowIndex(int height) { argument
50 GrAssert(height >= MIN_HEIGHT_POW2);
51 return 32 - Gr_clz(height - 1);
57 bool canAddStrip(int height) const {
58 return fNextStripY + height <= this->height();
68 bool GrRectanizerFIFO::addRect(int width, int height, GrIPoint16* loc) { argument
70 (unsigned)height > (unsigne
119 Factory(int width, int height) argument
[all...]
H A DGrRectanizer.h22 GrRectanizer(int width, int height) : fWidth(width), fHeight(height) { argument
24 GrAssert(height >= 0);
30 int height() const { return fHeight; } function in class:GrRectanizer
32 virtual bool addRect(int width, int height, GrIPoint16* loc) = 0;
35 // return the Y-coordinate of a strip that should be purged, given height
38 virtual int stripToPurge(int height) const = 0;
44 static GrRectanizer* Factory(int width, int height);
/external/skia/src/gpu/
H A DGrRectanizer.cpp30 return fAreaSoFar / ((float)this->width() * this->height());
33 virtual int stripToPurge(int height) const { return -1; }
49 static int HeightToRowIndex(int height) { argument
50 GrAssert(height >= MIN_HEIGHT_POW2);
51 return 32 - SkCLZ(height - 1);
57 bool canAddStrip(int height) const {
58 return fNextStripY + height <= this->height();
68 bool GrRectanizerPow2::addRect(int width, int height, GrIPoint16* loc) { argument
70 (unsigned)height > (unsigne
119 Factory(int width, int height) argument
[all...]
H A DGrRectanizer_fifo.cpp30 return fAreaSoFar / ((float)this->width() * this->height());
33 virtual int stripToPurge(int height) const { return -1; }
49 static int HeightToRowIndex(int height) { argument
50 GrAssert(height >= MIN_HEIGHT_POW2);
51 return 32 - Gr_clz(height - 1);
57 bool canAddStrip(int height) const {
58 return fNextStripY + height <= this->height();
68 bool GrRectanizerFIFO::addRect(int width, int height, GrIPoint16* loc) { argument
70 (unsigned)height > (unsigne
119 Factory(int width, int height) argument
[all...]
H A DGrRectanizer.h22 GrRectanizer(int width, int height) : fWidth(width), fHeight(height) { argument
24 GrAssert(height >= 0);
30 int height() const { return fHeight; } function in class:GrRectanizer
32 virtual bool addRect(int width, int height, GrIPoint16* loc) = 0;
35 // return the Y-coordinate of a strip that should be purged, given height
38 virtual int stripToPurge(int height) const = 0;
44 static GrRectanizer* Factory(int width, int height);
/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;
24 (void)height;
/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;
24 (void)height;
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebFloatSize.h48 float height; member in struct:WebKit::WebFloatSize
50 bool isEmpty() const { return width <= 0 || height <= 0; }
54 , height(0)
58 WebFloatSize(float width, float height) argument
60 , height(height)
67 , height(s.height())
74 height = s.height();
[all...]
H A DWebSize.h48 int height; member in struct:WebKit::WebSize
50 bool isEmpty() const { return width <= 0 || height <= 0; }
54 , height(0)
58 WebSize(int width, int height) argument
60 , height(height)
67 , height(s.height())
74 height = s.height();
[all...]
H A DWebFloatRect.h49 float height; member in struct:WebKit::WebFloatRect
51 bool isEmpty() const { return width <= 0 || height <= 0; }
57 , height(0)
61 WebFloatRect(float x, float y, float width, float height) argument
65 , height(height)
74 , height(r.height())
83 height = r.height();
[all...]
H A DWebRect.h49 int height; member in struct:WebKit::WebRect
51 bool isEmpty() const { return width <= 0 || height <= 0; }
57 , height(0)
61 WebRect(int x, int y, int width, int height) argument
65 , height(height)
74 , height(r.height())
83 height = r.height();
[all...]
/external/chromium_org/chrome/browser/ui/views/tabs/
H A Ddock_info_views.cc13 return Tab::GetMinimumUnselectedSize().height() - 1;
/external/chromium_org/v8/test/mjsunit/compiler/
H A Dregress-3136962.js29 // value of global variable height was reused even after reassignment.
31 var height = 267; variable
34 function inner() { height = 0; ++count; }
38 for (var i = 0; i < height; ++i) {
40 if (i + j < 0 || i + j >= height) continue;
/external/jmonkeyengine/engine/src/core/com/jme3/font/
H A DRectangle.java41 public final float x, y, width, height; field in class:Rectangle
48 * @param height the height of the rectangle
50 public Rectangle(float x, float y, float width, float height) { argument
54 this.height = height;
/external/v8/test/mjsunit/compiler/
H A Dregress-3136962.js29 // value of global variable height was reused even after reassignment.
31 var height = 267; variable
34 function inner() { height = 0; ++count; }
38 for (var i = 0; i < height; ++i) {
40 if (i + j < 0 || i + j >= height) continue;

Completed in 577 milliseconds

1234567891011>>