Searched defs:minHeight (Results 1 - 25 of 31) sorted by relevance

12

/external/chromium_org/chrome/browser/resources/identity_scope_approval_dialog/
H A Dbackground.js18 minHeight: 768,
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DStyleBoxData.h50 const Length& minHeight() const { return m_minHeight; } function in class:blink::StyleBoxData
H A DRenderStyle.h466 const Length& minHeight() const { return m_box->minHeight(); } function in class:blink::RenderStyle
471 const Length& logicalMinWidth() const { return isHorizontalWritingMode() ? minWidth() : minHeight(); }
473 const Length& logicalMinHeight() const { return isHorizontalWritingMode() ? minHeight() : minWidth(); }
/external/chromium_org/media/base/android/java/src/org/chromium/media/
H A DVideoCaptureAndroid.java30 IdAndSizes(String model, String device, int minWidth, int minHeight) { argument
34 mMinHeight = minHeight;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderScrollbarPart.cpp120 int minHeight = calcScrollbarThicknessUsing(MinSize, style()->minHeight(), visibleSize); local
122 setHeight(std::max(minHeight, std::min(maxHeight, h)));
H A DRenderMultiColumnFlowThread.cpp293 void RenderMultiColumnFlowThread::updateMinimumPageHeight(LayoutUnit offset, LayoutUnit minHeight) argument
296 multicolSet->updateMinimumColumnHeight(minHeight);
H A DRenderDeprecatedFlexibleBox.cpp645 LayoutUnit minHeight = height() + toAdd; local
718 if (height() < minHeight)
719 setHeight(minHeight);
1041 Length minHeight = child->style()->minHeight(); local
1042 if (minHeight.isFixed() || minHeight.isAuto()) {
1043 LayoutUnit minHeight = child->style()->minHeight().value(); local
1045 LayoutUnit allowedShrinkage = std::min<LayoutUnit>(0, minHeight
[all...]
H A DRenderFlexibleBox.cpp669 LayoutUnit minHeight = borderAndPaddingLogicalHeight() local
672 if (height() < minHeight)
673 setLogicalHeight(minHeight);
850 Length min = isHorizontalFlow() ? child.style()->minWidth() : child.style()->minHeight();
H A DRenderBlock.cpp4086 void RenderBlock::updateMinimumPageHeight(LayoutUnit offset, LayoutUnit minHeight) argument
4089 flowThread->updateMinimumPageHeight(offsetFromLogicalTopOfFirstPage() + offset, minHeight);
4091 colInfo->updateMinimumColumnHeight(minHeight);
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DViewportDescription.h83 Length minHeight; member in struct:blink::ViewportDescription
105 && minHeight == other.minHeight
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dframebuffer.c407 GLuint minWidth = ~0, minHeight = ~0; local
418 minHeight = MIN2(minHeight, rb->Height);
424 fb->Height = minHeight;
H A Dfbobject.c681 GLuint minWidth = ~0, minHeight = ~0, maxWidth = 0, maxHeight = 0; local
747 minHeight = MIN2(minHeight, texImg->Height);
762 minHeight = MIN2(minHeight, att->Renderbuffer->Height);
763 maxHeight = MAX2(minHeight, att->Renderbuffer->Height);
792 if (minWidth != maxWidth || minHeight != maxHeight) {
881 fb->Height = minHeight;
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
H A DDrawUtils.java227 int minHeight,
233 if (imageWidth < minWidth && imageHeight < minHeight) {
235 Image thumbnail = new Image(null, minWidth, minHeight);
238 drawImageCHCV(gc, image, 0, 0, minWidth, minHeight);
225 getThubmnail(Image image, int minWidth, int minHeight, int maxWidth, int maxHeight) argument
/external/mesa3d/src/mesa/main/
H A Dframebuffer.c407 GLuint minWidth = ~0, minHeight = ~0; local
418 minHeight = MIN2(minHeight, rb->Height);
424 fb->Height = minHeight;
H A Dfbobject.c681 GLuint minWidth = ~0, minHeight = ~0, maxWidth = 0, maxHeight = 0; local
747 minHeight = MIN2(minHeight, texImg->Height);
762 minHeight = MIN2(minHeight, att->Renderbuffer->Height);
763 maxHeight = MAX2(minHeight, att->Renderbuffer->Height);
792 if (minWidth != maxWidth || minHeight != maxHeight) {
881 fb->Height = minHeight;
/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
109 , m_minHeight (minHeight)
312 int minHeight; 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);
463 spec.minHeight = 256;
477 spec.minHeight = 256;
491 spec.minHeight = 1024;
505 spec.minHeight = 1024;
519 spec.minHeight
[all...]
H A DteglResizeTests.cpp265 const int minHeight = de::min(oldHeight, newHeight); local
274 const int oldY = yCorner == 0 ? 0 : oldHeight - minHeight;
275 const int newY = yCorner == 0 ? 0 : newHeight - minHeight;
277 oldSurface.getSubAccess(oldX, oldY, minWidth, minHeight);
279 newSurface.getSubAccess(newX, newY, minWidth, minHeight);
/external/deqp/modules/gles2/functional/
H A Des2fPolygonOffsetTests.cpp193 void checkCanvasSize (int width, int height, int minWidth, int minHeight) argument
195 if (width < minWidth || height < minHeight)
H A Des2fTextureMipmapTests.cpp553 const int minHeight = 8; local
557 bool partitionY = partition && height > minHeight && !partitionX;
/external/deqp/modules/gles3/functional/
H A Des3fPolygonOffsetTests.cpp196 void checkCanvasSize (int width, int height, int minWidth, int minHeight) argument
198 if (width < minWidth || height < minHeight)
H A Des3fTextureMipmapTests.cpp592 const int minHeight = 8; local
596 bool partitionY = partition && height > minHeight && !partitionX;
/external/deqp/modules/gles2/accuracy/
H A Des2aTextureMipmapTests.cpp496 const int minHeight = 8; local
500 bool partitionY = partition && height > minHeight && !partitionX;
/external/deqp/modules/gles3/accuracy/
H A Des3aTextureMipmapTests.cpp484 const int minHeight = 8; local
488 bool partitionY = partition && height > minHeight && !partitionX;
/external/robolectric/lib/main/
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/accessibilityservice/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ui.forms_3.5.2.r36_v20100702.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 5282 milliseconds

12