Searched refs:next_x (Results 1 – 7 of 7) sorted by relevance
/external/chromium_org/chrome/browser/ui/views/download/ |
D | download_shelf_view.cc | 230 int next_x = show_link_only ? kLeftPadding : in Layout() local 233 arrow_image_->SetBounds(next_x, in Layout() 236 next_x += image_size.width() + kDownloadsTitlePadding; in Layout() 237 show_all_view_->SetBounds(next_x, in Layout() 241 next_x += show_all_size.width() + kCloseAndLinkPadding; in Layout() 246 close_button_->SetBounds(next_x, y, in Layout() 247 is_maximized ? width() - next_x : close_button_size.width(), in Layout() 257 next_x = kLeftPadding; in Layout() 262 int x = next_x; in Layout() 271 next_x += item_width; in Layout() [all …]
|
/external/chromium_org/third_party/sqlite/src/test/ |
D | fts3comp1.test | 27 set next_x 0 29 incr ::next_x 30 set ::strings($::next_x) $x 31 return $::next_x 42 set next_x 0
|
/external/opencv/cv/src/ |
D | cvemd.cpp | 754 CvNode2D head, *cur_x, *next_x, *leave_x = 0; in icvNewSolution() local 803 while( (next_x = cur_x->next[0]) != leave_x ) in icvNewSolution() 805 cur_x = next_x; in icvNewSolution() 808 cur_x->next[0] = next_x->next[0]; in icvNewSolution() 813 while( (next_x = cur_x->next[1]) != leave_x ) in icvNewSolution() 815 cur_x = next_x; in icvNewSolution() 818 cur_x->next[1] = next_x->next[1]; in icvNewSolution()
|
/external/chromium_org/chrome/browser/ui/views/tabs/ |
D | stacked_tab_strip_layout.cc | 341 for (int next_x = x, i = index - 1; i > active_index(); --i) { in MakeVisible() local 342 next_x = std::max(GetMinXCompressed(i), next_x - tab_offset()); in MakeVisible() 343 SetIdealBoundsAt(i, next_x); in MakeVisible()
|
D | tab_strip.cc | 2397 int next_x = 0; in GenerateIdealBoundsForMiniTabs() local 2402 tabs_.set_ideal_bounds(index, gfx::Rect(next_x, 0, mini_width, tab_height)); in GenerateIdealBoundsForMiniTabs() 2403 next_x += mini_width + kTabHorizontalOffset; in GenerateIdealBoundsForMiniTabs() 2406 next_x += kMiniToNonMiniGap; in GenerateIdealBoundsForMiniTabs() 2409 return next_x; in GenerateIdealBoundsForMiniTabs()
|
D | tab_drag_controller.cc | 1344 int next_x = attached_tabstrip_->ideal_bounds(index + 1).x(); in ShouldDragToNextStackedTab() local 1345 int mid_x = std::min(next_x - kStackedDistance, in ShouldDragToNextStackedTab() 1346 active_x + (next_x - active_x) / 4); in ShouldDragToNextStackedTab()
|
/external/chromium_org/chrome/browser/ui/views/bookmarks/ |
D | bookmark_bar_view.cc | 1919 int next_x = x + pref.width() + kButtonPadding; in LayoutItems() local 1920 child->SetVisible(next_x < max_x); in LayoutItems() 1922 x = next_x; in LayoutItems()
|