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

1 2 3 45 6 7 8 91011>>

  /packages/apps/Mms/src/com/android/mms/ui/
AdaptableSlideViewInterface.java 27 void setTextRegion(int left, int top, int width, int height);
31 void setImageRegion(int left, int top, int width, int height);
35 void setVideoRegion(int left, int top, int width, int height);
43 void onSizeChanged(int width, int height);
  /sdk/layoutopt/libs/uix/src/resources/rules/
IncorrectHeightInScrollView.rule 7 // - The node has a height set to match_parent
  /external/quake/quake/src/WinQuake/
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/src/svg/
SkSVGSVG.cpp 25 SVG_ATTRIBUTE(height),
43 SkScalar height, width; local
45 const char* hSuffix = SkParse::FindScalar(f_height.c_str(), &height);
47 height = SkScalarMulDiv(height, SK_Scalar1 * 72, SK_Scalar1 * 96);
54 box.fTop = SkScalarDiv(viewBox[1], height);
56 box.fBottom = SkScalarDiv(viewBox[3], height);
  /external/webkit/WebCore/css/
MediaFeatureNames.h 32 macro(height, "height") \
38 macro(device_height, "device-height") \
44 macro(max_device_height, "max-device-height") \
46 macro(max_height, "max-height") \
53 macro(min_device_height, "min-device-height") \
55 macro(min_height, "min-height") \
  /external/webkit/WebCore/rendering/style/
StyleGeneratedImage.cpp 45 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);
  /frameworks/base/graphics/java/android/graphics/drawable/shapes/
PathShape.java 44 * @param stdHeight the standard height for the shape. Any changes to the
45 * height with resize() will result in a height scaled based
46 * on the new height divided by this height.
63 protected void onResize(float width, float height) {
65 mScaleY = height / mStdHeight;
  /cts/tests/tests/graphics/src/android/graphics/cts/
YuvImageTest.java 63 private static final int HEIGHT = 128;
104 int height = 100; local
105 byte[] yuv = new byte[width * height * 2];
111 image = new YuvImage(yuv, mFormats[i], width, height, null);
129 image = new YuvImage(yuv, mFormats[i], width, height, null);
143 image = new YuvImage(yuv, format, -1, height, null);
149 // abnormal case: height is non-positive
152 fail("not catching illegal height");
159 image = new YuvImage(null, format, width, height, null);
173 generateTestBitmaps(WIDTH, HEIGHT);
221 int height = bitmap.getHeight(); local
342 int height = expected.getHeight(); local
    [all...]
  /external/webkit/WebKitTools/mangleme/
tags.h 17 { "APPLET", "CODEBASE", "CODE", "NAME", "ALIGN", "ALT", "HEIGHT", "WIDTH", "HSPACE", "VSPACE", "DOWNLOAD", "HEIGHT", "NAME", "TITLE", "onLoad", "STYLE", 0 },
31 { "EMBED", "SRC", "HEIGHT", "WIDTH", "UNITS", "NAME", "PALETTE", "onLoad", "STYLE", 0 },
32 { "FIG", "SRC", "ALIGN", "HEIGHT", "WIDTH", "UNITS", "IMAGEMAP", "onLoad", "STYLE", 0 },
42 { "IFRAME", "ALIGN", "FRAMEBORDER", "HEIGHT", "MARGINHEIGHT", "MARGINWIDTH", "NAME", "SCROLLING", "SRC", "ADDRESS", "WIDTH", "onLoad", "STYLE", 0 },
43 { "IMG", "ALIGN", "ALT", "SRC", "BORDER", "DYNSRC", "HEIGHT", "HSPACE", "ISMAP", "LOOP", "LOWSRC", "START", "UNITS", "USEMAP", "WIDTH", "VSPACE", "onLoad", "STYLE", 0 },
49 { "MARQUEE", "ALIGN", "BEHAVIOR", "BGCOLOR", "DIRECTION", "HEIGHT", "HSPACE", "LOOP", "SCROLLAMOUNT", "SCROLLDELAY", "WIDTH", "VSPACE", "onLoad", "STYLE", 0 },
55 { "OVERLAY", "SRC", "X", "Y", "HEIGHT", "WIDTH", "UNITS", "IMAGEMAP", "onLoad", "STYLE", 0 },
59 { "SELECT", "NAME", "SIZE", "MULTIPLE", "WIDTH", "HEIGHT", "UNITS", "onLoad", "STYLE", 0 },
61 { "SPACER", "TYPE", "SIZE", "WIDTH", "HEIGHT", "ALIGN", "onLoad", "STYLE", 0 },
    [all...]
  /packages/apps/Camera/src/com/android/camera/ui/
RotatePane.java 40 int height = bottom - top; local
44 mChild.layout(0, 0, width, height);
48 mChild.layout(0, 0, height, width);
80 float height = getHeight(); local
83 matrix.preRotate(180, width / 2, height / 2);
86 matrix.preRotate(270, height / 2, height / 2);
101 float height = getHeight(); local
103 case DOWN: event.setLocation(width - x, height - y); break;
104 case LEFT: event.setLocation(height - y, x); break
    [all...]
  /development/simulator/app/
DeviceWindow.cpp 120 int width, height; local
122 pEventWindow->GetSize(&width, &height);
130 else if (pEvent->m_y >= height)
131 pEvent->m_y = height-1;
177 int height = onionSkinImage.GetHeight(); local
182 for (int i = (width * height) - 1; i >= 0; i--) {
205 int width, height; local
207 GetClientSize(&width, &height);
208 printf("Sim: device window resize: %dx%d\n", width, height);
210 mBitmap.Create(width, height);
    [all...]
  /external/chromium/base/gfx/
rect.cc 38 Rect::Rect(int width, int height) {
40 set_height(height);
43 Rect::Rect(int x, int y, int width, int height)
46 set_height(height);
70 set_height(r.size.height);
76 set_height(r.size.height);
83 set_height(r.height);
89 set_height(r.height);
97 void Rect::set_height(int height) {
98 size_.set_height(height);
    [all...]
  /external/skia/src/core/
SkSpriteBlitterTemplate.h 26 virtual void blitRect(int x, int y, int width, int height) {
27 SkASSERT(width > 0 && height > 0);
36 SkDEBUGCODE((void)fDevice->SkSPRITE_DST_GETADDR(x + width - 1, y + height - 1);)
37 SkDEBUGCODE((void)fSource->SkSPRITE_SRC_GETADDR(srcX + width - 1, srcY + height - 1);)
65 } while (--height != 0);
  /external/webkit/WebCore/html/
ImageData.cpp 34 PassRefPtr<ImageData> ImageData::create(unsigned width, unsigned height)
36 return adoptRef(new ImageData(width, height));
39 ImageData::ImageData(unsigned width, unsigned height)
41 , m_height(height)
42 , m_data(CanvasPixelArray::create(width * height * 4))
  /external/webkit/WebCore/manual-tests/
transitions2.html 4 height: 50px;
10 height: 100px;
11 -webkit-transition-property: height;
17 height: 200px;
18 -webkit-transition-property: width, height;
video-player.html 2 #videoelem { width: 100%; height: 100%; position: absolute; }
3 #videocontainer { position: relative; width: 400px; height:230px;-webkit-user-select:none; -webkit-transition-duration:0.2s}
5 line-height: 40pt;
17 .videozoombutton { bottom:10px;right:10px;width:1.1em;height:1.1em;font-size:15pt; line-height: 15pt; border:2px solid white; -webkit-border-radius: 8px;}
18 .videoloading { top: 0; bottom: 0; margin:auto; left:0; right:0; width: 7em; height: 1.2em; cursor:default;}
21 .videoplay { top: 0; bottom: 0; margin:auto; left:0; right:0; width: 1.2em; height: 1.2em;}
79 container.style.height = "360px";
83 container.style.height = "225px";
  /external/webkit/WebCore/rendering/
RenderVideo.cpp 60 // width and height attributes of the video element as the intrinsic size until
64 setIntrinsicSize(IntSize(video->width(), video->height()));
69 // have the correct height (it needs to be > 0 for controls to render properly).
132 int ratio = renderBox.width() * elementSize.height() - renderBox.height() * elementSize.width();
134 int newWidth = renderBox.height() * elementSize.width() / elementSize.height();
140 int newHeight = renderBox.width() * elementSize.height() / elementSize.width();
141 if (renderBox.height() - newHeight > 2)
143 renderBox.move(0, (contentRect.height() - renderBox.height()) / 2)
227 int height; local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
ExpandedView.java 51 int height = bottom - top; local
52 if (height != mPrevHeight) {
53 //Slog.d(StatusBarService.TAG, "height changed old=" + mPrevHeight
54 // + " new=" + height);
55 mPrevHeight = height;
  /external/webkit/WebCore/manual-tests/animation/
animateTransform-parser.svg 9 <svg xmlns="http://www.w3.org/2000/svg" width="800px" height="600px">
30 <rect fill="none" stroke="black" stroke-width="3" x="0" y="0" width="200" height="200" />
45 <rect fill="none" stroke="black" stroke-width="3" x="0" y="0" width="200" height="200" />
46 <rect fill="red" x="0" y="0" width="40" height="100">
49 <rect fill="green" x="0" y="0" width="30" height="100">
52 <rect fill="blue" x="0" y="0" width="20" height="100">
55 <rect fill="yellow" x="0" y="0" width="10" height="100">
59 <rect fill="red" x="0" y="0" width="100" height="40">
62 <rect fill="green" x="0" y="0" width="100" height="30">
65 <rect fill="blue" x="0" y="0" width="100" height="20"
    [all...]
  /packages/apps/Gallery3D/src/com/cooliris/media/
CanvasTexture.java 66 public final void setSize(int width, int height) {
68 mHeight = height;
89 int height = (int) mHeight; local
102 int newTextureHeight = Shared.nextPowerOf2(height);
124 // Set the new texture width and height.
130 mNormalizedHeight = (float) height / textureHeight;
152 renderCanvas(canvas, bitmap, width, height);
153 int[] cropRect = { 0, height, width, -height };
171 float height = mHeight local
    [all...]
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
Environment.java 32 * The key height for portrait mode. It is relative to the screen height.
37 * The key height for landscape mode. It is relative to the screen height.
42 * The height of the candidates area for portrait mode. It is relative to
43 * screen height.
48 * The height of the candidates area for portrait mode. It is relative to
49 * screen height.
55 * It is relative to the smaller one of screen width and height.
60 * How much should the balloon height be larger than that of the real key
    [all...]
  /external/proguard/docs/
alternatives.html 39 <td align="center"><img src="checkmark.gif" width="11" height="11" alt="x"></td>
40 <td align="center"><img src="checkmark.gif" width="11" height="11" alt="x"></td>
41 <td align="center"><img src="checkmark.gif" width="11" height="11" alt="x"></td>
42 <td align="center"><img src="checkmark.gif" width="11" height="11" alt="x"></td>
49 <td align="center"><img src="checkmark.gif" width="11" height="11" alt="x"></td>
50 <td align="center"><img src="checkmark.gif" width="11" height="11" alt="x"></td>
51 <td align="center"><img src="checkmark.gif" width="11" height="11" alt="x"></td>
59 <td align="center"><img src="checkmark.gif" width="11" height="11" alt="x"></td>
60 <td align="center"><img src="checkmark.gif" width="11" height="11" alt="x"></td>
61 <td align="center"><img src="checkmark.gif" width="11" height="11" alt="x"></td
    [all...]
  /external/libvpx/vp8/common/
extend.c 20 int h, /* height */
75 void vp8_extend_to_multiple_of16(YV12_BUFFER_CONFIG *ybf, int width, int height)
78 int eb = 0xf & (16 - (height & 0xf));
83 extend_plane_borders(ybf->y_buffer, ybf->y_stride, height, width, 0, 0, eb, er);
86 height = (height + 1) >> 1;
89 eb = 0x7 & (8 - (height & 0x7));
93 extend_plane_borders(ybf->u_buffer, ybf->uv_stride, height, width, 0, 0, eb, er);
94 extend_plane_borders(ybf->v_buffer, ybf->uv_stride, height, width, 0, 0, eb, er);
  /external/proguard/src/proguard/gui/splash/
OverrideGraphics2D.java 220 public Graphics create(int x, int y, int width, int height)
222 OverrideGraphics2D g = new OverrideGraphics2D((Graphics2D)graphics.create(x, y, width, height));
239 public void clearRect(int x, int y, int width, int height)
241 graphics.clearRect(x, y, width, height);
249 public void clipRect(int x, int y, int width, int height)
251 graphics.clipRect(x, y, width, height);
254 public void copyArea(int x, int y, int width, int height, int dx, int dy)
256 graphics.copyArea(x, y, width, height, dx, dy);
269 public void draw3DRect(int x, int y, int width, int height, boolean raised)
271 graphics.draw3DRect(x, y, width, height, raised)
    [all...]
  /external/qemu/
loadpng.c 21 png_uint_32 width, height; local
67 png_get_IHDR(p, pi, &width, &height, &bitdepth, &colortype,
70 // width, height, bitdepth, colortype);
102 data = (unsigned char*) malloc((width * 4) * height);
103 rowptrs = (unsigned char **) malloc(sizeof(unsigned char*) * height);
110 for(i = 0; i < height; i++) {
121 *_height = height;
159 png_uint_32 width, height; local
199 png_get_IHDR(p, pi, &width, &height, &bitdepth, &colortype,
202 // width, height, bitdepth, colortype)
    [all...]

Completed in 4229 milliseconds

1 2 3 45 6 7 8 91011>>