Searched refs:point (Results 26 - 50 of 2290) sorted by path

1234567891011>>

/external/ceres-solver/examples/
H A Dsnavely_reprojection_error.h51 // focal length and 2 for radial distortion. The principal point is not modeled
59 const T* const point,
63 ceres::AngleAxisRotatePoint(camera, point, p);
83 // Compute final projected point position.
109 // principal point is not modeled (i.e. it is assumed be located at
113 // center point.
120 const T* const point,
130 QuaternionRotatePoint(camera_rotation, point, p);
146 // Compute final projected point position.
58 operator ()(const T* const camera, const T* const point, T* residuals) const argument
118 operator ()(const T* const camera_rotation, const T* const camera_translation_and_intrinsics, const T* const point, T* residuals) const argument
/external/ceres-solver/internal/ceres/
H A Dsystem_test.cc387 // Each Residual block takes a point and a camera as input and
394 // Each observation correponds to a pair of a camera and a point
398 double* point = points + 3 * point_index()[i]; local
399 problem_.AddResidualBlock(cost_function, NULL, camera, point);
429 // focal length and 2 for radial distortion. The principal point is
433 // center point.
438 const T* const point,
441 AngleAxisRotatePoint(camera, point, p);
437 operator ()(const T* const camera, const T* const point, T* residuals) const argument
/external/ceres-solver/jni/
H A DAndroid.mk41 # You will have to specify the environment EIGEN_PATH to point to the
73 # define CERES_GLOG_DIR to point to it.
/external/chromium_org/apps/ui/views/
H A Dapp_window_frame_view.cc163 int AppWindowFrameView::NonClientHitTest(const gfx::Point& point) { argument
175 if (!expanded_bounds.Contains(point))
188 int frame_component = GetHTComponentForFrame(point,
200 if (draggable_region && draggable_region->contains(point.x(), point.y()))
203 int client_component = widget_->client_view()->NonClientHitTest(point);
207 // Then see if the point is within any of the window controls.
209 close_button_->GetMirroredBounds().Contains(point)) {
213 maximize_button_->GetMirroredBounds().Contains(point)) ||
215 restore_button_->GetMirroredBounds().Contains(point))) {
[all...]
H A Dapp_window_frame_view.h74 virtual int NonClientHitTest(const gfx::Point& point) OVERRIDE;
/external/chromium_org/ash/accelerators/
H A Daccelerator_controller.cc342 gfx::Point point = Shell::GetScreen()->GetCursorScreenPoint(); local
343 gfx::Display display = Shell::GetScreen()->GetDisplayNearestPoint(point);
/external/chromium_org/ash/desktop_background/
H A Ddesktop_background_view.cc208 const gfx::Point& point,
210 Shell::GetInstance()->ShowContextMenu(point, source_type);
206 ShowContextMenuForView( views::View* source, const gfx::Point& point, ui::MenuSourceType source_type) argument
H A Ddesktop_background_view.h30 const gfx::Point& point,
/external/chromium_org/ash/display/
H A Dcursor_window_controller.cc36 virtual gfx::NativeCursor GetCursor(const gfx::Point& point) OVERRIDE {
40 const gfx::Point& point) const OVERRIDE {
152 gfx::Point point = aura::Env::GetInstance()->last_mouse_location();
154 Shell::GetPrimaryRootWindow()->GetHost()->ConvertPointToHost(&point);
156 point.Offset(-bounds_in_screen_.x(), -bounds_in_screen_.y());
158 point.Offset(-hot_point_.x(), -hot_point_.y());
160 bounds.set_origin(point);
H A Ddisplay_controller_unittest.cc1044 gfx::Point point; local
1046 GetRootTransform().TransformPoint(&point);
1047 EXPECT_EQ("15,10", point.ToString());
1050 point.SetPoint(0, 0);
1052 GetRootTransform().TransformPoint(&point);
1053 EXPECT_EQ("15,10", point.ToString());
H A Dmouse_cursor_event_filter.cc44 gfx::Point* point) {
45 ::wm::ConvertPointFromScreen(root_window, point);
46 root_window->GetHost()->ConvertPointToNativeScreen(point);
208 // now fit the point inside the native bounds.
43 ConvertPointFromScreenToNative(const aura::Window* root_window, gfx::Point* point) argument
H A Dscreen_ash.cc31 const gfx::Point& point) {
37 int distance = display.bounds().ManhattanDistanceToPoint(point);
84 const gfx::Point& point) OVERRIDE {
98 const gfx::Point& point) const OVERRIDE {
99 return FindDisplayNearestPoint(display_list_, point);
133 gfx::Display ScreenAsh::FindDisplayContainingPoint(const gfx::Point& point) { argument
134 return GetDisplayManager()->FindDisplayContainingPoint(point);
162 gfx::Point point = rect.origin(); local
164 ConvertPointToScreen(window, &point);
165 return gfx::Rect(point, rec
30 FindDisplayNearestPoint(const std::vector<gfx::Display>& displays, const gfx::Point& point) argument
171 gfx::Point point = rect.origin(); local
219 GetWindowAtScreenPoint(const gfx::Point& point) argument
[all...]
H A Dscreen_ash.h30 // Finds the display that contains |point| in screeen coordinates.
33 static gfx::Display FindDisplayContainingPoint(const gfx::Point& point);
67 virtual gfx::NativeWindow GetWindowAtScreenPoint(const gfx::Point& point)
74 const gfx::Point& point) const OVERRIDE;
H A Dscreen_position_controller.cc124 gfx::Point* point) {
126 aura::Window::ConvertPointToTarget(window, root, point);
129 point->Offset(display_origin.x(), display_origin.y());
134 gfx::Point* point) {
138 point->Offset(-display_origin.x(), -display_origin.y());
139 aura::Window::ConvertPointToTarget(root, window, point);
144 gfx::Point* point) {
146 root->GetHost()->ConvertPointFromHost(point);
148 GetRootWindowRelativeToWindow(root, *point);
149 *point
122 ConvertPointToScreen( const aura::Window* window, gfx::Point* point) argument
132 ConvertPointFromScreen( const aura::Window* window, gfx::Point* point) argument
142 ConvertHostPointToScreen( aura::Window* root_window, gfx::Point* point) argument
[all...]
H A Dscreen_position_controller.h20 gfx::Point* point) OVERRIDE;
22 gfx::Point* point) OVERRIDE;
24 gfx::Point* point) OVERRIDE;
H A Dscreen_position_controller_unittest.cc68 // Converts a point (x, y) in host window's coordinate to screen and
71 gfx::Point point(x, y);
73 window_->GetRootWindow(), &point);
74 return point.ToString();
106 // The point is on the primary root window.
108 // The point is out of the all root windows.
110 // The point is on the secondary display.
114 // The point is on the primary root window.
116 // The point is out of the all root windows.
118 // The point i
[all...]
/external/chromium_org/ash/drag_drop/
H A Ddrag_drop_controller.cc25 #include "ui/gfx/point.h"
94 virtual gfx::NativeCursor GetCursor(const gfx::Point& point) OVERRIDE {
97 virtual int GetNonClientComponent(const gfx::Point& point) const OVERRIDE {
H A Ddrag_drop_controller_unittest.cc576 gfx::Point point = gfx::Rect(drag_view->bounds()).CenterPoint(); local
879 gfx::Point point = gfx::Rect(drag_view1->bounds()).CenterPoint(); local
880 DispatchGesture(ui::ET_GESTURE_LONG_PRESS, point);
886 gfx::Point gesture_location = point;
930 gfx::Point point = gfx::Rect(drag_view->bounds()).CenterPoint(); local
931 DispatchGesture(ui::ET_GESTURE_LONG_PRESS, point);
932 DispatchGesture(ui::ET_GESTURE_LONG_TAP, point);
956 gfx::Point point = gfx::Rect(drag_view->bounds()).CenterPoint(); local
957 DispatchGesture(ui::ET_GESTURE_LONG_PRESS, point);
964 DispatchGesture(ui::ET_GESTURE_LONG_TAP, point);
[all...]
/external/chromium_org/ash/frame/caption_buttons/
H A Dframe_caption_button_container_view.cc23 #include "ui/gfx/point.h"
89 // Converts |point| from |src| to |dst| and hittests against |dst|.
92 const gfx::Point& point) {
93 gfx::Point converted(point);
188 const gfx::Point& point) const {
190 ConvertPointToViewAndHitTest(this, close_button_, point)) {
193 ConvertPointToViewAndHitTest(this, size_button_, point)) {
196 ConvertPointToViewAndHitTest(this, minimize_button_, point)) {
375 // with the center point closest to |position_in_screen|.
90 ConvertPointToViewAndHitTest(const views::View* src, const views::View* dst, const gfx::Point& point) argument
H A Dframe_caption_button_container_view.h93 // Determines the window HT* code for the caption button at |point|. Returns
94 // HTNOWHERE if |point| is not over any of the caption buttons. |point| must
96 int NonClientHitTest(const gfx::Point& point) const;
/external/chromium_org/ash/frame/
H A Dcustom_frame_view_ash.cc477 int CustomFrameViewAsh::NonClientHitTest(const gfx::Point& point) { argument
479 header_view_->caption_button_container(), point);
H A Dcustom_frame_view_ash.h48 virtual int NonClientHitTest(const gfx::Point& point) OVERRIDE;
/external/chromium_org/ash/magnifier/
H A Dmagnification_controller.cc77 virtual void MoveWindow(const gfx::Point& point, bool animate) OVERRIDE;
119 // Move the mouse cursot to the given point. Actual move will be done when
503 void MagnificationControllerImpl::MoveWindow(const gfx::Point& point, argument
508 Redraw(point, scale_, animate);
H A Dmagnification_controller.h12 #include "ui/gfx/point.h"
48 // Set the top-left point of the magnification window.
50 virtual void MoveWindow(const gfx::Point& point, bool animate) = 0;
51 // Returns the current top-left point of the magnification window.
/external/chromium_org/ash/
H A Droot_window_controller.cc228 virtual gfx::NativeCursor GetCursor(const gfx::Point& point) OVERRIDE {
232 const gfx::Point& point) const OVERRIDE {

Completed in 382 milliseconds

1234567891011>>