Home
last modified time | relevance | path

Searched refs:maxTextWidth (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/ui/android/java/src/org/chromium/ui/autofill/
DAutofillPopup.java194 float maxTextWidth = 0; in getDesiredWidth() local
211 maxTextWidth = Math.max(maxTextWidth, localMax); in getDesiredWidth()
214 maxTextWidth = maxTextWidth / mContext.getResources().getDisplayMetrics().density; in getDesiredWidth()
216 return maxTextWidth + TEXT_PADDING_DP; in getDesiredWidth()
/external/chromium_org/chrome/browser/ui/cocoa/
Dvalidation_message_bubble_cocoa.mm85 const CGFloat maxTextWidth = kWindowMaxWidth - kWindowPadding * 2 - textX;
92 } else if (NSWidth(textFrame) > maxTextWidth) {
93 textFrame.size.width = maxTextWidth;
115 if (NSWidth(subTextFrame) > maxTextWidth) {
116 subTextFrame.size.width = maxTextWidth;
/external/chromium_org/chrome/browser/resources/net_internals/
Dtimeline_graph_view.js704 var maxTextWidth = 0;
707 if (maxTextWidth < textWidth)
708 maxTextWidth = textWidth;
710 x = maxTextWidth + LABEL_HORIZONTAL_SPACING;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DTextAutosizer.cpp222 float maxTextWidth = 0; in processCompositeCluster() local
226maxTextWidth = max<float>(maxTextWidth, clusterInfo.blockContainingAllText->contentLogicalWidth()); in processCompositeCluster()
230 if (compositeClusterShouldBeAutosized(clusterInfos, maxTextWidth)) in processCompositeCluster()
231 …iplier = clusterMultiplier(clusterInfos[0].root->style()->writingMode(), windowInfo, maxTextWidth); in processCompositeCluster()