/external/chromium-trace/trace-viewer/src/tracing/tracks/ |
H A D | slice_track.css | 7 height: 18px;
|
H A D | spacing_track.css | 6 height: 4px;
|
H A D | object_instance_track.css | 7 height: 18px;
|
H A D | counter_track.css | 7 height: 30px;
|
H A D | ruler_track.css | 7 height: 12px; 11 height: 24px;
|
/external/chromium_org/third_party/skia/src/gpu/ |
H A D | GrRectanizer_pow2.cpp | 11 bool GrRectanizerPow2::addRect(int width, int height, SkIPoint16* loc) { argument 13 (unsigned)height > (unsigned)this->height()) { 17 int32_t area = width * height; // computed here since height will be modified 19 height = GrNextPow2(height); 20 if (height < kMIN_HEIGHT_POW2) { 21 height = kMIN_HEIGHT_POW2; 24 Row* row = &fRows[HeightToRowIndex(height)]; [all...] |
H A D | GrRectanizer.h | 17 GrRectanizer(int width, int height) : fWidth(width), fHeight(height) { argument 19 SkASSERT(height >= 0); 27 int height() const { return fHeight; } function in class:GrRectanizer 31 virtual bool addRect(int width, int height, SkIPoint16* loc) = 0; 37 static GrRectanizer* Factory(int width, int height);
|
/external/skia/src/gpu/ |
H A D | GrRectanizer_pow2.cpp | 11 bool GrRectanizerPow2::addRect(int width, int height, SkIPoint16* loc) { argument 13 (unsigned)height > (unsigned)this->height()) { 17 int32_t area = width * height; // computed here since height will be modified 19 height = GrNextPow2(height); 20 if (height < kMIN_HEIGHT_POW2) { 21 height = kMIN_HEIGHT_POW2; 24 Row* row = &fRows[HeightToRowIndex(height)]; [all...] |
H A D | GrRectanizer.h | 17 GrRectanizer(int width, int height) : fWidth(width), fHeight(height) { argument 19 SkASSERT(height >= 0); 27 int height() const { return fHeight; } function in class:GrRectanizer 31 virtual bool addRect(int width, int height, SkIPoint16* loc) = 0; 37 static GrRectanizer* Factory(int width, int height);
|
/external/chromium_org/chrome/browser/resources/chromeos/network_configuration/css/ |
H A D | config.css | 7 height: 300px;
|
/external/chromium_org/chrome/browser/resources/options/chromeos/ |
H A D | browser_options.css | 6 min-height: 64px;
|
/external/chromium_org/ui/gfx/ |
H A D | favicon_size.cc | 11 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/deqp/framework/common/ |
H A D | tcuSurface.cpp | 34 Surface::Surface(int width, int height) argument 36 , m_height (height) 37 , m_pixels (width*height) 50 * \param height New height. 52 void Surface::setSize (int width, int height) argument 55 m_height = height; 56 m_pixels.resize(width*height);
|
/external/glide/library/src/main/java/com/bumptech/glide/request/target/ |
H A D | SimpleTarget.java | 5 * caller to specify an exact width/height. 10 private final int height; field in class:SimpleTarget 12 public SimpleTarget(int width, int height) { argument 14 this.height = height; 19 cb.onSizeReady(width, height);
|
/external/chromium_org/chrome/test/chromedriver/chrome/ |
H A D | device_metrics.cc | 7 DeviceMetrics::DeviceMetrics(int width, int height, double device_scale_factor) argument 9 height(height),
|
/external/chromium_org/third_party/WebKit/public/platform/ |
H A D | WebFloatSize.h | 50 float height; member in struct:blink::WebFloatSize 52 bool isEmpty() const { return width <= 0 || height <= 0; } 56 , height(0) 60 WebFloatSize(float width, float height) argument 62 , height(height) 69 , height(s.height()) 76 height = s.height(); [all...] |
H A D | WebSize.h | 49 int height; member in struct:blink::WebSize 51 bool isEmpty() const { return width <= 0 || height <= 0; } 55 , height(0) 59 WebSize(int width, int height) argument 61 , height(height) 68 , height(s.height()) 75 height = s.height(); [all...] |
H A D | WebFloatRect.h | 50 float height; member in struct:blink::WebFloatRect 52 bool isEmpty() const { return width <= 0 || height <= 0; } 58 , height(0) 62 WebFloatRect(float x, float y, float width, float height) argument 66 , height(height) 75 , height(r.height()) 84 height = r.height(); [all...] |
H A D | WebRect.h | 50 int height; member in struct:blink::WebRect 52 bool isEmpty() const { return width <= 0 || height <= 0; } 58 , height(0) 62 WebRect(int x, int y, int width, int height) argument 66 , height(height) 75 , height(r.height()) 84 height = r.height(); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
H A D | DOMRect.cpp | 10 DOMRect* DOMRect::create(double x, double y, double width, double height) argument 12 return new DOMRect(x, y, width, height); 15 DOMRect::DOMRect(double x, double y, double width, double height) argument 16 : DOMRectReadOnly(x, y, width, height)
|
H A D | DOMRectReadOnly.cpp | 10 DOMRectReadOnly* DOMRectReadOnly::create(double x, double y, double width, double height) argument 12 return new DOMRectReadOnly(x, y, width, height); 15 DOMRectReadOnly::DOMRectReadOnly(double x, double y, double width, double height) argument 19 , m_height(height)
|
/external/chromium_org/third_party/android_opengl/etc1/ |
H A D | etc1.h | 25 unsigned int etc1_get_encoded_data_size(unsigned int width, unsigned int height); 34 bool etc1_encode_image(const unsigned char* pIn, unsigned int width, unsigned int height, 47 unsigned int width, unsigned int height, 56 void etc1_pkm_format_header(unsigned char* pHeader, unsigned int width, unsigned int height); 66 // Read the image height from a PKM header
|
/external/chromium_org/v8/test/mjsunit/compiler/ |
H A D | regress-3136962.js | 29 // 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/chromium_org/third_party/skia/src/core/ |
H A D | SkBBHFactory.cpp | 13 SkBBoxHierarchy* SkRTreeFactory::operator()(int width, int height) const { 20 SkIntToScalar(height)); 27 SkBBoxHierarchy* SkTileGridFactory::operator()(int width, int height) const { 29 SkASSERT(fInfo.fMargin.height() >= 0); 35 int yTileCount = (height + fInfo.fTileInterval.height() - 1) / fInfo.fTileInterval.height();
|
/external/skia/src/core/ |
H A D | SkBBHFactory.cpp | 15 SkBBoxHierarchy* SkQuadTreeFactory::operator()(int width, int height) const { 16 return SkNEW_ARGS(SkQuadTree, (SkIRect::MakeWH(width, height))); 19 SkBBoxHierarchy* SkRTreeFactory::operator()(int width, int height) const { 26 SkIntToScalar(height)); 33 SkBBoxHierarchy* SkTileGridFactory::operator()(int width, int height) const { 35 SkASSERT(fInfo.fMargin.height() >= 0); 41 int yTileCount = (height + fInfo.fTileInterval.height() - 1) / fInfo.fTileInterval.height();
|