HomeSort by relevance Sort by last modified time
    Searched refs:HEIGHT (Results 126 - 150 of 178) sorted by null

1 2 3 4 56 7 8

  /cts/tests/tests/content/src/android/content/res/cts/
ConfigTest.java 50 HEIGHT,
125 case HEIGHT:
212 config.setProperty(Properties.HEIGHT, 320);
331 config.setProperty(Properties.HEIGHT, 480);
535 config.setProperty(Properties.HEIGHT, 480);
    [all...]
  /hardware/ti/omap4-aah/hwc/
hwc.c 53 #define HEIGHT(rect) ((rect).bottom - (rect).top)
100 __u16 height; member in struct:omap4_hwc_ext
128 int height; member in struct:omap4_hwc_img
308 c->width, c->height, c->crop.x, c->crop.y,
374 dsscomp->ovls[i].cfg.height,
419 int h = HEIGHT(layer->sourceCrop);
424 return WIDTH(layer->displayFrame) != w || HEIGHT(layer->displayFrame) != h;
514 int h = HEIGHT(layer->sourceCrop);
520 HEIGHT(layer->displayFrame) >= h * hwc_dev->upscaled_nv12_limit);
581 omap4_hwc_setup_layer_base(struct dss2_ovl_cfg *oc, int index, int format, int blended, int width, int height)
2161 __u32 height = png_get_image_height(png_ptr, info_ptr); local
    [all...]
  /packages/apps/Camera2/src/com/android/camera/
Storage.java 77 * @param height The height of the media file after the orientation is
82 int height) {
84 return addImage(resolver, title, date, location, orientation, exif, jpeg, width, height,
103 * @param height The height of the media file after the orientation is
111 int height, String mimeType) {
117 path, width, height, mimeType);
132 * @param height The height of the media file after the orientation i
    [all...]
VideoModule.java 820 final int preferredPreviewSizeShortSide = (preferred.width() < preferred.height() ?
821 preferred.width() : preferred.height());
825 int product = preferred.width() * preferred.height();
830 if (size.width() * size.height() > product) {
840 && size.height() == profile.videoFrameHeight) {
841 Log.v(TAG, "Selected =" + size.width() + "x" + size.height()
849 return new Point(optimalSize.width(), optimalSize.height());
1253 int height = (Integer) mCurrentVideoValues.get(Video.Media.HEIGHT); local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
LocalImage.java 97 PROJECTION[INDEX_HEIGHT] = MediaColumns.HEIGHT;
147 height = cursor.getInt(INDEX_HEIGHT);
169 height = uh.update(height, cursor.getInt(INDEX_HEIGHT));
325 // For example, the width and height of an webp images is always '0'.
343 return height;
  /cts/tests/tests/media/src/android/media/cts/
MediaCodecTest.java 59 private static final int HEIGHT = 720;
    [all...]
  /packages/apps/Camera2/src/com/android/camera/data/
LocalMediaData.java 66 // width and height should be adjusted according to orientation.
86 int width, int height, long sizeInBytes, double latitude,
95 mHeight = height;
352 MediaStore.Images.ImageColumns.HEIGHT, // 8, int
377 String path, int orientation, int width, int height,
380 path, width, height, sizeInBytes, latitude, longitude);
399 int height = c.getInt(COL_HEIGHT); local
400 if (width <= 0 || height <= 0) {
402 + path + ":" + width + "x" + height);
408 height = opts.outHeight
727 int height = c.getInt(COL_HEIGHT); local
    [all...]
  /packages/apps/Gallery2/src/com/android/photos/data/
PhotoProvider.java 103 /** Column name for the height of the original image. Integer value. */
104 public static final String HEIGHT = "height";
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ContactAggregator.java     [all...]
  /external/opencv/cv/src/
cvlkpyramid.cpp 55 ipt.y -= win_size.height;
58 win_size.height = win_size.height * 2 + 1;
63 max_pt->y = MIN( win_size.height, imgSize.height - ipt.y );
69 return cvAlign(imgSize.width,8) * imgSize.height / 3;
135 levelSize.height = (levelSize.height + 1) >> 1;
138 pyrBytes += tstep * levelSize.height;
141 assert( pyrBytes <= imgSize.width * imgSize.height * elem_size * 4 / 3 )
230 int x, height = src_size.height - 2; local
    [all...]
  /prebuilts/devtools/tools/lib/
rule-api.jar 
  /frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
GlobalScreenshot.java 235 values.put(MediaStore.Images.ImageColumns.HEIGHT, mImageHeight);
  /frameworks/ex/common/java/com/android/ex/editstyledtext/
EditStyledText.java 2637 int width, height; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
tmschema.h 280 TM_PROP(2417,TMT,HEIGHT,SIZE)
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/
MoreKeysKeyboardBuilderAutoOrderTests.java 27 private static final int HEIGHT = 10;
49 params.setParameters(numKeys, columnNum, WIDTH, HEIGHT, coordXInParent, KEYBOARD_WIDTH,
59 params = createParams(maxColumns + 1, maxColumns + 1, HEIGHT);
    [all...]
MoreKeysKeyboardBuilderFixedOrderTests.java 27 private static final int HEIGHT = 10;
49 params.setParameters(numKeys, columnNum, WIDTH, HEIGHT, coordXInParent, KEYBOARD_WIDTH,
59 params = createParams(fixColumns + 1, fixColumns + 1, HEIGHT);
    [all...]
MoreKeysKeyboardBuilderMaxOrderTests.java 27 private static final int HEIGHT = 10;
49 params.setParameters(numKeys, maxColumns, WIDTH, HEIGHT, coordXInParent, KEYBOARD_WIDTH,
59 params = createParams(maxColumns + 1, maxColumns + 1, HEIGHT);
    [all...]
  /frameworks/base/core/java/android/provider/
ContactsContract.java     [all...]
  /frameworks/base/media/java/android/media/
MediaScanner.java 646 } else if (name.equalsIgnoreCase("height")) {
776 map.put(MediaStore.MediaColumns.HEIGHT, mHeight);
    [all...]
  /external/chromium_org/tools/telemetry/third_party/png/
png.py 321 def __init__(self, width=None, height=None,
342 width, height
368 `width` and `height` arguments, or with the single `size`
370 *height*).
503 "size argument should be a pair (width, height)")
508 if height is not None and height != size[1]:
510 "size[1] (%r) and height (%r) should match when both are used."
511 % (size[1], height))
512 width,height = siz
    [all...]
  /build/tools/droiddoc/templates-ds/assets/js/
docs.js 334 /* Resize nav height when window height changes */
366 // we set the navbar fixed when the scroll position is beyond the height of the site header...
368 // ... except if the document content is shorter than the sidenav height.
370 if ($("#doc-col").height() < $("#side-nav").height()) {
449 targetRect.height = $target.height();
453 top: targetRect.top + targetRect.height + TOOLTIP_MARGIN
617 /* ######### RESIZE THE SIDENAV HEIGHT ########## */
    [all...]
  /build/tools/droiddoc/templates-sac/assets/js/
docs.js 408 /* Resize nav height when window height changes */
440 // we set the navbar fixed when the scroll position is beyond the height of the site header...
442 // ... except if the document content is shorter than the sidenav height.
444 if ($("#doc-col").height() < $("#side-nav").height()) {
523 targetRect.height = $target.height();
527 top: targetRect.top + targetRect.height + TOOLTIP_MARGIN
682 /* ######### RESIZE THE SIDENAV HEIGHT ########## */
    [all...]
  /cts/tools/signature-tools/lib/
stringtemplate.jar 
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsDatabaseHelper.java     [all...]
  /build/tools/droiddoc/templates-sdk/assets/js/
docs.js 411 + ' width="64" height="64" alt=""/>');
417 + ' width="64" height="64" alt=""/>');
436 /* Resize nav height when window height changes */
480 targetRect.height = $target.height();
484 top: targetRect.top + targetRect.height + TOOLTIP_MARGIN
597 /* Returns the height the shadowbox video should be. It's based on the current
598 height of the "video-frame" element, which is 100% height for the window
    [all...]

Completed in 2980 milliseconds

1 2 3 4 56 7 8