Searched defs:height (Results 251 - 275 of 2970) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/chrome/browser/extensions/
H A Dextension_infobar_delegate.h42 int height);
52 int height() { return height_; } function in class:ExtensionInfoBarDelegate
64 int height);
103 // The requested height of the infobar (in pixels).
/external/chromium_org/chrome/browser/ui/views/toolbar/
H A Dextension_toolbar_menu_view.cc78 int height = container_->GetHeightForWidth(width); local
79 return height;
84 SetBounds(start_padding() + 1, 0, sz.width(), sz.height());
85 container_->SetBounds(0, 0, sz.width(), sz.height());
/external/chromium_org/content/renderer/media/
H A Dmedia_stream_constraints_util_unittest.cc99 int height = 480; local
101 constraint_factory.AddMandatory(MediaStreamVideoSource::kMaxHeight, height);
111 EXPECT_EQ(height, value_height);
114 height = 600;
116 constraint_factory.AddOptional(MediaStreamVideoSource::kMaxHeight, height);
123 EXPECT_EQ(height, value_height);
H A Dvideo_source_handler_unittest.cc73 int height = 360; local
78 media::VideoFrame::CreateBlackFrame(gfx::Size(width, height));
88 EXPECT_EQ(height, frame->coded_size().height());
/external/chromium_org/gpu/command_buffer/client/
H A Dgpu_memory_buffer_tracker.cc25 size_t height,
31 width, height, internalformat, usage, &image_id);
24 CreateBuffer(size_t width, size_t height, int32 internalformat, int32 usage) argument
/external/chromium_org/gpu/gles2_conform_support/native/
H A Degl_native_windowless.cc25 const char* title, int width, int height,
28 display->SetCreateOffscreen(width, height);
36 EGLImageKHR GTFCreateEGLImage(int width, int height, argument
23 GTFNativeCreateWindow(EGLNativeDisplayType nativeDisplay, EGLDisplay eglDisplay, EGLConfig eglConfig, const char* title, int width, int height, EGLNativeWindowType *pNativeWindow) argument
/external/chromium_org/media/base/simd/
H A Dconvert_rgb_to_yuv_c.cc23 int height,
37 for (int i = 0; i < height; ++i) {
64 int height,
68 for (int i = 0; i < height; ++i) {
18 ConvertRGB32ToYUV_C(const uint8* rgbframe, uint8* yplane, uint8* uplane, uint8* vplane, int width, int height, int rgbstride, int ystride, int uvstride) argument
59 ConvertRGB24ToYUV_C(const uint8* rgbframe, uint8* yplane, uint8* uplane, uint8* vplane, int width, int height, int rgbstride, int ystride, int uvstride) argument
/external/chromium_org/media/cast/test/
H A Dlinux_output_window.cc19 int height,
21 CreateWindow(x_pos, y_pos, width, height, name);
38 int height,
73 height,
101 display_, CopyFromParent, 24, ZPixmap, NULL, &shminfo_, width, height);
103 IPC_PRIVATE, (image_->bytes_per_line * image_->height), IPC_CREAT | 0777);
122 CHECK_LE(video_frame->coded_size().height(), image_->height);
132 video_frame->coded_size().height());
144 video_frame->coded_size().height(),
16 LinuxOutputWindow(int x_pos, int y_pos, int width, int height, const std::string& name) argument
35 CreateWindow(int x_pos, int y_pos, int width, int height, const std::string& name) argument
[all...]
/external/chromium_org/ppapi/thunk/
H A Dppb_gles_chromium_texture_mapping_thunk.cc23 GLsizei height,
30 target, level, xoffset, yoffset, width, height, format, type, access);
17 MapTexSubImage2DCHROMIUM(PP_Resource context, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, GLenum access) argument
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDOMRectReadOnly.h15 static DOMRectReadOnly* create(double x, double y, double width, double height);
20 double height() const { return m_height; } function in class:blink::DOMRectReadOnly
30 DOMRectReadOnly(double x, double y, double width, double 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/core/html/
H A DImageData.cpp43 dataSize *= size.height();
54 dataSize *= size.height();
65 PassRefPtrWillBeRawPtr<ImageData> ImageData::create(unsigned width, unsigned height, ExceptionState& exceptionState) argument
71 if (!width || !height) {
72 exceptionState.throwDOMException(IndexSizeError, String::format("The source %s is zero or not a number.", width ? "height" : "width"));
78 dataSize *= height;
84 RefPtrWillBeRawPtr<ImageData> imageData = adoptRefWillBeNoop(new ImageData(IntSize(width, height)));
89 PassRefPtrWillBeRawPtr<ImageData> ImageData::create(Uint8ClampedArray* data, unsigned width, unsigned height, ExceptionState& exceptionState) argument
118 if (!height) {
119 height
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DStyleGeneratedImage.cpp53 LayoutUnit height = fixedSize.height() * multiplier; local
55 // Don't let images that have a width/height >= 1 shrink below 1 when zoomed.
59 if (fixedSize.height() > 0)
60 height = max<LayoutUnit>(1, height);
62 return LayoutSize(width, height);
73 intrinsicHeight = Length(size.height(), Fixed);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGFilterPrimitiveStandardAttributes.h52 SVGAnimatedLength* height() const { return m_height.get(); } function in class:blink::SVGFilterPrimitiveStandardAttributes
H A DSVGImageElement.h46 SVGAnimatedLength* height() const { return m_height.get(); } function in class:blink::FINAL
H A DSVGMaskElement.h42 SVGAnimatedLength* height() const { return m_height.get(); } function in class:blink::FINAL
H A DSVGPatternElement.h54 SVGAnimatedLength* height() const { return m_height.get(); } function in class:blink::FINAL
H A DSVGRectElement.h39 SVGAnimatedLength* height() const { return m_height.get(); } function in class:blink::FINAL
H A DSVGUseElement.h50 SVGAnimatedLength* height() const { return m_height.get(); } function in class:blink::FINAL
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebFloatRect.h50 float height; member in struct:blink::WebFloatRect
52 bool isEmpty() const { return width <= 0 || height <= 0; }
58 , height(0)
62 WebFloatRect(float x, float y, float width, float height) argument
66 , height(height)
75 , height(r.height())
84 height = r.height();
[all...]
H A DWebRect.h50 int height; member in struct:blink::WebRect
52 bool isEmpty() const { return width <= 0 || height <= 0; }
58 , height(0)
62 WebRect(int x, int y, int width, int height) argument
66 , height(height)
75 , height(r.height())
84 height = r.height();
[all...]
/external/chromium_org/third_party/angle/samples/dds_to_header/
H A Dmain.cpp181 std::size_t height = header.dwHeight; local
186 oss << "// Automatically generated header from " << inputFile << ", a " << width << "x" << height; local
194 oss << "static const size_t " << outputName << "_height = " << height << ";\n"; local
201 std::size_t heightAtLevel = std::max<size_t>(height >> i, 1);
/external/chromium_org/third_party/freetype/src/raster/
H A Dftrend1.c108 FT_UInt width, height, pitch; local
179 height = (FT_UInt)( ( cbox.yMax - cbox.yMin ) >> 6 );
181 if ( width > FT_USHORT_MAX || height > FT_USHORT_MAX )
212 bitmap->rows = height;
215 if ( FT_ALLOC_MULT( bitmap->buffer, pitch, height ) )
/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
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Ddecode_api_test.cc93 const int height = 288; local
95 vpx_img_alloc(&ref_copy.img, VPX_IMG_FMT_I420, width, height, 1) != NULL);

Completed in 5775 milliseconds

<<11121314151617181920>>