Searched defs:maxWidth (Results 1 - 16 of 16) sorted by relevance

/external/chromium/chrome/browser/ui/cocoa/extensions/
H A Dbrowser_actions_container_view.h79 @property(nonatomic) CGFloat maxWidth; variable
/external/webkit/Source/WebCore/rendering/style/
H A DStyleBoxData.h52 Length maxWidth() const { return m_maxWidth; } function in class:WebCore::StyleBoxData
H A DRenderStyle.h399 Length maxWidth() const { return m_box->maxWidth(); } function in class:WebCore::RenderStyle
/external/webkit/Source/WebCore/rendering/
H A DRenderScrollbarPart.cpp96 int maxWidth = style()->maxWidth().isUndefined() ? w : calcScrollbarThicknessUsing(style()->maxWidth(), visibleSize); local
97 setWidth(max(minWidth, min(maxWidth, w)));
H A DFixedTableLayout.cpp192 void FixedTableLayout::computePreferredLogicalWidths(int& minWidth, int& maxWidth) argument
209 maxWidth = minWidth;
225 if (m_table->document()->inQuirksMode() && m_table->style()->logicalWidth().isPercent() && maxWidth < TABLE_MAX_WIDTH)
226 maxWidth = TABLE_MAX_WIDTH;
H A DAutoTableLayout.cpp222 void AutoTableLayout::computePreferredLogicalWidths(int& minWidth, int& maxWidth) argument
228 maxWidth = 0;
240 maxWidth += m_layoutStruct[i].effectiveMaxLogicalWidth;
254 maxWidth = max(maxWidth, static_cast<int>(min(maxNonPercent, INT_MAX / 2.0f)));
255 maxWidth = max(maxWidth, static_cast<int>(min(maxPercent, INT_MAX / 2.0f)));
258 maxWidth = max(maxWidth, spanMaxLogicalWidth);
262 maxWidth
[all...]
H A DRenderFrameSet.cpp533 int maxWidth = 0; local
573 maxWidth = max(xPos, maxWidth);
579 int newWidth = maxWidth - borderThickness;
H A DRenderBlockLineLayout.cpp893 int maxWidth = textWrapWidth - 2 * ANDROID_FCTS_MARGIN_PADDING + padding; local
894 setWidth(min(width(), maxWidth));
895 m_minPreferredLogicalWidth = min(m_minPreferredLogicalWidth, maxWidth);
896 m_maxPreferredLogicalWidth = min(m_maxPreferredLogicalWidth, maxWidth);
899 if (overflow.width() > maxWidth) {
900 overflow.setWidth(maxWidth);
/external/webkit/Tools/DumpRenderTree/chromium/
H A DImageDiff.cpp170 int maxWidth = max(baseline.width(), actual.width()); local
174 pixelsDifferent += (maxWidth - w) * h;
177 pixelsDifferent += (maxHeight - h) * maxWidth;
/external/opencv/cvaux/src/
H A Dcvlcm.cpp58 float maxWidth; member in struct:CvLCM
275 float maxWidth)
279 CvLCM LCM = {NULL, VoronoiDiagram,NULL,NULL,maxWidth};
286 if( maxWidth < 0 )
376 if(pNode->radius > LCM->maxWidth)
381 if(pNode1->radius > LCM->maxWidth)
453 if(pNode0->radius <= pLCM->maxWidth && pNode1->radius <= pLCM->maxWidth)
546 if(pNode1->radius >= pLCM->maxWidth)
274 cvLinearContorModelFromVoronoiDiagram(CvVoronoiDiagram2D* VoronoiDiagram, float maxWidth) argument
/external/webkit/Source/WebCore/css/
H A DCSSComputedStyleDeclaration.cpp1263 const Length& maxWidth = style->maxWidth(); local
1264 if (maxWidth.isFixed() && maxWidth.value() == undefinedLength)
1266 return primitiveValueCache->createValue(maxWidth);
/external/webkit/Source/WebKit/qt/declarative/
H A Dqdeclarativewebview.cpp1009 than \a maxWidth by \a maxHeight pixels.
1013 QRect QDeclarativeWebView::elementAreaAt(int x, int y, int maxWidth, int maxHeight) const argument
1018 if (maxWidth <= 0)
1019 maxWidth = INT_MAX;
1022 while (!element.parent().isNull() && element.geometry().width() <= maxWidth && element.geometry().height() <= maxHeight) {
/external/webkit/Source/WebCore/html/canvas/
H A DCanvasRenderingContext2D.cpp1800 void CanvasRenderingContext2D::fillText(const String& text, float x, float y, float maxWidth) argument
1802 drawTextInternal(text, x, y, true, maxWidth, true);
1810 void CanvasRenderingContext2D::strokeText(const String& text, float x, float y, float maxWidth) argument
1812 drawTextInternal(text, x, y, false, maxWidth, true);
1834 void CanvasRenderingContext2D::drawTextInternal(const String& text, float x, float y, bool fill, float /*maxWidth*/, bool /*useMaxWidth*/)
1847 // FIXME: Handle maxWidth.
/external/webkit/Source/WebCore/platform/chromium/
H A DPopupMenuChromium.cpp934 int maxWidth = 0; local
936 maxWidth = rowRect.width() - max(0, m_popupClient->clientPaddingRight() - m_popupClient->clientInsetRight());
939 maxWidth = rowRect.width() - textX;
948 String str = StringTruncator::rightTruncate(itemText, maxWidth, itemFont);
955 int availableWidth = maxWidth - kTextToLabelPadding -
967 textX += maxWidth - itemFont.width(textRun);
/external/quake/quake/src/QW/scitech/include/
H A Dmgraph.h732 short maxWidth; /* Maximum character width */ member in struct:__anon9119
/external/quake/quake/src/WinQuake/scitech/INCLUDE/
H A DMGRAPH.H732 short maxWidth; /* Maximum character width */ member in struct:__anon9418

Completed in 6355 milliseconds