Searched refs:height (Results 251 - 275 of 7326) sorted by relevance

<<11121314151617181920>>

/external/skia/include/images/
H A DSkPageFlipper.h27 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/
H A DGrSurface.cpp21 info.fHeight = this->height();
29 this->height()))) {
33 bool result = readPixels(0, 0, this->width(), this->height(), kSkia8888_GrPixelConfig,
/external/webp/src/utils/
H A Dfilters.h34 typedef void (*WebPFilterFunc)(const uint8_t* in, int width, int height,
36 typedef void (*WebPUnfilterFunc)(int width, int height, int stride,
40 // 'in' corresponds to a 2-dimensional pixel array of size (stride * height)
53 int width, int height, int stride);
/external/webrtc/src/modules/audio_processing/test/testsupport/metrics/
H A Dvideo_metrics.h63 int height,
85 int height,
106 int height,
/external/webrtc/test/testsupport/metrics/
H A Dvideo_metrics.h63 int height,
85 int height,
106 int height,
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DFrameViewAutoSizeInfo.cpp32 ASSERT(minSize.height() <= maxSize.height());
73 // If this is the first time we run autosize, start from small height and
76 m_frameView->resize(m_frameView->frameRect().width(), m_minAutoSize.height());
81 // which may result in a height change during the second iteration.
96 int height = documentRenderBox->scrollHeight(); local
97 IntSize newSize(width, height);
108 newSize.setHeight(newSize.height() + localHorizontalScrollbar->height());
112 } else if (newSize.height() > m_maxAutoSiz
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatRoundedRect.cpp37 FloatRoundedRect::FloatRoundedRect(float x, float y, float width, float height) argument
38 : m_rect(x, y, width, height)
66 if (!m_topLeft.width() || !m_topLeft.height())
69 if (!m_topRight.width() || !m_topRight.height())
72 if (!m_bottomLeft.width() || !m_bottomLeft.height())
75 if (!m_bottomRight.width() || !m_bottomRight.height())
82 if (m_topLeft.width() > 0 && m_topLeft.height() > 0) {
84 m_topLeft.setHeight(std::max<float>(0, m_topLeft.height() + topWidth));
86 if (m_topRight.width() > 0 && m_topRight.height() > 0) {
88 m_topRight.setHeight(std::max<float>(0, m_topRight.height()
[all...]
/external/chromium_org/ui/file_manager/image_loader/
H A Dimage_loader.js121 * @param {number} height Source height.
125 ImageLoader.shouldProcess = function(width, height, options) {
126 var targetDimensions = ImageLoader.resizeDimensions(width, height, options);
129 if (targetDimensions.width != width || targetDimensions.height != height)
144 * - width, height: for exact requested size.
145 * Returns the target size as hash array with width, height properties.
148 * @param {number} height Source height
[all...]
/external/libyuv/files/include/libyuv/
H A Dconvert_from.h33 int width, int height);
42 int width, int height);
51 int width, int height);
57 int width, int height);
68 int width, int height);
75 int width, int height);
82 int width, int height);
89 int width, int height);
96 int width, int height);
103 int width, int height);
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DDrawableBitmap.java35 DrawableBitmap(Texture texture, int width, int height) { argument
39 mHeight = height;
44 setCrop(0, height, width, height);
55 public void setViewSize(int width, int height) { argument
56 mViewHeight = height;
69 * @param viewHeight The height of the screen.
112 final float height = mHeight;
120 || snappedY + height < 0.0f
139 getPriority(), width * scaleX, height * scale
161 resize(int width, int height) argument
179 setHeight(int height) argument
194 setCrop(int left, int bottom, int width, int height) argument
[all...]
/external/libyuv/files/source/
H A Dconvert_argb.cc33 int width, int height) {
35 width <= 0 || height == 0) {
38 // Negative height means invert the image.
39 if (height < 0) {
40 height = -height;
41 src_argb = src_argb + (height - 1) * src_stride_argb;
46 width * 4, height);
56 int width, int height) {
59 width <= 0 || height
31 ARGBCopy(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
52 I444ToARGB(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
97 I422ToARGB(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
149 I411ToARGB(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
195 I400ToARGB_Reference(const uint8* src_y, int src_stride_y, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
229 I400ToARGB(const uint8* src_y, int src_stride_y, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
263 BGRAToARGB(const uint8* src_bgra, int src_stride_bgra, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
297 ABGRToARGB(const uint8* src_abgr, int src_stride_abgr, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
331 RGBAToARGB(const uint8* src_rgba, int src_stride_rgba, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
365 RAWToARGB(const uint8* src_raw, int src_stride_raw, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
398 RGB24ToARGB(const uint8* src_rgb24, int src_stride_rgb24, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
431 RGB565ToARGB(const uint8* src_rgb565, int src_stride_rgb565, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
464 ARGB1555ToARGB(const uint8* src_argb1555, int src_stride_argb1555, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
497 ARGB4444ToARGB(const uint8* src_argb4444, int src_stride_argb4444, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
530 NV12ToARGB(const uint8* src_y, int src_stride_y, const uint8* src_uv, int src_stride_uv, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
581 NV21ToARGB(const uint8* src_y, int src_stride_y, const uint8* src_uv, int src_stride_uv, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
632 M420ToARGB(const uint8* src_m420, int src_stride_m420, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
676 YUY2ToARGB(const uint8* src_yuy2, int src_stride_yuy2, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
763 UYVYToARGB(const uint8* src_uyvy, int src_stride_uyvy, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
[all...]
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
H A DJavaBrowserViewRendererHelper.java21 * Provides a Bitmap object with a given width and height used for auxiliary rasterization.
26 private static Bitmap createBitmap(int width, int height, Canvas canvas) { argument
31 height = Math.min(height, canvas.getMaximumBitmapHeight());
35 bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
/external/chromium_org/chrome/browser/ui/cocoa/
H A Dview_resizer.h13 // to their parents. When a controller needs to change a view's height, rather
18 - (void)resizeView:(NSView*)view newHeight:(CGFloat)height;
/external/chromium_org/chrome/browser/ui/tabs/
H A Dtab_resources.h17 // a tab of the given |width| and |height|, for input event hit testing.
21 int height,
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/imageinfo/
H A Dbackground.js15 chrome.windows.create({ url: url, width: 520, height: 660 });
/external/chromium_org/ppapi/c/dev/
H A Dpp_video_capture_dev.h30 uint32_t height; member in struct:PP_VideoCaptureDeviceInfo_Dev
/external/chromium_org/printing/
H A Dimage_mac.cc19 if (rect.width() < 1 || rect.height() < 1)
24 size_t bytes = row_length_ * size_.height();
33 size_.height(),
43 CGRectMake(0, 0, size_.width(), size_.height()), params);
H A Dprinted_page.cc36 if (paper_size.height() > page_size().height()) {
37 int diff = paper_size.height() - page_size().height();
/external/chromium_org/third_party/WebKit/PerformanceTests/Interactive/resources/
H A Dwindow-resize.js5 var portrait = { width: window.innerWidth, height: window.innerHeight };
6 var landscape = { width: window.innerHeight, height: window.innerWidth };
9 window.resizeTo(portrait.width, portrait.height);
11 window.resizeTo(landscape.width, landscape.height);
/external/chromium_org/third_party/WebKit/PerformanceTests/Layout/resources/
H A Dlarge-table-with-collapsed-borders.js11 function createTable(width, height, colspan) {
13 for (var y = 0; y < height; ++y) {
24 function createTestFunction(width, height, colspan) {
26 var table = createTable(width, height, colspan);
/external/chromium_org/third_party/WebKit/Source/platform/
H A DOverscrollTheme.cpp52 IntRect(m_overhangShadow->width() / 2, m_overhangShadow->height() / 2, 1, 1));
58 // round-down, and that for the width and height, the 1-pixel aperture is being replaced
62 static_cast<int>(rootContentLayer->position().y()) - m_overhangShadow->height() / 2,
64 static_cast<int>(rootContentLayer->size().height()) + m_overhangShadow->height() - 1);
/external/chromium_org/third_party/WebKit/Source/platform/geometry/cg/
H A DFloatSizeCG.cpp34 FloatSize::FloatSize(const CGSize& s) : m_width(s.width), m_height(s.height)
H A DIntSizeCG.cpp33 IntSize::IntSize(const CGSize& s) : m_width(static_cast<int>(s.width)), m_height(static_cast<int>(s.height))
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
H A DVideoRenderer.java44 public final int height; field in class:VideoRenderer.I420Frame
57 int width, int height, int[] yuvStrides, ByteBuffer[] yuvPlanes) {
59 this.height = height;
63 yuvPlanes[0] = ByteBuffer.allocateDirect(yuvStrides[0] * height);
64 yuvPlanes[1] = ByteBuffer.allocateDirect(yuvStrides[1] * height);
65 yuvPlanes[2] = ByteBuffer.allocateDirect(yuvStrides[2] * height);
75 int width, int height, Object textureObject, int textureId) {
77 this.height = height;
56 I420Frame( int width, int height, int[] yuvStrides, ByteBuffer[] yuvPlanes) argument
74 I420Frame( int width, int height, Object textureObject, int textureId) argument
151 setSize(int width, int height) argument
[all...]
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/test/
H A Dfakevideotrackrenderer.h47 virtual void SetSize(int width, int height) { argument
48 fake_renderer_.SetSize(width, height, 0);
57 int height() const { return fake_renderer_.height(); } function in class:webrtc::FakeVideoTrackRenderer

Completed in 1819 milliseconds

<<11121314151617181920>>