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

1 2 3 4 5 6 7 8 91011>>

  /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) {
  /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 {
  /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 {
  /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;
  /external/python/cpython2/Doc/includes/sqlite3/
adapter_point_1.py 3 class Point(object):
14 p = Point(4.0, -3.2)
adapter_point_2.py 3 class Point(object):
7 def adapt_point(point):
8 return "%f;%f" % (point.x, point.y)
10 sqlite3.register_adapter(Point, adapt_point)
15 p = Point(4.0, -3.2)
converter_point.py 3 class Point(object):
10 def adapt_point(point):
11 return "%f;%f" % (point.x, point.y)
15 return Point(x, y)
18 sqlite3.register_adapter(Point, adapt_point)
21 sqlite3.register_converter("point", convert_point)
23 p = Point(4.0, -3.2)
29 cur.execute("create table test(p point)")
44 cur.execute('select p as "p [point]" from test'
    [all...]
  /external/python/cpython3/Doc/includes/sqlite3/
adapter_point_1.py 3 class Point:
14 p = Point(4.0, -3.2)
adapter_point_2.py 3 class Point:
7 def adapt_point(point):
8 return "%f;%f" % (point.x, point.y)
10 sqlite3.register_adapter(Point, adapt_point)
15 p = Point(4.0, -3.2)
  /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...]

Completed in 569 milliseconds

1 2 3 4 5 6 7 8 91011>>