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

1 2 3

  /external/v8/test/mjsunit/
debug-references.js 85 // Evaluate Point.
87 '"arguments":{"expression":"Point"}}';
89 assertTrue(response.success, "Evaluation of Point failed");
109 function Point(x, y) { this.x_ = x; this.y_ = y;}
110 p = new Point(0,0);
111 q = new Point(1,2);
debug-backtrace-text.js 31 function Point(x, y) {
36 Point.prototype.distanceTo = function(p) {
41 p1 = new Point(1,1);
42 p2 = new Point(2,2);
53 return new Point(x, y);
79 // 0: Call distance on Point where distance is a property on the prototype
80 // 1: Call distance on Point where distance is a direct property
83 assertEquals("#<Point>.distanceTo(p=#<Point>)", exec_state.frame(0).invocationText());
84 assertEquals("#<Point>.distanceTo(p=#<Point>)", exec_state.frame(1).invocationText())
    [all...]
mirror-object.js 161 function Point(x,y) {
170 testObjectMirror(new Point(-1.2,2.003), 'Object', '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();
typo.c 7 struct Point {
12 struct Point top_left, // expected-note{{'top_left' declared here}}
  /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; };
  /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/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 5 typedef struct Point Point;
8 class Point;
16 struct Point { };
17 virtual bool testMethod (Test::Point& p) = 0;
arrow-operator.cpp 29 class Point {};
30 class Line_Segment{ public: Line_Segment(const Point&){} };
31 class Node { public: Point Location(){ Point p; return p; } };
  /external/chromium/ui/gfx/
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...]
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...]
  /external/jmonkeyengine/engine/src/core/com/jme3/effect/
ParticleMesh.java 53 * The particle mesh is composed of points. Each particle is a point.
54 * This can be used in conjuction with {@link RenderState#setPointSprite(boolean) point sprites}
57 Point,
  /external/webkit/Source/WebKit/chromium/public/
WebPoint.h 39 #include <ui/gfx/point.h>
79 WebPoint(const gfx::Point& p)
85 WebPoint& operator=(const gfx::Point& p)
92 operator gfx::Point() const
94 return gfx::Point(x, y);
  /frameworks/base/graphics/java/android/graphics/
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...]
  /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...]
  /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...]
  /external/clang/test/PCH/
struct.h 3 struct Point {
  /external/v8/benchmarks/spinning-balls/
v.js 68 function Point(x, y, z, payload) {
80 Point.prototype.color = function () {
85 Point.prototype.decay = function () {
97 PointsList.prototype.add = function (point) {
98 if (this.head !== null) this.head.prev = point;
99 point.next = this.head;
100 this.head = point;
105 PointsList.prototype.remove = function (point) {
106 if (point.next !== null) {
107 point.next.prev = point.prev
    [all...]
  /external/clang/test/Analysis/
fields.c 24 } Point;
26 Point getit(void);
28 Point p;
38 Point p = {42, 0};
39 Point q;

Completed in 537 milliseconds

1 2 3