HomeSort by relevance Sort by last modified time
    Searched defs:Point (Results 1 - 25 of 231) sorted by null

1 2 3 4 5 6 7 8 910

  /external/clang/test/FixIt/
no-typo.c 4 } Point;
6 point p1; // expected-error{{unknown type name 'point'}}
fixit-errors.c 15 struct Point {
19 struct Point *get_origin();
  /external/clang/test/Index/
complete-tabs.c 2 struct Point { int x, y; };
4 void f(struct Point *p) {
complete-macro-args.c 1 struct Point {
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) {
54 // completion point) is not expanded by the macro definition.
  /external/clang/test/Modules/Inputs/
ignored_macros.h 1 struct Point {
point.h 1 struct Point { int x, y; };
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug007.go 10 Point struct {
13 Polar Point
20 bug7.go:5: addtyp: renaming Point to Polar
bug283.go 12 type Point struct {
17 func dist(p0, p1 Point) float64 {
bug281.go 11 type Point struct {
16 Min, Max Point
19 func (p Point) Sub(q Point) Point {
20 return Point{p.X-q.X, p.Y-q.Y}
31 func (o *Obj) Points() [2]Point{
32 return [2]Point{o.bbox.Min, o.bbox.Max}
38 o := &Obj{Rect{Point{800, 0}, Point{}}}
    [all...]
  /prebuilts/go/linux-x86/test/fixedbugs/
bug007.go 10 Point struct {
13 Polar Point
20 bug7.go:5: addtyp: renaming Point to Polar
bug283.go 12 type Point struct {
17 func dist(p0, p1 Point) float64 {
bug281.go 11 type Point struct {
16 Min, Max Point
19 func (p Point) Sub(q Point) Point {
20 return Point{p.X-q.X, p.Y-q.Y}
31 func (o *Obj) Points() [2]Point{
32 return [2]Point{o.bbox.Min, o.bbox.Max}
38 o := &Obj{Rect{Point{800, 0}, Point{}}}
    [all...]
  /external/clang/test/CodeCompletion/
member-access.c 1 struct Point {
7 void test(struct Point *p) {
macros.c 5 struct Point {
10 void test(struct Point *p) {
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTTrans.h 20 PVRTVECTOR3 Point[8]; ///< 8 Vertices
  /external/clang/test/SemaCXX/
c99.cpp 5 struct Point { int x; int y; int z[]; }; // expected-warning{{flexible array members are a C99 feature}}
7 Point p1 = { .x = 17, // expected-warning{{designated initializers are a C99 feature}}
tag-ambig.cpp 5 typedef struct Point Point;
8 class Point;
16 struct Point { };
17 virtual bool testMethod (Test::Point& p) = 0;
  /prebuilts/go/darwin-x86/src/encoding/gob/
example_interface_test.go 15 type Point struct {
19 func (p Point) Hypotenuse() float64 {
36 gob.Register(Point{})
41 interfaceEncode(enc, Point{3 * i, 4 * i})
  /prebuilts/go/linux-x86/src/encoding/gob/
example_interface_test.go 15 type Point struct {
19 func (p Point) Hypotenuse() float64 {
36 gob.Register(Point{})
41 interfaceEncode(enc, Point{3 * i, 4 * i})
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/
Ip4Option.c 40 UINT32 Point;
58 Point = Option[Cur + 2];
61 // SRR/RR options are formatted as |Type|Len|Point|Ip1|Ip2|...
67 if ((Point > Len + 1) || (Point % 4 != 0)) {
72 // The Point must point pass the last entry if the packet is received
73 // by us. It must point to 4 if the packet is to be sent by us for
77 ((Rcvd && (Point != Len + 1)) || (!Rcvd && (Point != 4)))) {
    [all...]
  /external/chromium-trace/catapult/devil/devil/utils/
geometry.py 10 class Point(collections.namedtuple('Point', ['x', 'y'])):
11 """Object to represent an (x, y) point on a surface.
14 x, y: Two numeric coordinates that define the point.
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.
36 """Multiply a point by a scalar factor on the left, e.g. 2 * p."""
37 return Point(factor * self.x, factor * self.y)
45 top_left: A pair of (left, top) coordinates. Might be given as a Point
    [all...]
  /external/libchrome/crypto/
p224.h 26 struct CRYPTO_EXPORT Point {
27 // SetFromString the value of the point from the 56 byte, external
28 // representation. The external point representation is an (x, y) pair of a
29 // point on the curve. Each field element is represented as a big-endian
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);
50 // ScalarBaseMult computes *out = g*scalar where g is the base point of the
52 void CRYPTO_EXPORT ScalarBaseMult(const uint8_t* scalar, Point* out)
    [all...]
  /external/libmojo/third_party/catapult/devil/devil/utils/
geometry.py 10 class Point(collections.namedtuple('Point', ['x', 'y'])):
11 """Object to represent an (x, y) point on a surface.
14 x, y: Two numeric coordinates that define the point.
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.
36 """Multiply a point by a scalar factor on the left, e.g. 2 * p."""
37 return Point(factor * self.x, factor * self.y)
45 top_left: A pair of (left, top) coordinates. Might be given as a Point
    [all...]
  /external/autotest/client/site_tests/firmware_TouchMTB/geometry/
elements.py 21 class Point:
22 """A point class."""
24 """Initialize a point.
33 """A boolean indicating if this point is defined."""
37 """Determine if this point is equal to the specified point, p.
39 @param p: a point
53 """The string representation of the point value."""
54 return 'Point: (%.4f, %.4f)' % (self.x, self.y)
57 """Calculate the distance between p and this point
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/immutable/
Point.java 18 public class Point {
30 public Point(Double x, Double y) {
37 return "<Point x=" + String.valueOf(x) + " y=" + String.valueOf(y) + ">";
42 if (obj instanceof Point) {

Completed in 982 milliseconds

1 2 3 4 5 6 7 8 910