Searched defs:text_width (Results 1 - 14 of 14) sorted by relevance

/external/chromium_org/ui/views/controls/button/
H A Dlabel_button_unittest.cc118 const int text_width = gfx::GetStringWidth(text, font_list); local
125 EXPECT_LT(button.GetPreferredSize().width(), text_width);
129 EXPECT_GT(button.GetPreferredSize().width(), text_width);
131 EXPECT_LT(button.GetPreferredSize().width(), text_width + image_size);
134 EXPECT_GT(button.GetPreferredSize().width(), text_width + image_size);
153 EXPECT_GT(button.GetPreferredSize().width(), text_width + image_size);
156 EXPECT_GT(button.GetPreferredSize().width(), text_width + image_size);
165 EXPECT_LT(button.GetPreferredSize().width(), text_width);
/external/chromium_org/chrome/common/
H A Dbadge_util.cc132 int text_width = local
139 int badge_width = text_width + kPadding * 2;
190 static_cast<float>(rect.width() - text_width) / 2),
/external/chromium_org/ui/app_list/views/
H A Dfolder_header_view.cc175 int text_width = local
179 text_width = std::min(text_width, kMaxFolderNameWidth);
180 text_bounds.set_x(back_bounds.x() + (rect.width() - text_width) / 2);
181 text_bounds.set_width(text_width);
/external/chromium_org/ui/views/controls/tree/
H A Dtree_view.h202 int text_width() const { return text_width_; } function in class:views::TreeView::InternalNode
258 // Sets |node|s text_width.
/external/chromium_org/ui/message_center/views/
H A Dbounded_label.cc98 int text_width = std::max(width - owner_->GetInsets().width(), 0); local
99 lines = GetWrappedText(text_width, lines).size();
112 int text_width = (width < 0) ? std::numeric_limits<int>::max() : local
115 std::vector<base::string16> wrapped = GetWrappedText(text_width, lines);
117 &text_width, &text_height, local
120 size.set_width(text_width + insets.width());
/external/chromium_org/chrome/browser/ui/views/frame/
H A Dopaque_browser_frame_view_layout.cc357 int text_width = std::max( local
362 text_width, window_icon_bounds_.height());
363 leading_button_start_ += text_width + kIconTitleSpacing;
/external/chromium_org/chrome/browser/ui/views/omnibox/
H A Domnibox_result_view.cc493 int text_width = width() - text_x - edge_item_padding_; local
503 text_width = kw_x - text_x - item_padding_;
511 text_bounds_.SetRect(text_x, 0, std::max(text_width, 0), height());
/external/chromium_org/ui/gfx/
H A Dtext_elider.cc519 // |AddToCurrentLine()| when |text_width| is already known.
520 void AddToCurrentLineWithWidth(const base::string16& text, float text_width);
708 float text_width) {
714 current_width_ += text_width;
707 AddToCurrentLineWithWidth(const base::string16& text, float text_width) argument
/external/lldb/source/Interpreter/
H A DOptions.cpp357 int text_width = output_max_columns - strm.GetIndentLevel() - 1; local
369 end = start + text_width;
H A DCommandInterpreter.cpp2728 int text_width; local
2736 text_width = max_columns - 1;
2738 text_width = max_columns - indent_size - 1;
2747 end = start + text_width;
/external/chromium_org/chrome/browser/ui/views/profiles/
H A Davatar_menu_bubble_view.cc292 int text_width = std::max(name_label_->GetPreferredSize().width(), local
294 text_width = std::max(edit_link_->GetPreferredSize().width(), text_width);
295 text_width = std::min(kMaxItemTextWidth, text_width);
296 return gfx::Size(profiles::kAvatarIconWidth + kIconMarginX + text_width,
/external/chromium_org/chrome/browser/ui/views/
H A Dstatus_bubble_views.cc417 int text_width = std::min( local
423 std::max(0, text_width),
675 int text_width = static_cast<int>(popup_bounds.width() - local
677 url_text_ = ElideUrl(url, gfx::FontList(), text_width, languages);
/external/chromium_org/ui/views/controls/combobox/
H A Dcombobox.cc670 int text_width = gfx::GetStringWidth(text, font_list); local
671 if ((text_width + insets.width()) > disclosure_arrow_offset)
672 text_width = disclosure_arrow_offset - insets.width();
674 gfx::Rect text_bounds(x, y, text_width, text_height);
/external/lldb/tools/driver/
H A DDriver.cpp186 int text_width = output_max_columns - indent - 1; local
198 end = start + text_width;

Completed in 2009 milliseconds