Searched defs:Point (Results 1 - 25 of 72) sorted by relevance

123

/external/clang/test/FixIt/
H A Dno-typo.c4 } Point; typedef in typeref:struct:__anon2549
H A Dfixit-errors.c15 struct Point { struct
19 struct Point *get_origin();
H A Dtypo.c7 struct Point { struct
12 struct Point top_left, // expected-note{{'top_left' declared here}}
/external/clang/test/Modules/Inputs/
H A Dignored_macros.h1 struct Point { struct
H A Dpoint.h1 struct Point { int x, y; }; struct
/external/clang/test/Index/
H A Dcomplete-tabs.c2 struct Point { int x, y; }; struct
4 void f(struct Point *p) {
H A Dcomplete-macro-args.c1 struct Point { struct
10 void test(struct Point *p) {
17 void test2(struct Point *p) {
23 void test3(struct Point *p) {
32 void test3(struct Point *p) {
36 void test3(struct Point *p) {
/external/swiftshader/third_party/PowerVR_SDK/Tools/
H A DPVRTTrans.h20 PVRTVECTOR3 Point[8]; ///< 8 Vertices member in struct:PVRTBOUNDINGBOX_TAG
/external/clang/test/CodeCompletion/
H A Dmember-access.c1 struct Point { struct
7 void test(struct Point *p) {
H A Dmacros.c5 struct Point { struct
10 void test(struct Point *p) {
/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;
H A Darrow-operator.cpp29 class Point {}; class in namespace:rdar8875304
30 class Line_Segment{ public: Line_Segment(const Point&){} }; argument
31 class Node { public: Point Location(){ Point p; return p; } };
/external/autotest/client/site_tests/firmware_TouchMTB/geometry/
H A Dminicircle.py24 from elements import Point, Circle namespace
32 center = Point((p1.x + p2.x) * 0.5, (p1.y + p2.y) * 0.5)
68 center = Point(x, y)
114 """Convert the points to a set of Point objects.
118 return Set([p if isinstance(p, Point) else Point(*p) for p in points])
H A Delements.py21 class Point: class in inherits:
54 return 'Point: (%.4f, %.4f)' % (self.x, self.y)
/external/libchrome/crypto/
H A Dp224.h26 struct CRYPTO_EXPORT Point { struct in namespace:crypto::p224
33 // ToString returns an external representation of the Point.
36 // An Point is represented in Jacobian form (x/z², y/z³).
46 void CRYPTO_EXPORT ScalarMult(const Point& in,
48 Point* out);
52 void CRYPTO_EXPORT ScalarBaseMult(const uint8_t* scalar, Point* out);
55 void CRYPTO_EXPORT Add(const Point& a, const Point& b, Point* out);
58 void CRYPTO_EXPORT Negate(const Point
[all...]
/external/autotest/client/site_tests/firmware_TouchMTB/tests/
H A Dgeometry_unittest.py16 from geometry.elements import Circle, Point namespace
78 expected_circle = Circle(Point(*center_values), radius)
109 points = [Point(*p) for p in expected_cluster1 + expected_cluster2]
116 expected_set1 = Set([Point(*p) for p in expected_cluster1])
117 expected_set2 = Set([Point(*p) for p in expected_cluster2])
/external/chromium-trace/catapult/devil/devil/utils/
H A Dgeometry.py10 class Point(collections.namedtuple('Point', ['x', 'y'])): class in inherits:collections.namedtuple('Point', ['x', 'y']
24 if isinstance(other, Point):
25 return Point(self.x + other.x, self.y + other.y)
32 # on the right, which does not make sense for a Point.
37 return Point(factor * self.x, factor * self.y)
45 top_left: A pair of (left, top) coordinates. Might be given as a Point
52 if not isinstance(top_left, Point):
53 top_left = Point(*top_left)
54 if not isinstance(bottom_right, Point)
[all...]
/external/libmojo/third_party/catapult/devil/devil/utils/
H A Dgeometry.py10 class Point(collections.namedtuple('Point', ['x', 'y'])): class in inherits:collections.namedtuple('Point', ['x', 'y']
24 if isinstance(other, Point):
25 return Point(self.x + other.x, self.y + other.y)
32 # on the right, which does not make sense for a Point.
37 return Point(factor * self.x, factor * self.y)
45 top_left: A pair of (left, top) coordinates. Might be given as a Point
52 if not isinstance(top_left, Point):
53 top_left = Point(*top_left)
54 if not isinstance(bottom_right, Point)
[all...]
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/immutable/
H A DPoint.java18 public class Point { class
30 public Point(Double x, Double y) { method in class:Point
37 return "<Point x=" + String.valueOf(x) + " y=" + String.valueOf(y) + ">";
42 if (obj instanceof Point) {
/external/ImageMagick/Magick++/lib/Magick++/
H A DGeometry.h198 class MagickPPExport Point; member in namespace:Magick
200 // Compare two Point objects
202 (const Magick::Point& left_,const Magick::Point& right_);
204 (const Magick::Point& left_,const Magick::Point& right_);
206 class MagickPPExport Point class in namespace:Magick
211 Point();
213 // Construct Point from specified string
214 Point(cons
[all...]
/external/clang/test/PCH/
H A Dstruct.h3 struct Point { struct
/external/swiftshader/src/Renderer/
H A DPoint.hpp23 struct Point struct in namespace:sw
25 Point();
26 Point(const int i);
27 Point(const Point &P);
28 Point(const Vector &v);
29 Point(float Px, float Py, float Pz);
31 Point &operator=(const Point &P);
51 Point
75 inline Point::Point() function in class:sw::Point
79 inline Point::Point(const int i) function in class:sw::Point
88 inline Point::Point(const Point &P) function in class:sw::Point
95 inline Point::Point(const Vector &v) function in class:sw::Point
102 inline Point::Point(float P_x, float P_y, float P_z) function in class:sw::Point
[all...]
/external/v8/benchmarks/spinning-balls/
H A Dv.js68 function Point(x, y, z, payload) { class
80 Point.prototype.color = function () {
85 Point.prototype.decay = function () {
161 var point = new Point(Math.random() * 40 - 20,
/external/clang/test/Analysis/
H A Dfields.c24 } Point; typedef in typeref:struct:__anon1784
26 Point getit(void);
28 Point p;
38 Point p = {42, 0};
39 Point q;

Completed in 639 milliseconds

123