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

12 3 4 5 6 7 8 91011>>

  /development/ide/xcode/ports/
skia_mac.cp 77 int x =0, y =0, width =640, height=480; local
78 get_preferred_size(&x, &y, &width, &height);
80 SizeWindow(window, width, height, false);
  /development/ndk/platforms/android-9/include/android/
native_window.h 43 int32_t height; member in struct:ANativeWindow_Buffer
77 * Return the current height in pixels of the window surface. Returns a
91 * The width and height control the number of pixels in the buffers, not the
99 int32_t ANativeWindow_setBuffersGeometry(ANativeWindow* window, int32_t width, int32_t height, int32_t format);
  /development/samples/BrowserPlugin/jni/animation/
AnimationThread.cpp 63 SkBitmap* AnimationThread::constructBitmap(int width, int height) {
65 bitmap->setConfig(SkBitmap::kARGB_8888_Config, width, height);
95 int width, height; local
96 getDimensions(width, height);
98 if (m_bitmap->width() != width || m_bitmap->height() != height) {
101 m_bitmap = constructBitmap(width, height);
106 m_dy = height * .007f;
112 const float OH = height * .125f;
119 bounce(&m_y, &m_dy, height - OH)
    [all...]
  /development/tools/emulator/system/camera/fake-pipeline2/
Base.h 38 uint32_t width, height; member in struct:android::StreamBuffer
48 uint32_t width, height; member in struct:android::Stream
55 uint32_t width, height; member in struct:android::ReprocessStream
  /external/chromium/chrome/browser/ui/views/extensions/
extension_uninstall_dialog_view.cc 40 gfx::Size size(icon->width(), icon->height());
41 if (size.width() > kIconSize || size.height() > kIconSize)
101 int height = views::kPanelVertMargin * 2; variable
102 height += heading_->GetHeightForWidth(kRightColumnWidth);
105 std::max(height, kIconSize + views::kPanelVertMargin * 2));
114 if (heading_->height() <= kIconSize) {
120 heading_->SetY(y + (kIconSize - heading_->height()) / 2);
123 y + (heading_->height() - kIconSize) / 2,
  /external/chromium/chrome/browser/ui/webui/
html_dialog_ui.h 90 // Height of the dialog.
91 int height; member in struct:HtmlDialogUI::HtmlDialogParams
  /external/chromium/webkit/glue/
webvideoframe_impl.cc 68 unsigned WebVideoFrameImpl::height() const { function in class:webkit_glue::WebVideoFrameImpl
70 return video_frame_->height();
  /external/clang/test/Sema/
init-struct-qualified.c 4 typedef struct _NSSize { CGFloat width; CGFloat height; } NSSize; member in struct:_NSSize
  /external/freetype/src/raster/
ftrend1.c 107 FT_UInt width, height, pitch; local
178 height = (FT_UInt)( ( cbox.yMax - cbox.yMin ) >> 6 );
180 if ( width > FT_USHORT_MAX || height > FT_USHORT_MAX )
211 bitmap->rows = height;
214 if ( FT_ALLOC_MULT( bitmap->buffer, pitch, height ) )
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
ConeCollisionShape.java 23 protected float height; field in class:ConeCollisionShape
29 public ConeCollisionShape(float radius, float height, int axis) {
31 this.height = radius;
36 public ConeCollisionShape(float radius, float height) {
38 this.height = radius;
51 capsule.write(height, "height", 0.5f);
59 radius = capsule.readFloat("height", 0.5f);
65 objectId = createShape(axis, radius, height);
68 // objectId = new ConeShapeX(radius, height);
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/font/
Rectangle.java 41 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) {
54 this.height = height;
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
Quad.java 42 * 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){
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, boolean flipCoords)
    [all...]
  /external/jmonkeyengine/engine/src/desktop/com/jme3/util/
Screenshots.java 22 // int height = wr.getHeight();
25 // for (int y = 0; y < height / 2; y++){
28 // int outPtr = ((height-y-1) * width + x);
48 int height = wr.getHeight(); local
51 for (int y = 0; y < height / 2; y++){
54 int outPtr = ((height-y-1) * width + x) * 4;
  /external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
RenderImageJme.java 47 private int height; field in class:RenderImageJme
62 height = image.getHeight();
72 height = image.getHeight();
84 return height;
  /external/libpng/contrib/gregbook/
readppm.c 67 ulg width, height; variable
109 sscanf(ppmline, "%lu %lu", &width, &height);
122 *pHeight = height;
157 if ((image_data = (uch *)malloc(rowbytes*height)) == NULL) {
161 Trace((stderr, "readpng_get_image: rowbytes = %ld, height = %ld\n", rowbytes, height));
166 fread(image_data, 1L, rowbytes*height, saved_infile);
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/
VideoQuality.java 22 int height; field in class:VideoQuality
  /external/qemu/distrib/sdl-1.2.15/src/video/xbios/
SDL_xbios_milan.c 39 Uint16 width, height; member in struct:__anon12274
69 modeinfo.height = inf->scrHeight;
93 modeinfo.height = mode_list[i].height;
  /external/replicaisland/src/com/replica/replicaisland/
Texture.java 29 public int height; field in class:Texture
41 height = 0;
  /external/skia/include/core/
SkPicture.h 30 @param height the height of the virtual device the picture records.
60 @param height the base width for the picture, as if the recording
61 canvas' bitmap had this height.
65 SkCanvas* beginRecording(int width, int height, uint32_t recordFlags = 0);
91 /** Return the height of the picture's recording canvas. This
94 @return the height of the picture's recording canvas
96 int height() const { return fHeight; } function in class:SkPicture
117 SkAutoPictureRecord(SkPicture* pict, int width, int height,
120 fCanvas = pict->beginRecording(width, height, recordingFlags)
    [all...]
  /external/skia/include/gpu/
GrRect.h 24 int height() const { return fBottom - fTop; } function in struct:GrIRect16
25 int area() const { return this->width() * this->height(); }
  /external/skia/include/images/
SkPageFlipper.h 27 SkPageFlipper(int width, int height);
30 int height() const { return fHeight; } function in class:SkPageFlipper
32 void resize(int width, int height);
  /external/skia/src/gpu/
GrRectanizer.h 26 GrRectanizer(int width, int height) : fWidth(width), fHeight(height) {
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/skia/src/images/
SkMovie.cpp 41 int SkMovie::height() function in class:SkMovie
  /external/skia/src/svg/
SkSVGSVG.cpp 17 SVG_ATTRIBUTE(height),
37 SkScalar height, width; local
39 const char* hSuffix = SkParse::FindScalar(f_height.c_str(), &height);
41 height = SkScalarMulDiv(height, SK_Scalar1 * 72, SK_Scalar1 * 96);
48 box.fTop = SkScalarDiv(viewBox[1], height);
50 box.fBottom = SkScalarDiv(viewBox[3], height);
  /external/skia/src/views/
SkProgressBarView.cpp 56 SkScalar height; local
58 if (evt.findScalar("y", &height))
59 this->setHeight(height);
81 evt.setScalar("dimY", this->height());

Completed in 924 milliseconds

12 3 4 5 6 7 8 91011>>