Home
last modified time | relevance | path

Searched refs:new_x (Results 1 – 18 of 18) sorted by relevance

/external/opencv/cv/src/
Dcvemd.cpp836 CvNode2D *new_x; in icvFindLoop() local
843 new_x = loop[0] = enter_x; in icvFindLoop()
852 new_x = state->rows_x[new_x->i]; in icvFindLoop()
853 while( new_x != 0 && is_used[new_x - _x] ) in icvFindLoop()
854 new_x = new_x->next[0]; in icvFindLoop()
859 new_x = state->cols_x[new_x->j]; in icvFindLoop()
860 while( new_x != 0 && is_used[new_x - _x] && new_x != enter_x ) in icvFindLoop()
861 new_x = new_x->next[1]; in icvFindLoop()
862 if( new_x == enter_x ) in icvFindLoop()
866 if( new_x != 0 ) /* found the next x */ in icvFindLoop()
[all …]
/external/qemu/distrib/sdl-1.2.15/src/video/caca/
DSDL_cacaevents.c88 int new_x = 0, new_y = 0; in Caca_PumpEvents() local
89 new_x = ((event & 0x00fff000) >> 12) * Caca_w / caca_get_width(); in Caca_PumpEvents()
91 posted += SDL_PrivateMouseMotion(0, 0, new_x, new_y); in Caca_PumpEvents()
/external/chromium_org/ppapi/cpp/
Drect.cc111 int32_t new_x = x(); in AdjustToFit() local
115 AdjustAlongAxis(rect.x(), rect.width(), &new_x, &new_width); in AdjustToFit()
117 return Rect(new_x, new_y, new_width, new_height); in AdjustToFit()
215 float new_x = x(); in AdjustToFit() local
219 AdjustAlongAxis(rect.x(), rect.width(), &new_x, &new_width); in AdjustToFit()
221 return FloatRect(new_x, new_y, new_width, new_height); in AdjustToFit()
/external/chromium_org/chrome/browser/ui/
Dweb_contents_sizer.mm15 CGFloat new_x = old_wcv_frame.origin.x;
19 NSMakeRect(new_x, new_y, new_size.width(), new_size.height());
/external/qemu/distrib/sdl-1.2.15/src/video/riscos/
DSDL_riscosevents.c263 Sint16 new_x = regs.r[0]; /* Initialy get as OS units */ in RISCOS_PollMouseHelper() local
272 if (new_x != last_x || new_y != last_y || last_buttons != regs.r[2]) in RISCOS_PollMouseHelper()
296 x = new_x - topLeftX; in RISCOS_PollMouseHelper()
303 if (last_x != new_x || last_y != new_y) in RISCOS_PollMouseHelper()
336 last_x = new_x; in RISCOS_PollMouseHelper()
/external/chromium_org/ash/system/chromeos/
Dtray_caps_lock.cc98 const int new_x = in Layout() local
100 shortcut_label_->SetX(new_x); in Layout()
102 text_label_->SetSize(gfx::Size(text_size.width() + new_x - old_x, in Layout()
/external/chromium_org/ui/gfx/geometry/
Drect_base_impl.h251 Type new_x = x(); in AdjustToFit() local
255 AdjustAlongAxis(rect.x(), rect.width(), &new_x, &new_width); in AdjustToFit()
257 SetRect(new_x, new_y, new_width, new_height); in AdjustToFit()
281 Type new_x = x() + (width() - new_width) / 2; in ClampToCenteredSize() local
283 SetRect(new_x, new_y, new_width, new_height); in ClampToCenteredSize()
/external/chromium_org/pdf/pdfium/
Dpdfium_page.cc249 double new_x, new_y; in GetCharIndex() local
251 rotation, point2.x(), point2.y(), &new_x, &new_y); in GetCharIndex()
254 GetTextPage(), new_x, new_y, kTolerance, kTolerance); in GetCharIndex()
257 FPDF_LINK link = FPDFLink_GetLinkAtPoint(GetPage(), new_x, new_y); in GetCharIndex()
Dpdfium_engine.cc1835 int new_x = static_cast<int>(center.x() * current_zoom_) - in SelectFindResult() local
1837 if (new_x < 0) in SelectFindResult()
1838 new_x = 0; in SelectFindResult()
1839 client_->ScrollToX(new_x); in SelectFindResult()
/external/chromium_org/ui/gfx/android/
Dscroller.h67 void SetFinalX(float new_x);
Dscroller.cc343 void Scroller::SetFinalX(float new_x) { in SetFinalX() argument
344 final_x_ = new_x; in SetFinalX()
/external/chromium_org/ui/views/controls/
Dscroll_view.cc500 const int new_x = in ScrollContentsRegionToBeVisible() local
506 contents_->SetX(-new_x); in ScrollContentsRegionToBeVisible()
508 header_->SetX(-new_x); in ScrollContentsRegionToBeVisible()
/external/chromium_org/chrome/browser/ui/views/tabs/
Dtab_strip.cc1668 int new_x = std::max(new_bounds.x() + delta, max_x); in StackDraggedTabs() local
1669 if (new_x == max_x && !tab_at(i)->data().mini && !is_active_mini && in StackDraggedTabs()
1671 new_x += (active_width - new_bounds.width()); in StackDraggedTabs()
1672 new_bounds.set_x(new_x); in StackDraggedTabs()
1693 int new_x = std::min(max_x, new_bounds.x() + adjusted_delta); in StackDraggedTabs() local
1696 if (new_x == max_x && !tab_at(i)->data().mini && in StackDraggedTabs()
1698 new_x += (last_tab_width - new_bounds.width()); in StackDraggedTabs()
1699 new_bounds.set_x(new_x); in StackDraggedTabs()
Dtab_drag_controller.cc725 const int new_x = in MoveAttached() local
727 if (new_x < attach_x_) in MoveAttached()
937 int new_x = attached_tabstrip_->GetSizeNeededForTabs(tabs_to_source) - in Attach() local
941 mouse_offset_.set_x(new_x); in Attach()
/external/chromium_org/chrome/browser/ui/cocoa/constrained_window/
Dconstrained_window_animation.mm111 CGFloat new_x = -origin.x + scale_offset_x;
113 transform = CGAffineTransformTranslate(transform, new_x, new_y);
/external/qemu/distrib/sdl-1.2.15/src/video/windib/
DSDL_dibvideo.c1385 int new_x = 10; local
1392 new_x = data.primary.left + (primary_w - this->screen->w)/2;
1395 DIB_SetWinPos(this, new_x, new_y);
/external/chromium_org/cc/resources/
Dpicture_layer_tiling.cc511 int new_x = visible_rect_in_content_space.x(); in ComputeSkewport() local
524 skewport.Inset(extrapolation_multiplier * (new_x - old_x), in ComputeSkewport()
/external/qemu/android/skin/
Dwindow.c1257 int new_x, new_y; in skin_window_create() local
1265 new_x = (monitor.w - win_w)/2; in skin_window_create()
1273 SDL_WM_SetPos(new_x, new_y); in skin_window_create()