HomeSort by relevance Sort by last modified time
    Searched refs:Point (Results 1 - 25 of 1010) 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/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'}}
fixit-errors.c 15 struct Point {
19 struct Point *get_origin();
  /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...]
  /external/libweave/third_party/chromium/crypto/
p224.h 25 struct Point {
26 // SetFromString the value of the point from the 56 byte, external
27 // representation. The external point representation is an (x, y) pair of a
28 // point on the curve. Each field element is represented as a big-endian
32 // ToString returns an external representation of the Point.
35 // An Point is represented in Jacobian form (x/z², y/z³).
45 void ScalarMult(const Point& in, const uint8_t* scalar, Point* out);
47 // ScalarBaseMult computes *out = g*scalar where g is the base point of the
49 void 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...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
PointTest.java 19 import android.graphics.Point;
24 private Point mPoint;
34 // new the Point instance
35 mPoint = new Point();
37 // new the Point instance
38 mPoint = new Point(10, 10);
40 Point point = new Point(10, 10); local
41 // new the Point instanc
61 Point point = new Point(3, 4); local
    [all...]
  /frameworks/native/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...]
  /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/opencv3/samples/cpp/tutorial_code/core/Matrix/
Drawing_1.cpp 16 void MyFilledCircle( Mat img, Point center );
18 void MyLine( Mat img, Point start, Point end );
44 MyFilledCircle( atom_image, Point( w/2, w/2) );
54 Point( 0, 7*w/8 ),
55 Point( w, w),
61 MyLine( rook_image, Point( 0, 15*w/16 ), Point( w, 15*w/16 ) );
62 MyLine( rook_image, Point( w/4, 7*w/8 ), Point( w/4, w ) )
    [all...]
  /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...]
  /cts/tests/app/src/android/app/cts/
WallpaperManagerTest.java 21 import android.graphics.Point;
44 final Point min = getScreenSize();
47 assertDesiredMinimum(new Point(min.x / 2, min.y / 2), min);
49 assertDesiredMinimum(new Point(w, h), min);
51 assertDesiredMinimum(new Point(min.x / 2, h), min);
53 assertDesiredMinimum(new Point(w, min.y / 2), min);
56 private void assertDesiredMinimum(Point suggestedSize, Point minSize) {
58 Point actualSize = new Point(mWallpaperManager.getDesiredMinimumWidth()
    [all...]
  /external/chromium-trace/catapult/devil/devil/utils/
geometry_test.py 15 p = g.Point(1, 2)
19 p = g.Point(1, 2)
20 q = g.Point(3, 4)
21 r = g.Point(4, 6)
26 p = g.Point(1, 2)
28 p + 4 # Can't add point and scalar.
30 4 + p # Can't add scalar and point.
33 p = g.Point(1, 2)
34 r = g.Point(2, 4)
39 p = g.Point(1, 2
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/interactions/
TouchPointManager.java 3 import android.graphics.Point;
15 private Point mPoint = new Point();
27 public Point getPoint() {
36 * When a point is initialized, its value is (0,0). Since it is highly unlikely a user will
37 * touch at that exact point, if the point in TouchPointManager is (0,0), it is safe to assume
40 * @return True if there is a valid point saved. Define a valid point as any point that i
    [all...]

Completed in 1501 milliseconds

1 2 3 4 5 6 7 8 91011>>