HomeSort by relevance Sort by last modified time
    Searched defs:height (Results 101 - 125 of 1547) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/bison/src/
relation.c 65 relation_node height; local
68 INDEX[i] = height = top;
82 if (INDEX[i] == height)
  /external/chromium/chrome/browser/ui/gtk/extensions/
extension_popup_gtk.cc 151 int height = std::max(kMinHeight, std::min(kMaxHeight, new_size.height())); local
153 view->render_view_host()->view()->SetSize(gfx::Size(width, height));
154 gtk_widget_set_size_request(view->native_view(), width, height);
  /external/chromium/chrome/browser/ui/views/download/
download_in_progress_dialog_view.cc 85 const int height = local
88 dialog_dimensions_.set_height(std::max(height,
89 dialog_dimensions_.height()));
  /external/chromium/chrome/browser/ui/views/
keyboard_overlay_delegate.cc 56 const int height = width * kBaseHeight / kBaseWidth; local
57 size->SetSize(width, height);
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
CapsuleCollisionShape.java 47 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) {
60 this.height=height;
68 * @param height
71 public CapsuleCollisionShape(float radius, float height, int axis) {
73 this.height=height
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/texture/
TextureArray.java 39 int height = images.get(0).getHeight(); local
40 Image arrayImage = new Image(images.get(0).getFormat(), width, height,
44 if (img.getHeight() != height || img.getWidth() != width) {
47 "all images must have the same width/height");
  /external/jmonkeyengine/engine/src/core/com/jme3/ui/
Picture.java 55 private float height = 1f; field in class:Picture
60 * By default a picture's width and height are 1
74 * By default a picture's width and height are 1
99 setLocalScale(new Vector3f(width, height, 1f));
103 * Set the height in pixels of the picture, if the height
104 * does not match the texture's height, then the texture will
107 * @param height the height to set.
109 public void setHeight(float height){
    [all...]
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
ConeCollisionShape.java 25 protected float height; field in class:ConeCollisionShape
31 public ConeCollisionShape(float radius, float height, int axis) {
33 this.height = radius;
38 public ConeCollisionShape(float radius, float height) {
40 this.height = radius;
53 capsule.write(height, "height", 0.5f);
61 radius = capsule.readFloat("height", 0.5f);
68 cShape = new ConeShapeX(radius, height);
70 cShape = new ConeShape(radius, height);
    [all...]
  /external/libpng/contrib/gregbook/
readpng.c 71 png_uint_32 width, height; variable
137 png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type,
140 *pHeight = height;
255 if ((image_data = (uch *)malloc(rowbytes*height)) == NULL) {
259 if ((row_pointers = (png_bytepp)malloc(height*sizeof(png_bytep))) == NULL) {
266 Trace((stderr, "readpng_get_image: channels = %d, rowbytes = %ld, height = %ld\n", *pChannels, rowbytes, height));
271 for (i = 0; i < height; ++i)
  /external/proguard/src/proguard/gui/splash/
ImageSprite.java 72 int height = (int)(image.getHeight(null) * scale_y); local
74 graphics.drawImage(image, xt, yt, width, height, null);
  /external/qemu/distrib/sdl-1.2.15/src/video/riscos/
SDL_riscosvideo.h 41 int height; member in struct:SDL_PrivateVideoData
  /external/quake/quake/src/QW/client/
d_copy.s 114 #define height 16+16 define
134 movl height(%esp),%ebp
  /external/quake/quake/src/WinQuake/
d_copy.s 114 #define height 16+16 define
134 movl height(%esp),%ebp
vid_dos.h 27 unsigned height; member in struct:vmode_s
40 int height);
42 int x, int y, int width, int height);
75 qboolean VGA_CheckAdequateMem (int width, int height, int rowbytes,
78 int y, byte *pbitmap, int width, int height);
80 int y, int width, int height);
82 int height, int srcrowbytes, int destrowbytes);
  /external/skia/include/gpu/
GrGlyph.h 50 int height() const { return fBounds.height(); } function in struct:GrGlyph
GrTexture.h 29 * Retrieves the height of the texture.
31 * @return the height in texels
33 int height() const { return fHeight; } function in class:GrTexture
61 * @param height height of rectangle to read in pixels.
70 bool readPixels(int left, int top, int width, int height,
79 * @param height height of rectangle to write in pixels.
85 void writePixels(int left, int top, int width, int height,
126 int height,
    [all...]
  /external/skia/src/animator/
SkDrawBitmap.h 45 int32_t height; member in class:SkDrawBitmap
  /external/webkit/Source/WebCore/platform/graphics/cairo/
ImageCairo.cpp 85 int height = cairo_image_surface_get_height(surface); local
86 m_decodedSize = width * height * 4;
87 m_size = IntSize(width, height);
101 if (dstRect.width() == 0.0f || dstRect.height() == 0.0f ||
102 srcRect.width() == 0.0f || srcRect.height() == 0.0f)
135 float scaleY = srcRect.height() / dstRect.height();
146 cairo_rectangle(shadowContext, 0, 0, dstRect.width(), dstRect.height());
156 cairo_rectangle(cr, 0, 0, dstRect.width(), dstRect.height());
195 int height = cairo_image_surface_get_height(frameSurface) local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/haiku/
ImageHaiku.cpp 135 uint32 height = image->Bounds().IntegerHeight() + 1; local
138 for (uint32 y = 0; y < height && !hasAlpha; y++) {
157 while (currentH < dstRect.y() + dstRect.height()) {
158 BRect bDstRect(currentW, currentH, currentW + width - 1, currentH + height - 1);
160 currentH += height;
  /external/webkit/Source/WebCore/platform/graphics/openvg/
SurfaceOpenVG.cpp 158 int SurfaceOpenVG::height() const function in class:WebCore::SurfaceOpenVG
163 EGLint height; local
164 eglQuerySurface(m_eglDisplay, m_eglSurface, EGL_HEIGHT, &height);
166 return height;
  /external/webkit/Source/WebCore/platform/image-decoders/webp/
WEBPImageDecoder.cpp 89 int width, height; local
91 if (!WebPGetInfo(dataBytes, dataSize, &width, &height))
93 if (!ImageDecoder::isSizeAvailable() && !setSize(width, height))
104 ASSERT(height == size().height());
105 if (!buffer.setSize(width, height))
111 m_rgbOutput.resize(height * stride);
117 newLastVisibleRow = height;
130 ASSERT(newLastVisibleRow <= height);
139 if (m_lastVisibleRow == height)
    [all...]
  /external/webkit/Source/WebCore/platform/win/
BitmapInfo.h 54 unsigned height() const { return abs(bmiHeader.biHeight); } function in struct:WebCore::BitmapInfo
55 IntSize size() const { return IntSize(width(), height()); }
59 unsigned numPixels() const { return paddedWidth() * height(); }
  /external/webkit/Source/WebCore/rendering/svg/
SVGTextFragment.h 38 , height(0)
70 float height; member in struct:WebCore::SVGTextFragment
SVGTextMetrics.h 39 float height() const { return m_height; } function in class:WebCore::SVGTextMetrics
  /external/webkit/Source/WebKit/chromium/public/
WebRect.h 48 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)
64 , height(height)
73 , height(r.height())
82 height = r.height();
    [all...]

Completed in 444 milliseconds

1 2 3 45 6 7 8 91011>>