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

1234567891011>>

/external/chromium-trace/trace-viewer/src/tracks/
H A Dtimeline_slice_track.css6 height: 18px;
H A Dtimeline_counter_track.css6 height: 30px;
H A Dtimeline_viewport_track.css6 height: 12px;
10 height: 24px;
/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/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 - Gr_clz(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.h26 GrRectanizer(int width, int height) : fWidth(width), fHeight(height) { argument
28 GrAssert(height >= 0);
34 int height() const { return fHeight; } function in class:GrRectanizer
36 virtual bool addRect(int width, int height, GrIPoint16* loc) = 0;
39 // return the Y-coordinate of a strip that should be purged, given height
42 virtual int stripToPurge(int height) const = 0;
48 static GrRectanizer* Factory(int width, int height);
/external/webkit/Source/WebKit/chromium/public/
H A DWebSize.h46 int height; member in struct:WebKit::WebSize
48 bool isEmpty() const { return width <= 0 || height <= 0; }
52 , height(0)
56 WebSize(int width, int height) argument
58 , height(height)
65 , height(s.height())
72 height = s.height();
[all...]
H A DWebRect.h48 int height; member in struct:WebKit::WebRect
50 bool isEmpty() const { return width <= 0 || height <= 0; }
56 , height(0)
60 WebRect(int x, int y, int width, int height) argument
64 , height(height)
73 , height(r.height())
82 height = r.height();
[all...]
H A DWebFloatRect.h46 float height; member in struct:WebKit::WebFloatRect
48 bool isEmpty() const { return width <= 0 || height <= 0; }
54 , height(0.0f)
58 WebFloatRect(float x, float y, float width, float height) argument
62 , height(height)
71 , height(r.height())
80 height = r.height();
[all...]
/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;
/external/chromium/chrome/browser/resources/options/
H A Dcertificate_manager.css13 height: 300px;
/external/libvpx/vp8/common/arm/
H A Dbilinearfilter_arm.h20 unsigned int height,
30 unsigned int height,
/external/replicaisland/src/com/replica/replicaisland/
H A DTexture.java29 public int height; field in class:Texture
41 height = 0;
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DIntSizeQt.cpp38 , m_height(r.height())
44 return QSize(width(), height());
H A DFloatRectQt.cpp38 , r.height())
44 return QRectF(x(), y(), width(), height());
55 if (height() < 0) {
56 normalizedRect.setY(y() + height());
57 normalizedRect.setHeight(-height());
/external/jmonkeyengine/engine/src/bullet-native/
H A Dcom_jme3_bullet_collision_shapes_CapsuleCollisionShape.cpp49 (JNIEnv * env, jobject object, jint axis, jfloat radius, jfloat height) {
54 shape = new btCapsuleShapeX(radius, height);
57 shape = new btCapsuleShape(radius, height);
60 shape = new btCapsuleShapeZ(radius, height);
48 Java_com_jme3_bullet_collision_shapes_CapsuleCollisionShape_createShape(JNIEnv * env, jobject object, jint axis, jfloat radius, jfloat height) argument
H A Dcom_jme3_bullet_collision_shapes_ConeCollisionShape.cpp49 (JNIEnv * env, jobject object, jint axis, jfloat radius, jfloat height) {
54 shape = new btConeShapeX(radius, height);
57 shape = new btConeShape(radius, height);
60 shape = new btConeShapeZ(radius, height);
48 Java_com_jme3_bullet_collision_shapes_ConeCollisionShape_createShape(JNIEnv * env, jobject object, jint axis, jfloat radius, jfloat height) argument
/external/webkit/Source/WebCore/platform/graphics/
H A DFloatSize.cpp36 FloatSize::FloatSize(const IntSize& size) : m_width(size.width()), m_height(size.height())
45 FloatSize FloatSize::narrowPrecision(double width, double height) argument
47 return FloatSize(narrowPrecisionToFloat(width), narrowPrecisionToFloat(height));
/external/webkit/Source/WebCore/platform/
H A DLengthSize.h34 LengthSize(Length width, Length height) argument
36 , m_height(height)
48 void setHeight(Length height) { m_height = height; } argument
49 Length height() const { return m_height; } function in struct:WebCore::LengthSize
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
H A DCapsuleCollisionShape.java49 protected float radius,height; field in class:CapsuleCollisionShape
56 * creates a new CapsuleCollisionShape with the given radius and height
58 * @param height the height of the capsule
60 public CapsuleCollisionShape(float radius, float height) { argument
62 this.height=height;
64 CapsuleShape capShape=new CapsuleShape(radius,height);
71 * @param height
74 public CapsuleCollisionShape(float radius, float height, in argument
[all...]
/external/webkit/Source/WebCore/rendering/style/
H A DStyleGeneratedImage.cpp45 int height = fixedSize.height() * multiplier; local
47 // Don't let images that have a width/height >= 1 shrink below 1 when zoomed.
51 if (fixedSize.height() > 0)
52 height = max(1, height);
54 return IntSize(width, height);
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
H A DCapsuleCollisionShape.java47 protected float radius,height; field in class:CapsuleCollisionShape
54 * creates a new CapsuleCollisionShape with the given radius and height
56 * @param height the height of the capsule
58 public CapsuleCollisionShape(float radius, float height) { argument
60 this.height=height;
68 * @param height
71 public CapsuleCollisionShape(float radius, float height, int axis) { argument
73 this.height
127 createShape(int axis, float radius, float height) argument
[all...]
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/materials/
H A DIAlphaMask.java12 * @param height
13 * the height of the image
15 void setImageSize(int width, int height); argument

Completed in 908 milliseconds

1234567891011>>