Searched defs:Point (Results 1 - 25 of 45) sorted by relevance

12

/external/v8/test/mjsunit/
H A Ddebug-references.js85 // 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);
H A Ddebug-backtrace-text.js31 function Point(x, y) { class
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>
[all...]
H A Dmirror-object.js170 function Point(x,y) { class
182 testObjectMirror(new Point(-1.2,2.003), 'Object', 'Point');
/external/clang/test/FixIt/
H A Dno-typo.c4 } Point; typedef in typeref:struct:__anon2132
H A Dfixit-errors.c15 struct Point { struct
19 struct Point *get_origin();
H A Dtypo.c7 struct Point { struct
12 struct Point top_left, // expected-note{{'top_left' declared here}}
/external/clang/test/Modules/Inputs/
H A Dignored_macros.h1 struct Point { struct
H A Dpoint.h1 struct Point { int x, y; }; struct
/external/clang/test/Index/
H A Dcomplete-tabs.c2 struct Point { int x, y; }; struct
4 void f(struct Point *p) {
H A Dcomplete-macro-args.c1 struct Point { struct
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) {
/external/lldb/test/lang/c/global_variables/
H A Da.c10 struct Point { struct
14 struct Point g_marked_spot = { 20, 21 };
/external/clang/test/CodeCompletion/
H A Dmember-access.c1 struct Point { struct
7 void test(struct Point *p) {
H A Dmacros.c5 struct Point { struct
10 void test(struct Point *p) {
/external/clang/test/SemaCXX/
H A Dc99.cpp5 struct Point { int x; int y; int z[]; }; // expected-warning{{flexible array members are a C99 feature}} struct
7 Point p1 = { .x = 17, // expected-warning{{designated initializers are a C99 feature}}
H A Dtag-ambig.cpp5 typedef struct Point Point; typedef in typeref:struct:Point
8 class Point;
16 struct Point { }; struct in class:Test
17 virtual bool testMethod (Test::Point& p) = 0;
H A Darrow-operator.cpp29 class Point {}; class in namespace:rdar8875304
30 class Line_Segment{ public: Line_Segment(const Point&){} }; argument
31 class Node { public: Point Location(){ Point p; return p; } };
H A Dimplicit-member-functions.cpp102 template<typename K> struct Point { struct in namespace:Recursion
107 pair<Point<K>, Vector<K>> x;
112 // definition of Point's copy constructor, which performs overload resolution
/external/lldb/test/functionalities/data-formatter/data-formatter-globals/
H A Dmain.cpp14 struct Point { struct
17 Point(int X = 3, int Y = 2) : x(X), y(Y) {} function in struct:Point
20 Point g_point(3,4);
21 Point* g_point_pointer = new Point(7,5);
/external/lldb/test/benchmarks/expression/
H A Dmain.cpp11 class Point { class
15 Point(int a, int b): function in class:Point
24 Point point;
/external/lldb/test/functionalities/non-overlapping-index-variable-i/
H A Dmain.cpp11 class Point { class
15 Point(int a, int b): function in class:Point
24 Point point;
/external/clang/test/PCH/
H A Dstruct.h3 struct Point { struct
/external/jmonkeyengine/engine/src/core/com/jme3/effect/
H A DParticleMesh.java57 Point, enum constant in enum:ParticleMesh.Type
/external/v8/benchmarks/spinning-balls/
H A Dv.js68 function Point(x, y, z, payload) { class
80 Point.prototype.color = function () {
85 Point.prototype.decay = function () {
161 var point = new Point(Math.random() * 40 - 20,
/external/clang/test/Analysis/
H A Dfields.c24 } Point; typedef in typeref:struct:__anon1476
26 Point getit(void);
28 Point p;
38 Point p = {42, 0};
39 Point q;
/external/jmonkeyengine/engine/src/core/com/jme3/light/
H A DLight.java60 * Point light
64 Point(1), enum constant in enum:Light.Type

Completed in 628 milliseconds

12