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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/rlz/lib/
lib_values_unittest.cc 13 rlz_lib::SetExpectedAssertion("GetAccessPointFromName: point is NULL");
17 rlz_lib::AccessPoint point; local
18 EXPECT_FALSE(rlz_lib::GetAccessPointFromName(NULL, &point));
19 EXPECT_EQ(rlz_lib::NO_ACCESS_POINT, point);
21 EXPECT_TRUE(rlz_lib::GetAccessPointFromName("", &point));
22 EXPECT_EQ(rlz_lib::NO_ACCESS_POINT, point);
24 EXPECT_FALSE(rlz_lib::GetAccessPointFromName("i1", &point));
25 EXPECT_EQ(rlz_lib::NO_ACCESS_POINT, point);
27 EXPECT_TRUE(rlz_lib::GetAccessPointFromName("I7", &point));
28 EXPECT_EQ(rlz_lib::IE_DEFAULT_SEARCH, point);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPointList.cpp 39 const FloatPoint& point = at(i); local
40 builder.append(String::number(point.x()) + ' ' + String::number(point.y()));
  /external/chromium_org/third_party/openssl/openssl/crypto/ec/
ec_check.c 64 EC_POINT *point = NULL; local
98 if ((point = EC_POINT_new(group)) == NULL) goto err;
106 if (!EC_POINT_mul(group, point, order, NULL, NULL, ctx)) goto err;
107 if (!EC_POINT_is_at_infinity(group, point))
120 if (point)
121 EC_POINT_free(point);
  /external/openssl/crypto/ec/
ec_check.c 64 EC_POINT *point = NULL; local
98 if ((point = EC_POINT_new(group)) == NULL) goto err;
106 if (!EC_POINT_mul(group, point, order, NULL, NULL, ctx)) goto err;
107 if (!EC_POINT_is_at_infinity(group, point))
120 if (point)
121 EC_POINT_free(point);
  /external/chromium_org/chrome/browser/automation/
testing_automation_provider_views.cc 26 gfx::Point point; local
28 views::View::ConvertPointToScreen(view, &point);
30 views::View::ConvertPointToTarget(view, root_view, &point);
32 bounds->set_origin(point);
  /external/chromium_org/ppapi/c/
pp_rect.h 35 struct PP_Point point; member in struct:PP_Rect
55 * point, starting with 0 as the left-most coordinate.
56 * @param[in] y An int32_t value representing a vertical coordinate of a point,
66 ret.point.x = x;
67 ret.point.y = y;
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8WebKitPointCustom.cpp 57 RefPtr<DOMPoint> point = DOMPoint::create(x, y); local
59 V8DOMWrapper::associateObjectWithWrapper<V8WebKitPoint>(point.release(), &wrapperTypeInfo, wrapper, info.GetIsolate(), WrapperConfiguration::Dependent);
  /cts/tests/tests/gesture/src/android/gesture/cts/
GesturePointTest.java 37 GesturePoint point = new GesturePoint(expected_x, expected_y, expected_timestamp); local
38 assertEquals(expected_x, point.x);
39 assertEquals(expected_y, point.y);
40 assertEquals(expected_timestamp, point.timestamp);
  /external/chromium_org/ppapi/tests/
test_mouse_cursor.cc 26 RUN_TEST(Point, filter);
43 PP_Point point = { 0, 0 }; local
46 valid_image.pp_resource(), &point)));
55 valid_image.pp_resource(), &point)));
62 big_image.pp_resource(), &point)));
71 PP_Point point = { -1, 0 }; local
74 valid_image.pp_resource(), &point)));
76 point.x = 67;
77 point.y = 5;
80 valid_image.pp_resource(), &point)));
    [all...]
  /external/chromium_org/third_party/WebKit/public/web/
WebActiveWheelFlingParameters.h 39 WebPoint point; member in struct:blink::WebActiveWheelFlingParameters
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/api/
transfer.cpp 32 typedef resource::point point; typedef in namespace:__anon15701
103 T dst_obj, const point &dst_orig, const point &dst_pitch,
104 S src_obj, const point &src_orig, const point &src_pitch,
105 const point &region) {
111 point p;
128 hard_copy_op(cl_command_queue q, T dst_obj, const point &dst_orig,
129 S src_obj, const point &src_orig, const point &region)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
geometry.hpp 34 class point { class in namespace:clover
36 point() : a() { function in class:clover::point
39 point(std::initializer_list<T> v) { function in class:clover::point
44 point(const T *v) { function in class:clover::point
56 point operator+(const point &p) const {
57 point q;
63 T operator()(const point &p) const {
  /external/chromium_org/ui/gfx/
transform_util_unittest.cc 8 #include "ui/gfx/point.h"
16 const Point kAnchor(20, 40);
24 Point test(kAnchor.x() + sign_x * kOffset,
28 EXPECT_EQ(Point(kAnchor.x() + sign_x * kOffset * kScale,
142 Point3F point; local
144 point = Point3F(viewport.origin());
145 result.TransformPoint(&point);
146 EXPECT_EQ(Point3F(31.f, 20.f, 10.f), point) << "Transformed origin";
148 point = Point3F(viewport.top_right());
149 result.TransformPoint(&point);
    [all...]
  /external/chromium_org/v8/test/cctest/
test-fixed-dtoa.cc 46 int point; local
48 CHECK(FastFixedDtoa(1.0, 1, buffer, &length, &point));
50 CHECK_EQ(1, point);
52 CHECK(FastFixedDtoa(1.0, 15, buffer, &length, &point));
54 CHECK_EQ(1, point);
56 CHECK(FastFixedDtoa(1.0, 0, buffer, &length, &point));
58 CHECK_EQ(1, point);
60 CHECK(FastFixedDtoa(0xFFFFFFFF, 5, buffer, &length, &point));
62 CHECK_EQ(10, point);
64 CHECK(FastFixedDtoa(4294967296.0, 5, buffer, &length, &point));
497 int point; local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/clover/api/
transfer.cpp 32 typedef resource::point point; typedef in namespace:__anon26168
103 T dst_obj, const point &dst_orig, const point &dst_pitch,
104 S src_obj, const point &src_orig, const point &src_pitch,
105 const point &region) {
111 point p;
128 hard_copy_op(cl_command_queue q, T dst_obj, const point &dst_orig,
129 S src_obj, const point &src_orig, const point &region)
    [all...]
  /external/mesa3d/src/gallium/state_trackers/clover/core/
geometry.hpp 34 class point { class in namespace:clover
36 point() : a() { function in class:clover::point
39 point(std::initializer_list<T> v) { function in class:clover::point
44 point(const T *v) { function in class:clover::point
56 point operator+(const point &p) const {
57 point q;
63 T operator()(const point &p) const {
  /external/v8/test/cctest/
test-fixed-dtoa.cc 46 int point; local
48 CHECK(FastFixedDtoa(1.0, 1, buffer, &length, &point));
50 CHECK_EQ(1, point);
52 CHECK(FastFixedDtoa(1.0, 15, buffer, &length, &point));
54 CHECK_EQ(1, point);
56 CHECK(FastFixedDtoa(1.0, 0, buffer, &length, &point));
58 CHECK_EQ(1, point);
60 CHECK(FastFixedDtoa(0xFFFFFFFF, 5, buffer, &length, &point));
62 CHECK_EQ(10, point);
64 CHECK(FastFixedDtoa(4294967296.0, 5, buffer, &length, &point));
497 int point; local
    [all...]
  /libcore/crypto/src/main/java/org/conscrypt/
OpenSSLECPointContext.java 76 OpenSSLECPointContext point = new OpenSSLECPointContext(group, local
79 point.getContext(), javaPoint.getAffineX().toByteArray(),
81 return point;
  /external/chromium/chrome/browser/automation/
testing_automation_provider_gtk.cc 49 gfx::Point point = gtk_util::GetWidgetScreenPosition(widget); local
50 x = point.x();
51 y = point.y();
56 bounds->set_origin(gfx::Point(x, y));
  /external/chromium/chrome/browser/ui/views/tabs/
native_view_photobooth_win.cc 10 #include "ui/gfx/point.h"
18 gfx::Point* point = reinterpret_cast<gfx::Point*>(data); local
19 if (monitor_rect->right > point->x() && monitor_rect->bottom > point->y()) {
20 point->set_x(monitor_rect->right);
21 point->set_y(monitor_rect->bottom);
26 gfx::Point GetCaptureWindowPosition() {
34 gfx::Point point(0, 0)
    [all...]
  /external/chromium_org/chrome/browser/ui/views/tabs/
native_view_photobooth_win.cc 9 #include "ui/gfx/point.h"
17 gfx::Point* point = reinterpret_cast<gfx::Point*>(data); local
18 if (monitor_rect->right > point->x() && monitor_rect->bottom > point->y()) {
19 point->set_x(monitor_rect->right);
20 point->set_y(monitor_rect->bottom);
25 gfx::Point GetCaptureWindowPosition() {
33 gfx::Point point(0, 0)
    [all...]
  /external/chromium_org/content/browser/renderer_host/input/
synthetic_gesture_target_android.cc 69 const blink::WebTouchPoint* point = &web_touch.touches[i]; local
70 TouchSetPointer(env, i, point->position.x, point->position.y, point->id);
  /external/chromium_org/content/common/input/
synthetic_web_input_event_builders.cc 132 int point = 0; local
137 touches[point] = touches[i];
138 touches[point].state = WebTouchPoint::StateStationary;
139 ++point;
141 touchesLength = point;
148 WebTouchPoint& point = touches[touchesLength];
149 point.id = touchesLength;
150 point.position.x = point.screenPosition.x = x;
151 point.position.y = point.screenPosition.y = y
161 WebTouchPoint& point = touches[index]; local
    [all...]
  /external/chromium_org/crypto/
p224_unittest.cc 14 using p224::Point;
16 // kBasePointExternal is the P224 base point in external representation.
27 // TestVector represents a test of scalar multiplication of the base point.
771 Point point; local
773 EXPECT_TRUE(point.SetFromString(base::StringPiece(
777 const std::string external = point.ToString();
785 Point point; local
788 p224::ScalarBaseMult(kNISTTestVectors[i].scalar, &point);
    [all...]
  /external/chromium_org/remoting/protocol/
mouse_input_filter_unittest.cc 31 struct Point {
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]; local
42 input_stub->InjectMouseEvent(MouseMoveEvent(point.x, point.y));
45 const Point& point = input_sequence[i]; local
46 input_stub->InjectMouseEvent(MouseMoveEvent(point.y, point.x))
    [all...]

Completed in 1099 milliseconds

1 2 3 4 5 6 7 8 91011>>