HomeSort by relevance Sort by last modified time
    Searched refs:height (Results 1001 - 1025 of 9458) sorted by null

<<41424344454647484950>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
ZoomHeight.py 1 # Sample extension: zoom a window to maximum height
12 ('_Zoom Height', '<<zoom-height>>'),
29 width, height, x, y = map(int, m.groups())
47 if height >= newheight:
  /frameworks/base/core/java/android/widget/
PopupWindow.java 224 p.width, p.height, mAnchoredGravity));
341 * @param height the popup's height
343 public PopupWindow(int width, int height) {
344 this(null, width, height);
357 * @param height the popup's height
359 public PopupWindow(View contentView, int width, int height) {
360 this(contentView, width, height, false);
372 * @param height the popup's heigh
1324 final int height; local
1347 final int height; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_format.h 49 * Formats with util_format_block::width == util_format_block::height == 1
89 /** Block height in pixels */
90 unsigned height; member in struct:util_format_block
209 unsigned width, unsigned height);
220 unsigned width, unsigned height);
241 unsigned width, unsigned height);
252 unsigned width, unsigned height);
273 unsigned width, unsigned height);
284 unsigned width, unsigned height);
295 unsigned width, unsigned height);
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
vgu.c 130 VGfloat width, VGfloat height)
148 if (width <= 0 || height <= 0) {
155 coords[3] = height;
166 VGfloat height,
191 if (width <= 0 || height <= 0) {
202 c[8] = height - arcHeight;
212 c[20] = -(height - arcHeight);
225 VGfloat height)
242 if (width <= 0 || height <= 0) {
248 coords[2] = width/2; coords[3] = height/2; coords[4] = 0
    [all...]
  /frameworks/base/core/java/android/view/
SurfaceControl.java 42 Rect sourceCrop, int width, int height, int minLayer, int maxLayer,
45 Rect sourceCrop, int width, int height, int minLayer, int maxLayer,
80 private static native void nativeSetDisplaySize(IBinder displayToken, int width, int height);
276 * @param h The surface initial height.
546 public int height; field in class:SurfaceControl.PhysicalDisplayInfo
570 && height == other.height
587 height = other.height;
600 return "PhysicalDisplayInfo{" + width + " x " + height + ", " + refreshRate + " fps,
    [all...]
  /frameworks/base/media/jni/
android_media_MediaMetadataRetriever.cpp 193 static void rotate0(T* dst, const T* src, size_t width, size_t height)
195 memcpy(dst, src, width * height * sizeof(T));
199 static void rotate90(T* dst, const T* src, size_t width, size_t height)
201 for (size_t i = 0; i < height; ++i) {
203 dst[j * height + height - 1 - i] = src[i * width + j];
209 static void rotate180(T* dst, const T* src, size_t width, size_t height)
211 for (size_t i = 0; i < height; ++i) {
213 dst[(height - 1 - i) * width + width - 1 - j] = src[i * width + j];
219 static void rotate270(T* dst, const T* src, size_t width, size_t height)
277 uint32_t width, height; local
    [all...]
  /cts/tests/tests/uirendering/src/android/uirendering/cts/bitmapverifiers/
BitmapVerifier.java 33 public abstract boolean verify(int[] bitmap, int offset, int stride, int width, int height);
  /development/ndk/platforms/android-14/samples/native-media/src/com/example/nativemedia/
NativeMedia.java 76 public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) {
77 Log.v(TAG, "surfaceChanged format=" + format + ", width=" + width + ", height="
78 + height);
98 public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) {
99 Log.v(TAG, "surfaceChanged format=" + format + ", width=" + width + ", height="
100 + height);
122 int height = mediaPlayer.getVideoHeight();
123 Log.v(TAG, "onPrepared width=" + width + ", height=" + height);
124 if (width != 0 && height != 0 && mJavaMediaPlayerVideoSink != null)
    [all...]
  /development/samples/devbytes/animation/ActivityAnimations/src/com/example/android/activityanim/
BitmapUtils.java 86 * dimension (width or height).
90 int height = original.getHeight(); local
92 if (width >= height) {
95 scaledHeight = (int) (scaleFactor * height);
97 float scaleFactor = (float) maxDimension / height;
  /development/tools/yuv420sp2rgb/
cmdline.c 14 {"height", required_argument, 0, 'h'},
27 "image height in pixels",
40 "\t%s infile --height <height> --width <width> --output <outfile> -t <ppm|grb|argb> [ --gray ] [ --rotate <degrees> ] [ --verbose ]\n"
59 int *height,
68 ASSERT(height); *height = -1;
124 SET_INT_OPTION(height);
  /device/generic/goldfish/camera/
EmulatedQemuCameraDevice.h 71 status_t startDevice(int width, int height, uint32_t pix_fmt);
  /external/ImageMagick/MagickCore/
decorate.h 31 height; member in struct:_FrameInfo
  /external/autotest/client/deps/glbench/src/
trianglesetuptest.cc 45 GLint height = 128; local
50 width, height);
70 count_ = CreateMesh(&indices, &index_buffer_size, width, height, 0);
87 count_ = CreateMesh(&indices, &index_buffer_size, width, height,
  /external/chromium-trace/catapult/telemetry/telemetry/util/
image_util.py 36 def Height(image):
37 """Height of the image."""
38 return impl.Height(image)
58 def FromRGBPixels(width, height, pixels, bpp=3):
64 width, height: int, the width and height of the image.
67 return impl.FromRGBPixels(width, height, pixels, bpp)
87 is about 2-3x slower for equal images, but can be image height times faster
106 (top, left, width, height), match_count"""
109 def Crop(image, left, top, width, height)
    [all...]
  /external/deqp/framework/common/
tcuRenderTarget.hpp 39 RenderTarget (int width, int height, const PixelFormat& pixelFormat, int depthBits, int stencilBits, int numSamples);
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/file/
FileDecoder.java 14 public Resource<File> decode(File source, int width, int height) {
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/
AppletFrame.java 67 * @param height height of the Frame
69 public AppletFrame(String name, Applet applet, int width, int height) {
74 setSize(width, height);
90 public void appletResize(int width, int height) {
91 setSize(width, height);
  /external/libdrm/include/drm/
drm_sarea.h 63 unsigned int height; member in struct:drm_sarea_frame
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/collision/broadphase/
DynamicTreeNode.java 41 protected int height; field in class:DynamicTreeNode
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/utils/
Drawable.java 27 public void draw (Batch batch, float x, float y, float width, float height);
TextureRegionDrawable.java 44 public void draw (Batch batch, float x, float y, float width, float height) {
45 batch.draw(region, x, y, width, height);
48 public void draw (Batch batch, float x, float y, float originX, float originY, float width, float height, float scaleX,
50 batch.draw(region, x, y, originX, originY, width, height, scaleX, scaleY, rotation);
  /external/mesa3d/include/GL/internal/
sarea.h 75 unsigned int height; member in struct:_XF86DRISAREAFrame
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_median_filter.h 58 unsigned width, unsigned height, unsigned size,
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_transfer.h 14 uint32_t height; member in struct:nv50_m2mf_rect
  /external/mesa3d/src/gallium/state_trackers/va/
va_surface.c 52 vlVaCreateSurfaces(VADriverContextP ctx, int width, int height, int format,
62 if (!(width && height))
75 va_surface[n].height = height;

Completed in 1589 milliseconds

<<41424344454647484950>>