HomeSort by relevance Sort by last modified time
    Searched refs:entry_width (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/chrome/browser/ui/views/location_bar/
location_bar_layout.h 57 // location bar in |entry_width|. This pass will adjust it to account for
59 void LayoutPass1(int* entry_width);
61 // Second pass of decoration layout process. Pass the |entry_width| computed
64 void LayoutPass2(int* entry_width);
location_bar_layout.cc 110 void LocationBarLayout::LayoutPass1(int* entry_width) {
116 *entry_width -= -2 * (*i)->builtin_padding +
123 *entry_width -= (*i)->computed_width;
126 *entry_width -= item_edit_padding_;
129 void LocationBarLayout::LayoutPass2(int *entry_width) {
133 int max_width = static_cast<int>(*entry_width * (*i)->max_fraction);
137 *entry_width -= (*i)->computed_width;
location_bar_view.cc 850 int entry_width = full_width; local
    [all...]
  /sdk/emulator/qtools/
gtrace.h 20 uint32_t entry_width; member in struct:Gtrace::block_header
gtrace.cpp 75 fh->common.entry_width = 8;
100 bh.entry_width = 8;
  /external/chromium/chrome/browser/ui/views/location_bar/
location_bar_view.cc 467 int entry_width = width() - kEdgeThickness - kEdgeItemPadding; local
480 entry_width -= (kEdgeThickness + kEdgeEditPadding);
485 // We'll adjust this width and take it out of |entry_width| below.
489 entry_width -= (kEdgeThickness + kEdgeItemPadding + location_icon_width +
494 entry_width -= star_view_->GetPreferredSize().width() + kItemPadding;
498 entry_width -= ((*i)->GetPreferredSize().width() + kItemPadding);
503 entry_width -= ((*i)->GetPreferredSize().width() + kItemPadding);
506 entry_width += kEditInternalSpace;
509 // settings out of |entry_width| so we won't take too much space.
518 static_cast<int>((entry_width - total_padding) * kMaxBubbleFraction)))
    [all...]

Completed in 60 milliseconds