Searched refs:maxWidth (Results 76 - 100 of 119) sorted by relevance

12345

/external/mesa3d/src/mesa/main/
H A Dfbobject.c681 GLuint minWidth = ~0, minHeight = ~0, maxWidth = 0, maxHeight = 0; local
746 maxWidth = MAX2(maxWidth, texImg->Width);
761 maxWidth = MAX2(minWidth, att->Renderbuffer->Width);
792 if (minWidth != maxWidth || minHeight != maxHeight) {
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebViewImpl.cpp3208 m_matchesHeuristicsForGpuRasterization = description.maxWidth == Length(DeviceWidth)
3221 if (adjustedDescription.maxWidth.isFixed() && adjustedDescription.maxWidth.value() <= legacyWidthSnappingMagicNumber)
3222 adjustedDescription.maxWidth = Length(DeviceWidth);
3225 adjustedDescription.minWidth = adjustedDescription.maxWidth;
3235 if (description.maxWidth == Length(DeviceWidth)
3236 || (description.maxWidth.type() == Auto && m_pageScaleConstraintsSet.pageDefinedConstraints().initialScale == 1.0f))
/external/chromium_org/third_party/WebKit/Source/core/animation/css/
H A DCSSAnimatableValueFactory.cpp381 return createFromLength(style.maxWidth(), style);
/external/chromium_org/third_party/skia/src/core/
H A DSkPaint.cpp1159 size_t SkPaint::breakText(const void* textD, size_t length, SkScalar maxWidth, argument
1162 if (0 == length || 0 >= maxWidth) {
1185 maxWidth /= scale;
1196 Sk48Dot16 max = SkScalarToFixed(maxWidth);
/external/skia/src/core/
H A DSkPaint.cpp1198 size_t SkPaint::breakText(const void* textD, size_t length, SkScalar maxWidth, argument
1201 if (0 == length || 0 >= maxWidth) {
1224 maxWidth /= scale;
1235 Sk48Dot16 max = SkScalarToFixed(maxWidth);
/external/chromium_org/chrome/browser/resources/history/
H A Dhistory.js1675 var maxWidth = widths.length ? Math.max.apply(null, widths) : 0;
1684 styleEl.textContent = '.entry .time { min-width: ' + maxWidth + 'px; }';
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTable.cpp653 void RenderTable::computeIntrinsicLogicalWidths(LayoutUnit& minWidth, LayoutUnit& maxWidth) const
661 const_cast<RenderTable*>(this)->m_tableLayout->computeIntrinsicLogicalWidths(minWidth, maxWidth);
688 // FIXME: This should probably be checking for isSpecified since you should be able to use percentage or calc values for maxWidth.
H A DRenderBox.cpp1879 float maxWidth = 0; local
1892 maxWidth = std::max<float>(maxWidth, toRenderListMarker(itemMarker)->logicalWidth().toFloat());
1896 return maxWidth;
/external/chromium_org/third_party/skia/src/pathops/
H A DSkOpAngle.cpp504 double maxWidth = SkTMax(maxX - minX, maxY - minY);
505 delta /= maxWidth;
/external/skia/src/pathops/
H A DSkOpAngle.cpp507 double maxWidth = SkTMax(maxX - minX, maxY - minY);
508 delta /= maxWidth;
/external/chromium_org/third_party/WebKit/Source/web/resources/
H A DcalendarPicker.js2786 * @param {!number} maxWidth Maximum width in pixels.
2788 function MonthPopupButton(maxWidth) {
2811 this._useShortMonth = this._shouldUseShortMonth(maxWidth);
2812 this.element.style.maxWidth = maxWidth + "px";
2825 * @param {!number} maxWidth Maximum available width in pixels.
2828 MonthPopupButton.prototype._shouldUseShortMonth = function(maxWidth) {
2833 if (this.element.offsetWidth > maxWidth)
/external/chromium_org/ui/login/account_picker/
H A Duser_pod_row.js2448 var maxWidth = Oobe.getInstance().clientAreaSize.width;
2450 while (maxWidth < this.columnsToWidth_(columns) && columns > 1)
2461 while (maxWidth >= this.columnsToWidth_(columns + 1) &&
/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 ...
/external/chromium_org/chrome/browser/resources/ntp4/
H A Dtile_page.js1074 notification.querySelector('span').style.maxWidth =
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DRenderStyle.cpp588 || m_box->maxWidth() != other.m_box->maxWidth()
H A DRenderStyle.h465 const Length& maxWidth() const { return m_box->maxWidth(); } function in class:blink::RenderStyle
472 const Length& logicalMaxWidth() const { return isHorizontalWritingMode() ? maxWidth() : maxHeight(); }
474 const Length& logicalMaxHeight() const { return isHorizontalWritingMode() ? maxHeight() : maxWidth(); }
/external/deqp/modules/gles31/functional/
H A Des31fSeparateShaderTests.cpp980 GLint maxWidth, GLint maxHeight)
983 GLint width = de::min(target.getWidth(), maxWidth);
/external/pdfium/core/src/fxge/Microsoft SDK/include/
H A DDWrite.h3632 /// <param name="maxWidth">Layout maximum width</param>
3637 FLOAT maxWidth
4815 /// <param name="maxWidth">Width of the layout box.</param>
4825 FLOAT maxWidth, variable
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSComputedStyleDeclaration.cpp2071 const Length& maxWidth = style->maxWidth(); local
2072 if (maxWidth.isMaxSizeNone())
2074 return zoomAdjustedPixelValueForLength(maxWidth, *style);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
H A DCanvasProfileView.js136 this._replayImageElement.style.maxWidth = parent.clientWidth + "px";
H A DHeapSnapshotGridNodes.js1494 urlElement.style.maxWidth = "75%";
/external/opencv/cvaux/include/
H A Dcvaux.h1024 float maxWidth);
/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/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

Completed in 976 milliseconds

12345