Searched refs:Point (Results 1 - 25 of 1480) sorted by relevance

1234567891011>>

/external/clang/test/Modules/Inputs/
H A Dpoint.h1 struct Point { int x, y; }; struct
H A Dignored_macros.h1 struct Point { struct
/external/clang/test/CodeCompletion/
H A Dmember-access.c1 struct Point { struct
7 void test(struct Point *p) {
/external/clang/test/Index/
H A Dcomplete-tabs.c2 struct Point { int x, y; }; struct
4 void f(struct Point *p) {
/external/lldb/test/lang/c/global_variables/
H A Da.c10 struct Point { struct
14 struct Point g_marked_spot = { 20, 21 };
/external/clang/test/FixIt/
H A Dno-typo.c4 } Point; typedef in typeref:struct:__anon18931
H A Dfixit-errors.c15 struct Point { struct
19 struct Point *get_origin();
/external/clang/test/SemaCXX/
H A Dc99.cpp5 struct Point { int x; int y; int z[]; }; // expected-warning{{flexible array members are a C99 feature}} struct
7 Point p1 = { .x = 17, // expected-warning{{designated initializers are a C99 feature}}
H A Dtag-ambig.cpp5 typedef struct Point Point; typedef in typeref:struct:Point
8 class Point;
16 struct Point { }; struct in class:Test
17 virtual bool testMethod (Test::Point& p) = 0;
/external/chromium_org/ui/gfx/geometry/
H A Dpoint.h28 class GFX_EXPORT Point : public PointBase<Point, int, Vector2d> { class in namespace:gfx
30 Point() : PointBase<Point, int, Vector2d>(0, 0) {} function in class:gfx::Point
31 Point(int x, int y) : PointBase<Point, int, Vector2d>(x, y) {} function in class:gfx::Point
36 explicit Point(DWORD point);
37 explicit Point(const POINT& point);
38 Point& operator=(const POINT& point);
40 explicit Point(cons
[all...]
H A Dpoint_conversions.h13 // Returns a Point with each component from the input PointF floored.
14 GFX_EXPORT Point ToFlooredPoint(const PointF& point);
16 // Returns a Point with each component from the input PointF ceiled.
17 GFX_EXPORT Point ToCeiledPoint(const PointF& point);
19 // Returns a Point with each component from the input PointF rounded.
20 GFX_EXPORT Point ToRoundedPoint(const PointF& point);
H A Dpoint.cc15 template class PointBase<Point, int, Vector2d>;
18 Point::Point(DWORD point) : PointBase<Point, int, Vector2d>(0, 0){ function in class:gfx::Point
24 Point::Point(const POINT& point) function in class:gfx::Point
25 : PointBase<Point, int, Vector2d>(point.x, point.y) {
28 Point& Point::operator=(const POINT& point) {
34 POINT Point
41 Point::Point(const CGPoint& point) function in class:gfx::Point
[all...]
H A Dpoint_unittest.cc24 Point a(10, 20);
34 EXPECT_FALSE(Point(1, 0).IsOrigin());
35 EXPECT_FALSE(Point(0, 1).IsOrigin());
36 EXPECT_FALSE(Point(1, 2).IsOrigin());
37 EXPECT_FALSE(Point(-1, 0).IsOrigin());
38 EXPECT_FALSE(Point(0, -1).IsOrigin());
39 EXPECT_FALSE(Point(-1, -2).IsOrigin());
40 EXPECT_TRUE(Point(0, 0).IsOrigin());
52 Point a(1, 5);
57 Point expecte
[all...]
H A Dpoint_conversions.cc11 Point ToFlooredPoint(const PointF& point) {
14 return Point(x, y);
17 Point ToCeiledPoint(const PointF& point) {
20 return Point(x, y);
23 Point ToRoundedPoint(const PointF& point) {
26 return Point(x, y);
/external/chromium_org/crypto/
H A Dp224.h24 struct CRYPTO_EXPORT Point { struct in namespace:crypto::p224
31 // ToString returns an external representation of the Point.
34 // An Point is represented in Jacobian form (x/z², y/z³).
44 void CRYPTO_EXPORT ScalarMult(const Point& in, const uint8* scalar, Point* out);
48 void CRYPTO_EXPORT ScalarBaseMult(const uint8* scalar, Point* out);
51 void CRYPTO_EXPORT Add(const Point& a, const Point& b, Point* out);
54 void CRYPTO_EXPORT Negate(const Point
[all...]
/external/lldb/test/functionalities/data-formatter/data-formatter-globals/
H A Dmain.cpp14 struct Point { struct
17 Point(int X = 3, int Y = 2) : x(X), y(Y) {} function in struct:Point
20 Point g_point(3,4);
21 Point* g_point_pointer = new Point(7,5);
/external/chromium_org/remoting/android/java/src/org/chromium/chromoting/
H A DRenderData.java8 import android.graphics.Point;
27 public Point cursorPosition = new Point();
/external/chromium_org/chrome/browser/ui/window_sizer/
H A Dwindow_sizer_aura.cc14 gfx::Point WindowSizer::GetDefaultPopupOrigin(const gfx::Size& size,
18 return gfx::Point();
/external/chromium_org/content/common/
H A Ddrag_messages.h23 gfx::Point /* client_pt */,
24 gfx::Point /* screen_pt */,
29 gfx::Point /* client_pt */,
30 gfx::Point /* screen_pt */,
37 gfx::Point /* client_pt */,
38 gfx::Point /* screen_pt */,
43 gfx::Point /* client_pt */,
44 gfx::Point /* screen_pt */,
/external/chromium_org/chrome/browser/chromeos/ui/
H A Daccessibility_focus_ring_controller_unittest.cc94 const gfx::Point* points = rings[0].points;
95 EXPECT_EQ(gfx::Point(0, 90), points[0]);
96 EXPECT_EQ(gfx::Point(0, 10), points[1]);
97 EXPECT_EQ(gfx::Point(0, 0), points[2]);
98 EXPECT_EQ(gfx::Point(10, 0), points[3]);
99 EXPECT_EQ(gfx::Point(190, 0), points[4]);
100 EXPECT_EQ(gfx::Point(200, 0), points[5]);
101 EXPECT_EQ(gfx::Point(200, 10), points[6]);
102 EXPECT_EQ(gfx::Point(200, 90), points[7]);
103 EXPECT_EQ(gfx::Point(20
[all...]
/external/chromium_org/chrome/browser/ui/panels/
H A Ddetached_panel_drag_handler.h12 class Point;
18 static void HandleDrag(Panel* panel, const gfx::Point& target_position);
H A Dpanel_mouse_watcher_observer.h9 class Point;
18 virtual void OnMouseMove(const gfx::Point& mouse_position) = 0;
/external/chromium_org/ppapi/cpp/
H A Dmouse_cursor.h51 const Point& hot_spot = Point(0, 0));
/external/chromium_org/ui/aura/test/
H A Daura_test_utils.h11 class Point;
19 const gfx::Point& QueryLatestMousePositionRequestInHost(WindowTreeHost* host);
/external/chromium_org/ui/compositor/
H A Ddebug_utils.h11 class Point;
20 gfx::Point mouse_location);

Completed in 8693 milliseconds

1234567891011>>