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

123

/external/chromium_org/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.js168 function Point(x,y) { class
177 testObjectMirror(new Point(-1.2,2.003), 'Object', 'Point');
/external/clang/test/FixIt/
H A Dno-typo.c4 } Point; typedef in typeref:struct:__anon18130
H A Dfixit-errors.c15 struct Point { struct
19 struct Point *get_origin();
/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/chromium_org/ui/gfx/
H A Dpath.h17 // Used by Path(Point,size_t) constructor.
18 struct Point { struct in class:gfx::Path
30 Path(const Point* points, size_t count);
/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;
/external/chromium_org/crypto/
H A Dp224.h24 struct CRYPTO_EXPORT Point { struct in namespace:crypto::p224
31 // ToString returns an external representation of the Point.
34 // An Point is represented in Jacobian form (x/z², y/z³).
44 void CRYPTO_EXPORT ScalarMult(const Point& in, const uint8* scalar, Point* out);
48 void CRYPTO_EXPORT ScalarBaseMult(const uint8* scalar, Point* out);
51 void CRYPTO_EXPORT Add(const Point& a, const Point& b, Point* out);
54 void CRYPTO_EXPORT Negate(const Point
[all...]
/external/chromium_org/ui/gfx/geometry/
H A Dpoint.cc15 template class PointBase<Point, int, Vector2d>;
18 Point::Point(DWORD point) : PointBase<Point, int, Vector2d>(0, 0){ function in class:gfx::Point
24 Point::Point(const POINT& point) function in class:gfx::Point
25 : PointBase<Point, int, Vector2d>(point.x, point.y) {
28 Point& Point::operator=(const POINT& point) {
34 POINT Point
41 Point::Point(const CGPoint& point) function in class:gfx::Point
[all...]
H A Dpoint.h25 class GFX_EXPORT Point : public PointBase<Point, int, Vector2d> { class in namespace:gfx
27 Point() : PointBase<Point, int, Vector2d>(0, 0) {} function in class:gfx::Point
28 Point(int x, int y) : PointBase<Point, int, Vector2d>(x, y) {} function in class:gfx::Point
33 explicit Point(DWORD point);
34 explicit Point(const POINT& point);
35 Point& operator=(const POINT& point);
37 explicit Point(cons
[all...]
/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/chromium_org/remoting/protocol/
H A Dmouse_input_filter_unittest.cc31 struct Point { struct
35 static const Point input_sequence[] = {
38 // arraysize() cannot be used here, becase Point is declared inside of a
41 const Point& point = input_sequence[i];
45 const Point& point = input_sequence[i];
/external/chromium_org/ui/events/gestures/
H A Dvelocity_calculator.h27 struct Point { struct in class:ui::VelocityCalculator
35 typedef scoped_ptr<Point[]> HistoryBuffer;
/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/chromium_org/ppapi/cpp/
H A Dpoint.h16 class Point { class in namespace:pp
19 Point() { function in class:pp::Point
25 /// them to a Point.
31 Point(int32_t in_x, int32_t in_y) { function in class:pp::Point
37 /// PP_Point to a Point. This is an implicit conversion constructor.
40 Point(const PP_Point& point) { // Implicit. function in class:pp::Point
46 ~Point() {
49 /// A function allowing implicit conversion of a Point to a PP_Point.
50 /// @return A Point.
71 /// @return The value of x for this Point
[all...]
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebPoint.h79 WebPoint(const gfx::Point& p)
85 WebPoint& operator=(const gfx::Point& p)
92 operator gfx::Point() const
94 return gfx::Point(x, y);

Completed in 733 milliseconds

123