HomeSort by relevance Sort by last modified time
    Searched refs:Point (Results 1 - 25 of 559) 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; };
  /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) {
complete-macro-args.c 1 struct Point {
10 void test(struct Point *p) {
  /frameworks/base/graphics/java/android/graphics/
Point.aidl 18 parcelable Point;
Point.java 24 * Point holds two integer coordinates
26 public class Point implements Parcelable {
30 public Point() {}
32 public Point(int x, int y) {
37 public Point(Point src) {
43 * Set the point's x and y coordinates
51 * Negate the point's coordinates
59 * Offset the point's coordinates by dx, dy
67 * Returns true if the point's coordinates equal (x,y
    [all...]
  /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; };
7 Point p1 = { .x = 17, // expected-warning{{designated initializers are a C99 feature}}
tag-ambig.cpp 4 typedef struct Point Point;
7 class Point;
15 struct Point { };
16 virtual bool testMethod (Test::Point& p) = 0;
  /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/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...]
Rectangle.java 20 import android.filterfw.geometry.Point;
32 super(new Point(x, y),
33 new Point(x + width, y),
34 new Point(x, y + height),
35 new Point(x + width, y + height));
38 public Rectangle(Point origin, Point size) {
45 public static Rectangle fromRotatedRect(Point center, Point size, float rotation) {
46 Point p0 = new Point(center.x - size.x/2f, center.y - size.y/2f)
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
tabstrip_origin_provider.h 10 class Point;
28 virtual gfx::Point GetTabStripOriginForWidget(GtkWidget* widget) = 0;
  /frameworks/native/include/ui/
Point.h 24 class Point
33 // Default constructor doesn't initialize the Point
34 inline Point() {
36 inline Point(int x, int y) : x(x), y(y) {
39 inline bool operator == (const Point& rhs) const {
42 inline bool operator != (const Point& rhs) const {
52 bool operator < (const Point& rhs) const {
56 inline Point& operator - () {
62 inline Point& operator += (const Point& rhs)
    [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...]
geometry.cpp 26 float Point::Length() const {
30 bool Point::ScaleTo(float new_length) {
40 float Point::Distance(const Point& p0, const Point& p1) {
41 Point diff = p1 - p0;
45 Point Point::operator+(const Point& other) const {
46 Point out
131 const Point& Quad::point(int ix) const { function in class:android::filterfw::Quad
    [all...]
  /external/chromium/ui/gfx/
point.h 16 typedef struct tagPOINT POINT;
23 // A point has an x and y coordinate.
24 class UI_EXPORT Point {
26 Point();
27 Point(int x, int y);
29 // |point| is a DWORD value that contains a coordinate. The x-coordinate is
32 explicit Point(DWORD point);
33 explicit Point(const POINT& point)
    [all...]
point.cc 5 #include "ui/gfx/point.h"
15 Point::Point() : x_(0), y_(0) {
18 Point::Point(int x, int y) : x_(x), y_(y) {
22 Point::Point(DWORD point) {
23 POINTS points = MAKEPOINTS(point);
28 Point::Point(const POINT& point) : x_(point.x), y_(point.y)
    [all...]
  /external/chromium/chrome/browser/ui/views/tabs/
abstract_tab_strip_view.h 29 // Returns true if the specified point(TabStrip coordinates) is
31 virtual bool IsPositionInWindowCaption(const gfx::Point& point) = 0;
34 virtual void SetBackgroundOffset(const gfx::Point& offset) = 0;
  /external/clang/test/Analysis/
fields.c 22 } Point;
24 Point getit(void);
26 Point p;
  /sdk/chimpchat/test/com/android/chimpchat/adb/
LinearInterpolatorTest.java 20 import com.android.chimpchat.adb.LinearInterpolator.Point;
31 private final List<LinearInterpolator.Point> points = Lists.newArrayList();
33 public List<LinearInterpolator.Point> getPoints() {
37 public void end(Point input) {
41 public void start(Point input) {
45 public void step(Point input) {
58 lerp.interpolate(new LinearInterpolator.Point(0, 100),
59 new LinearInterpolator.Point(1000, 100),
62 List<LinearInterpolator.Point> points = collector.getPoints();
65 assertEquals(new Point(STEP_POINTS.get(x), 100), points.get(x))
    [all...]

Completed in 474 milliseconds

1 2 3 4 5 6 7 8 91011>>