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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Modules/Inputs/
point.h 1 struct Point { int x, y; };
ignored_macros.h 1 struct Point {
  /external/swiftshader/src/Renderer/
Point.hpp 23 struct Point
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 &operator+=(const Vector &v)
    [all...]
Point.cpp 15 #include "Point.hpp"
21 Point &Point::operator+=(const Vector &v)
30 Point &Point::operator-=(const Vector &v)
39 Point operator+(const Point &P, const Vector &v)
41 return Point(P.x + v.x, P.y + v.y, P.z + v.z);
44 Point operator-(const Point &P, const Vector &v
    [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/clang/test/Index/
complete-tabs.c 2 struct Point { int x, y; };
4 void f(struct Point *p) {
  /frameworks/base/graphics/java/android/graphics/
Point.aidl 18 parcelable Point;
  /external/clang/test/FixIt/
no-typo.c 4 } Point;
6 point p1; // expected-error{{unknown type name 'point'}}
  /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/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...]
  /frameworks/base/media/mca/filterpacks/native/base/
geometry.h 28 class Point {
30 Point() : x_(0.0f), y_(0.0f) {}
31 Point(float x, float y) : x_(x), y_(y) {}
38 static float Distance(const Point& p0, const Point& p1);
41 Point operator+(const Point& other) const;
42 Point operator-(const Point& other) const;
43 Point operator*(float factor) const
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/api/
PointTest.java 19 import com.android.ide.common.api.Point;
31 Point p = new Point(1, 2);
35 p = new Point(-3, -4);
41 Point p = new Point(1, 2);
51 Point p = new Point(1, 2);
52 Point p2 = new Point(p)
    [all...]
  /frameworks/native/libs/ui/include/ui/
Point.h 25 class Point : public LightFlattenablePod<Point>
34 // Default constructor doesn't initialize the Point
35 inline Point() {
37 inline Point(int _x, int _y) : x(_x), y(_y) {
40 inline bool operator == (const Point& rhs) const {
43 inline bool operator != (const Point& rhs) const {
53 bool operator < (const Point& rhs) const {
57 inline Point& operator - () {
63 inline Point& operator += (const Point& rhs)
    [all...]
  /external/libmojo/ui/gfx/geometry/
point_conversions.h 8 #include "ui/gfx/geometry/point.h"
13 // 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);
    [all...]
point.cc 5 #include "ui/gfx/geometry/point.h"
23 Point::Point(DWORD point) {
24 POINTS points = MAKEPOINTS(point);
29 Point::Point(const POINT& point) : x_(point.x), y_(point.y)
    [all...]
point.h 19 typedef struct tagPOINT POINT;
26 // A point has an x and y coordinate.
27 class GFX_EXPORT Point {
29 constexpr Point() : x_(0), y_(0) {}
30 constexpr Point(int x, int y) : x_(x), y_(y) {}
32 // |point| is a DWORD value that contains a coordinate. The x-coordinate is
35 explicit Point(DWORD point);
36 explicit Point(const POINT& point)
    [all...]
point_conversions.cc 11 Point ToFlooredPoint(const PointF& point) {
12 int x = ToFlooredInt(point.x());
13 int y = ToFlooredInt(point.y());
14 return Point(x, y);
17 Point ToCeiledPoint(const PointF& point) {
18 int x = ToCeiledInt(point.x());
19 int y = ToCeiledInt(point.y());
20 return Point(x, y)
    [all...]
  /frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/
Point.java 25 public class Point {
30 public Point() {
33 public Point(float x, float y) {
48 public Point plus(float x, float y) {
49 return new Point(this.x + x, this.y + y);
52 public Point plus(Point point) {
53 return this.plus(point.x, point.y)
    [all...]
  /frameworks/base/media/mca/filterfw/native/core/
geometry.h 28 class Point {
30 Point() : x_(0.0f), y_(0.0f) {}
31 Point(float x, float y) : x_(x), y_(y) {}
38 static float Distance(const Point& p0, const Point& p1);
41 Point operator+(const Point& other) const;
42 Point operator-(const Point& other) const;
43 Point operator*(float factor) const
    [all...]
  /packages/apps/Camera2/src/com/android/camera/captureintent/event/
EventTapOnPreview.java 21 import android.graphics.Point;
24 private final Point mTapPoint;
26 public EventTapOnPreview(Point tapPoint) {
30 public Point getTapPoint() {
  /external/webrtc/webrtc/modules/audio_processing/beamformer/
array_util_unittest.cc 23 bool operator==(const Point& lhs, const Point& rhs) {
28 EXPECT_EQ(Point(1.f, 2.f, 3.f),
29 PairDirection(Point(0.f, 0.f, 0.f), Point(1.f, 2.f, 3.f)));
30 EXPECT_EQ(Point(-1.f, -2.f, -3.f),
31 PairDirection(Point(1.f, 2.f, 3.f), Point(0.f, 0.f, 0.f)));
32 EXPECT_EQ(Point(0.f, 0.f, 0.f),
33 PairDirection(Point(1.f, 0.f, 0.f), Point(1.f, 0.f, 0.f)))
    [all...]
array_util.cc 25 float GetMinimumSpacing(const std::vector<Point>& array_geometry) {
37 Point PairDirection(const Point& a, const Point& b) {
41 float DotProduct(const Point& a, const Point& b) {
45 Point CrossProduct(const Point& a, const Point& b) {
50 bool AreParallel(const Point& a, const Point& b)
    [all...]
  /prebuilts/tools/linux-x86_64/kythe/proto/
common.proto 27 // A Point represents a location within a file or buffer.
32 // A point with line_number > 0 is said to be _normalized_ if it satisfies
35 // point can be normalized by adjusting line_number and column_offset so that
38 message Point {
46 Point start = 1;
47 Point end = 2;

Completed in 626 milliseconds

1 2 3 4 5 6 7 8 91011>>