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:WebCore::StyleBoxData
H A DRenderStyle.h482 const Length& minHeight() const { return m_box->minHeight(); } function in class:WebCore::RenderStyle
487 const Length& logicalMinWidth() const { return isHorizontalWritingMode() ? minWidth() : minHeight(); }
489 const Length& logicalMinHeight() const { return isHorizontalWritingMode() ? minHeight() : minWidth(); }
/external/chromium_org/media/base/android/java/src/org/chromium/media/
H A DVideoCaptureAndroid.java31 IdAndSizes(String model, String device, int minWidth, int minHeight) { argument
35 mMinHeight = minHeight;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderScrollbarPart.cpp122 int minHeight = calcScrollbarThicknessUsing(MinSize, style()->minHeight(), visibleSize); local
124 setHeight(max(minHeight, min(maxHeight, h)));
H A DRenderMultiColumnFlowThread.cpp293 void RenderMultiColumnFlowThread::updateMinimumPageHeight(LayoutUnit offset, LayoutUnit minHeight) argument
296 multicolSet->updateMinimumColumnHeight(minHeight);
H A DRenderDeprecatedFlexibleBox.cpp661 LayoutUnit minHeight = height() + toAdd; local
734 if (height() < minHeight)
735 setHeight(minHeight);
1065 Length minHeight = child->style()->minHeight(); local
1066 if (minHeight.isFixed() || minHeight.isAuto()) {
1067 LayoutUnit minHeight = child->style()->minHeight().value(); local
1069 LayoutUnit allowedShrinkage = min<LayoutUnit>(0, minHeight
[all...]
H A DRenderFlexibleBox.cpp690 LayoutUnit minHeight = borderAndPaddingLogicalHeight() local
693 if (height() < minHeight)
694 setLogicalHeight(minHeight);
871 Length min = isHorizontalFlow() ? child->style()->minWidth() : child->style()->minHeight();
H A DRenderBlock.cpp4662 void RenderBlock::updateMinimumPageHeight(LayoutUnit offset, LayoutUnit minHeight) argument
4665 flowThread->updateMinimumPageHeight(offsetFromLogicalTopOfFirstPage() + offset, minHeight);
4667 colInfo->updateMinimumColumnHeight(minHeight);
/external/chromium_org/content/renderer/browser_plugin/
H A Dbrowser_plugin_browsertest.cc198 int minHeight = ExecuteScriptAndReturnInt( local
200 EXPECT_EQ(240, minHeight);
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DViewportDescription.h84 Length minHeight; member in struct:WebCore::ViewportDescription
106 && 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.cpp594 const int minHeight = 8; local
598 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/ ...

Completed in 657 milliseconds

12