Searched defs:maxHeight (Results 1 - 25 of 35) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DStyleBoxData.h53 const Length& maxHeight() const { return m_maxHeight; } function in class:blink::StyleBoxData
H A DRenderStyle.h467 const Length& maxHeight() const { return m_box->maxHeight(); } function in class:blink::RenderStyle
472 const Length& logicalMaxWidth() const { return isHorizontalWritingMode() ? maxWidth() : maxHeight(); }
474 const Length& logicalMaxHeight() const { return isHorizontalWritingMode() ? maxHeight() : maxWidth(); }
/external/chromium_org/third_party/WebKit/Source/web/
H A DPopupContainerTest.cpp35 virtual void setMaxHeight(int max) OVERRIDE { maxHeight = max; }
43 height = std::min(maxHeight, height);
57 , maxHeight(height)
65 int maxHeight; member in class:MockPopupContent
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderScrollbarPart.cpp121 int maxHeight = style()->maxHeight().isMaxSizeNone() ? h : calcScrollbarThicknessUsing(MaxSize, style()->maxHeight(), visibleSize); local
122 setHeight(std::max(minHeight, std::min(maxHeight, h)));
H A DRenderDeprecatedFlexibleBox.cpp1015 LayoutUnit maxHeight = LayoutUnit::max(); local
1017 if (child->style()->maxHeight().isFixed())
1018 maxHeight = child->style()->maxHeight().value();
1019 if (maxHeight == LayoutUnit::max())
1020 return maxHeight;
1021 return std::max<LayoutUnit>(0, maxHeight - height);
H A DInlineFlowBox.cpp610 void InlineFlowBox::placeBoxesInBlockDirection(LayoutUnit top, LayoutUnit maxHeight, int maxAscent, bool strictMode, LayoutUnit& lineTop, LayoutUnit& lineBottom, LayoutUnit& selectionBottom, bool& setLineTop, argument
642 curr->setLogicalTop((top + maxHeight - curr->lineHeight()).toFloat());
722 inlineFlowBox->placeBoxesInBlockDirection(top, maxHeight, maxAscent, strictMode, lineTop, lineBottom, selectionBottom, setLineTop,
H A DRootInlineBox.cpp226 LayoutUnit maxHeight = maxAscent + maxDescent; local
235 placeBoxesInBlockDirection(heightOfBlock, maxHeight, maxAscent, noQuirksMode, lineTop, lineBottom, selectionBottom, setLineTop,
240 maxHeight = std::max<LayoutUnit>(0, maxHeight); // FIXME: Is this really necessary?
242 setLineTopBottomPositions(lineTop, lineBottom, heightOfBlock, heightOfBlock + maxHeight, selectionBottom);
254 return heightOfBlock + maxHeight;
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
H A DHtmlTooltipHelper.java180 int maxHeight = pixelConverter.convertHeightInCharsToPixels(heightLimitChars);
181 expandShellToShowFullPage_Height(browser, maxHeight);
189 private static void expandShellToShowFullPage_Height(Browser browser, int maxHeight) { argument
199 int useHeight = Math.min(contentHeight + ((EnvironmentUtils.IS_LINUX) ? 2 : 10), maxHeight);
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DViewportDescription.h84 Length maxHeight; member in struct:blink::ViewportDescription
106 && maxHeight == other.maxHeight
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
H A DDrawUtils.java229 int maxHeight) {
250 } else if (imageWidth <= maxWidth && imageHeight <= maxHeight) {
254 double kY = (double) maxHeight / imageHeight;
225 getThubmnail(Image image, int minWidth, int minHeight, int maxWidth, int maxHeight) argument
/external/chromium_org/third_party/skia/src/core/
H A DSkRegion_path.cpp31 bool init(int maxHeight, int maxTransitions, bool pathIsInverse);
117 bool SkRgnBuilder::init(int maxHeight, int maxTransitions, bool pathIsInverse) { argument
118 if ((maxHeight | maxTransitions) < 0) {
130 int64_t count = sk_64_mul(maxHeight + 1, 3 + maxTransitions);
H A DSkClipStack.cpp806 int maxHeight,
812 SkIntToScalar(maxWidth), SkIntToScalar(maxHeight));
803 getConservativeBounds(int offsetX, int offsetY, int maxWidth, int maxHeight, SkRect* devBounds, bool* isIntersectionOfRects) const argument
/external/deqp/modules/egl/
H A DteglMemoryStressTests.cpp66 MemoryAllocator (EglTestContext& eglTestCtx, EGLDisplay display, EGLConfig config, int seed, ObjectType types, int minWidth, int minHeight, int maxWidth, int maxHeight, bool use);
99 MemoryAllocator::MemoryAllocator (EglTestContext& eglTestCtx, EGLDisplay display, EGLConfig config, int seed, ObjectType types, int minWidth, int minHeight, int maxWidth, int maxHeight, bool use) argument
111 , m_maxHeight (maxHeight)
314 int maxHeight; member in struct:deqp::egl::MemoryStressCase::Spec
384 m_allocator = new MemoryAllocator(m_eglTestCtx, m_display, m_config, m_seed, m_spec.types, m_spec.minWidth, m_spec.minHeight, m_spec.maxWidth, m_spec.maxHeight, m_spec.use);
465 spec.maxHeight = 256;
479 spec.maxHeight = 256;
493 spec.maxHeight = 1024;
507 spec.maxHeight = 1024;
521 spec.maxHeight
[all...]
/external/deqp/modules/gles31/functional/
H A Des31fFboNoAttachmentTests.cpp504 const int maxHeight = 2048; // MAX_FRAMEBUFFER_HEIGHT in ES 3.1 local
517 for (int height = 16; height <= maxHeight; height *= 4)
601 const int height = rng.getInt(1, maxHeight);
/external/skia/src/core/
H A DSkRegion_path.cpp31 bool init(int maxHeight, int maxTransitions, bool pathIsInverse);
117 bool SkRgnBuilder::init(int maxHeight, int maxTransitions, bool pathIsInverse) { argument
118 if ((maxHeight | maxTransitions) < 0) {
130 int64_t count = sk_64_mul(maxHeight + 1, 3 + maxTransitions);
H A DSkClipStack.cpp806 int maxHeight,
812 SkIntToScalar(maxWidth), SkIntToScalar(maxHeight));
803 getConservativeBounds(int offsetX, int offsetY, int maxWidth, int maxHeight, SkRect* devBounds, bool* isIntersectionOfRects) const argument
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSComputedStyleDeclaration.cpp2065 const Length& maxHeight = style->maxHeight(); local
2066 if (maxHeight.isMaxSizeNone())
2068 return zoomAdjustedPixelValueForLength(maxHeight, *style);
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dfbobject.c681 GLuint minWidth = ~0, minHeight = ~0, maxWidth = 0, maxHeight = 0; local
748 maxHeight = MAX2(maxHeight, texImg->Height);
763 maxHeight = MAX2(minHeight, att->Renderbuffer->Height);
792 if (minWidth != maxWidth || minHeight != maxHeight) {
/external/deqp/modules/glshared/
H A DglsLifetimeTests.cpp492 Rectangle randomViewport (const RenderContext& ctx, GLint maxWidth, GLint maxHeight, argument
498 const GLint height = de::min(target.getHeight(), maxHeight);
499 const GLint yOff = rnd.getInt(0, height - maxHeight);
/external/mesa3d/src/mesa/main/
H A Dfbobject.c681 GLuint minWidth = ~0, minHeight = ~0, maxWidth = 0, maxHeight = 0; local
748 maxHeight = MAX2(maxHeight, texImg->Height);
763 maxHeight = MAX2(minHeight, att->Renderbuffer->Height);
792 if (minWidth != maxWidth || minHeight != maxHeight) {
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorPageAgent.cpp1452 void InspectorPageAgent::startScreencast(ErrorString*, const String* format, const int* quality, const int* maxWidth, const int* maxHeight) argument
/external/chromium_org/third_party/mesa/src/include/GL/
H A Dglxext.h857 int XOrigin, YOrigin, maxHeight, maxWidth; member in struct:__anon13638
/external/mesa3d/include/GL/
H A Dglxext.h857 int XOrigin, YOrigin, maxHeight, maxWidth; member in struct:__anon27049
/external/pdfium/core/src/fxge/Microsoft SDK/include/
H A DDWrite.h3643 /// <param name="maxHeight">Layout maximum height</param>
3648 FLOAT maxHeight
4816 /// <param name="maxHeight">Height of the layout box.</param>
4826 FLOAT maxHeight, variable
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLRenderingContextBase.cpp966 GLint maxHeight = std::min(maxSize, m_maxViewportDims[1]); local
968 height = clamp(height, 1, maxHeight);

Completed in 959 milliseconds

12