HomeSort by relevance Sort by last modified time
    Searched defs:maxHeight (Results 1 - 25 of 35) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/web/
PopupContainerTest.cpp 35 virtual void setMaxHeight(int max) OVERRIDE { maxHeight = max; }
43 height = std::min(maxHeight, height);
57 , maxHeight(height)
65 int maxHeight;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderScrollbarPart.cpp 121 int maxHeight = style()->maxHeight().isMaxSizeNone() ? h : calcScrollbarThicknessUsing(MaxSize, style()->maxHeight(), visibleSize);
122 setHeight(std::max(minHeight, std::min(maxHeight, h)));
RenderDeprecatedFlexibleBox.cpp     [all...]
RootInlineBox.cpp 226 LayoutUnit maxHeight = maxAscent + maxDescent;
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;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleBoxData.h 53 const Length& maxHeight() const { return m_maxHeight; }
RenderStyle.h 467 const Length& maxHeight() const { return m_box->maxHeight(); }
472 const Length& logicalMaxWidth() const { return isHorizontalWritingMode() ? maxWidth() : maxHeight(); }
474 const Length& logicalMaxHeight() const { return isHorizontalWritingMode() ? maxHeight() : maxWidth(); }
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PictureLayout.java 85 int maxHeight = 0;
96 maxHeight += getPaddingTop() + getPaddingBottom();
100 maxHeight = Math.max(maxHeight, drawable.getMinimumHeight());
105 resolveSize(maxHeight, heightMeasureSpec));
  /development/samples/ApiDemos/src/com/example/android/apis/view/
CustomLayout.java 85 int maxHeight = 0;
110 maxHeight = Math.max(maxHeight,
120 maxHeight = Math.max(maxHeight, getSuggestedMinimumHeight());
125 resolveSizeAndState(maxHeight, heightMeasureSpec,
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/
ContentWrapperView.java 222 int maxHeight = Math.max(getViewToHideHeight(), getViewToShowHeight());
223 return new Rect(getLeft(), getTop(), getRight(), getTop() + maxHeight);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ViewportDescription.h 84 Length maxHeight;
106 && maxHeight == other.maxHeight
  /external/deqp/modules/gles31/functional/
es31fFboNoAttachmentTests.cpp 504 const int maxHeight = 2048; // MAX_FRAMEBUFFER_HEIGHT in ES 3.1
517 for (int height = 16; height <= maxHeight; height *= 4)
601 const int height = rng.getInt(1, maxHeight);
  /cts/tests/tests/media/src/android/media/cts/
MediaCodecCapabilitiesTest.java 432 int maxHeight = vidCaps.getSupportedHeightsFor(width).getUpper();
436 / Math.sqrt((double)maxWidth * maxHeight / width / height)));
VideoEncoderTest.java 232 int maxHeight = encCaps.getSupportedHeightsFor(maxWidth).getUpper();
236 encCaps.getSupportedFrameRatesFor(maxWidth, maxHeight)
246 Math.sqrt((double)maxWidth * maxHeight / width / height)));
    [all...]
  /developers/samples/android/content/WidgetData/Application/src/main/java/com/example/android/widgetdata/
WeatherWidgetProvider.java 223 int maxHeight = newOptions.getInt(AppWidgetManager.OPTION_APPWIDGET_MAX_HEIGHT);
  /development/samples/WeatherListWidget/src/com/example/android/weatherlistwidget/
WeatherWidgetProvider.java 223 int maxHeight = newOptions.getInt(AppWidgetManager.OPTION_APPWIDGET_MAX_HEIGHT);
  /external/deqp/modules/egl/
teglMemoryStressTests.cpp 66 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)
111 , m_maxHeight (maxHeight)
314 int maxHeight;
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 = 1024
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
HtmlTooltipHelper.java 180 int maxHeight = pixelConverter.convertHeightInCharsToPixels(heightLimitChars);
181 expandShellToShowFullPage_Height(browser, maxHeight);
189 private static void expandShellToShowFullPage_Height(Browser browser, int maxHeight) {
199 int useHeight = Math.min(contentHeight + ((EnvironmentUtils.IS_LINUX) ? 2 : 10), maxHeight);
  /cts/apps/CtsVerifier/src/android/support/wearable/view/
BoxInsetLayout.java 114 int maxHeight = 0;
148 maxHeight = Math.max(maxHeight,
156 maxHeight += getPaddingTop() + mForegroundPadding.top
160 maxHeight = Math.max(maxHeight, getSuggestedMinimumHeight());
166 maxHeight = Math.max(maxHeight, drawable.getMinimumHeight());
171 resolveSizeAndState(maxHeight, heightMeasureSpec,
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
fbobject.c 681 GLuint minWidth = ~0, minHeight = ~0, maxWidth = 0, maxHeight = 0;
748 maxHeight = MAX2(maxHeight, texImg->Height);
763 maxHeight = MAX2(minHeight, att->Renderbuffer->Height);
792 if (minWidth != maxWidth || minHeight != maxHeight) {
    [all...]
  /external/mesa3d/src/mesa/main/
fbobject.c 681 GLuint minWidth = ~0, minHeight = ~0, maxWidth = 0, maxHeight = 0;
748 maxHeight = MAX2(maxHeight, texImg->Height);
763 maxHeight = MAX2(minHeight, att->Renderbuffer->Height);
792 if (minWidth != maxWidth || minHeight != maxHeight) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSComputedStyleDeclaration.cpp     [all...]
  /external/owasp/sanitizer/src/main/org/owasp/html/
CssSchema.java 568 Property maxHeight = new Property(1, maxHeightLiterals0, zeroFns);
569 builder.put("max-height", maxHeight);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLRenderingContextBase.cpp     [all...]
  /external/chromium_org/third_party/mesa/src/include/GL/
glxext.h     [all...]
  /external/mesa3d/include/GL/
glxext.h     [all...]

Completed in 1504 milliseconds

1 2