HomeSort by relevance Sort by last modified time
    Searched refs:Point (Results 1 - 25 of 1479) 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) {
  /external/clang/test/Index/
complete-tabs.c 2 struct Point { int x, y; };
4 void f(struct Point *p) {
  /external/lldb/test/lang/c/global_variables/
a.c 10 struct Point {
14 struct Point g_marked_spot = { 20, 21 };
  /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/chromium_org/chrome/browser/ui/panels/
panel_mouse_watcher_observer.h 9 class Point;
18 virtual void OnMouseMove(const gfx::Point& mouse_position) = 0;
detached_panel_drag_handler.h 12 class Point;
18 static void HandleDrag(Panel* panel, const gfx::Point& target_position);
  /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/chromium_org/ui/gfx/geometry/
point.h 18 typedef struct tagPOINT POINT;
27 // A point has an x and y coordinate.
28 class GFX_EXPORT Point : public PointBase<Point, int, Vector2d> {
30 Point() : PointBase<Point, int, Vector2d>(0, 0) {}
31 Point(int x, int y) : PointBase<Point, int, Vector2d>(x, y) {}
33 // |point| is a DWORD value that contains a coordinate. The x-coordinate is
36 explicit Point(DWORD point)
    [all...]
point_conversions.h 8 #include "ui/gfx/geometry/point.h"
13 // Returns a Point with each component from the input PointF floored.
14 GFX_EXPORT Point ToFlooredPoint(const PointF& point);
16 // Returns a Point with each component from the input PointF ceiled.
17 GFX_EXPORT Point ToCeiledPoint(const PointF& point);
19 // Returns a Point with each component from the input PointF rounded.
20 GFX_EXPORT Point ToRoundedPoint(const PointF& point);
    [all...]
point.cc 5 #include "ui/gfx/geometry/point.h"
15 template class PointBase<Point, int, Vector2d>;
18 Point::Point(DWORD point) : PointBase<Point, int, Vector2d>(0, 0){
19 POINTS points = MAKEPOINTS(point);
24 Point::Point(const POINT& point
    [all...]
  /external/chromium_org/crypto/
p224.h 24 struct CRYPTO_EXPORT Point {
25 // SetFromString the value of the point from the 56 byte, external
26 // representation. The external point representation is an (x, y) pair of a
27 // point on the curve. Each field element is represented as a big-endian
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);
46 // ScalarBaseMult computes *out = g*scalar where g is the base point of the
48 void CRYPTO_EXPORT ScalarBaseMult(const uint8* scalar, Point* out)
    [all...]
  /external/lldb/test/functionalities/data-formatter/data-formatter-globals/
main.cpp 14 struct Point {
17 Point(int X = 3, int Y = 2) : x(X), y(Y) {}
20 Point g_point(3,4);
21 Point* g_point_pointer = new Point(7,5);
25 return 0; // Set break point at this line.
  /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...]
  /external/chromium_org/remoting/android/java/src/org/chromium/chromoting/
RenderData.java 8 import android.graphics.Point;
27 public Point cursorPosition = new Point();
  /external/chromium_org/chrome/browser/ui/window_sizer/
window_sizer_aura.cc 14 gfx::Point WindowSizer::GetDefaultPopupOrigin(const gfx::Size& size,
18 return gfx::Point();
  /external/chromium_org/content/common/
drag_messages.h 14 #include "ui/gfx/point.h"
23 gfx::Point /* client_pt */,
24 gfx::Point /* screen_pt */,
29 gfx::Point /* client_pt */,
30 gfx::Point /* screen_pt */,
37 gfx::Point /* client_pt */,
38 gfx::Point /* screen_pt */,
43 gfx::Point /* client_pt */,
44 gfx::Point /* screen_pt */,
  /external/chromium_org/ui/aura/test/
aura_test_utils.h 11 class Point;
19 const gfx::Point& QueryLatestMousePositionRequestInHost(WindowTreeHost* host);
  /external/chromium_org/ui/compositor/
debug_utils.h 11 class Point;
20 gfx::Point mouse_location);
  /cts/tests/tests/app/src/android/app/cts/
WallpaperManagerTest.java 21 import android.graphics.Point;
44 final Point min = getScreenSize();
48 assertDesiredMinimum(new Point(min.x / 2, min.y / 2), min);
50 assertDesiredMinimum(new Point(w, h),
51 new Point(w, h));
53 assertDesiredMinimum(new Point(min.x / 2, h),
54 new Point(min.x, h));
56 assertDesiredMinimum(new Point(w, min.y / 2),
57 new Point(w, min.y));
60 private void assertDesiredMinimum(Point suggestedSize, Point expectedSize)
    [all...]
  /external/chromium_org/ui/app_list/views/
app_list_drag_and_drop_host.h 11 class Point;
28 const gfx::Point& location_in_screen_coordinates,
36 const gfx::Point& location_in_screen_coordinates) = 0;
46 const gfx::Point& location_in_screen_coordinates) = 0;
53 virtual bool Drag(const gfx::Point& location_in_screen_coordinates) = 0;
  /external/chromium_org/ui/views/
drag_controller.h 11 class Point;
28 const gfx::Point& press_pt,
34 const gfx::Point& p) = 0;
40 const gfx::Point& press_pt,
41 const gfx::Point& p) = 0;

Completed in 664 milliseconds

1 2 3 4 5 6 7 8 91011>>