Home | History | Annotate | Download | only in data

Lines Matching refs:HEIGHT

64     // width and height should be adjusted according to orientation.
85 int width, int height, long sizeInBytes, double latitude,
94 mHeight = height;
319 MediaStore.Images.ImageColumns.HEIGHT, // 8, int
340 String path, int orientation, int width, int height,
343 path, width, height, sizeInBytes, latitude, longitude);
356 int height = c.getInt(COL_HEIGHT);
357 if (width <= 0 || height <= 0) {
359 + path + ":" + width + "x" + height);
365 height = opts.outHeight;
375 height = b.getHeight();
376 if (width == 0 || height == 0) {
387 dateModifiedInSeconds, path, orientation, width, height,
518 // If the width and height is valid and not matching the values
525 values.put(Images.Media.HEIGHT, decodedHeight);
608 MediaStore.Video.VideoColumns.HEIGHT, // 7, int
621 String path, int width, int height, long sizeInBytes,
624 path, width, height, sizeInBytes, latitude, longitude);
636 int height = c.getInt(COL_HEIGHT);
652 // Extracts video height/width if available. If unavailable, set to 0.
653 if (width == 0 || height == 0) {
659 height = (val == null) ? 0 : Integer.parseInt(val);
662 if (width == 0 || height == 0) {
663 // Width or height is still not available.
670 width = height;
671 height = b;
679 dateModifiedInSeconds, path, width, height, sizeInBytes,