Searched defs:point (Results 201 - 225 of 602) sorted by relevance

1234567891011>>

/external/chromium_org/content/shell/browser/
H A Dshell_web_contents_view_delegate_win.cc176 POINT point = screen_point.ToPOINT(); local
177 ClientToScreen(web_contents_->GetNativeView(), &point);
182 point.x, point.y,
/external/chromium_org/net/http/
H A Dhttp_security_headers.cc109 size_t point = source.find(delimiter); local
111 pair.first = source.substr(0, point);
112 if (std::string::npos != point)
113 pair.second = source.substr(point + 1);
/external/chromium_org/ppapi/cpp/
H A Dinput_event.cc10 #include "ppapi/cpp/point.h"
309 PP_TouchPoint point) {
313 &point); local
308 AddTouchPoint(PP_TouchListType list, PP_TouchPoint point) argument
H A Drect.h9 #include "ppapi/cpp/point.h"
25 rect_.point.x = 0;
26 rect_.point.y = 0;
37 set_x(rect.point.x);
38 set_y(rect.point.y);
59 /// of a point, starting with 0 as the left-most coordinate.
61 /// of a point, starting with 0 as the top-most coordinate.
126 return rect_.point.x;
133 rect_.point.x = in_x;
140 return rect_.point
189 Point point() const { function in class:pp::Rect
295 Offset(const Point& point) argument
574 FloatPoint point() const { function in class:pp::FloatRect
680 Offset(const FloatPoint& point) argument
[all...]
/external/chromium_org/ppapi/tests/
H A Dtest_input_event.cc174 const pp::FloatPoint& point) {
176 touch_point.position = point;
173 CreateTouchEvent(PP_InputEvent_Type type, const pp::FloatPoint& point) argument
/external/chromium_org/rlz/lib/
H A Dfinancial_ping.cc64 // Returns the time relative to a fixed point in the past in multiples of
65 // 100 ns stepts. The point in the past is arbitrary but can't change, as the
157 AccessPoint point = static_cast<AccessPoint>(ap); local
158 if (GetAccessPointRlz(point, rlz, arraysize(rlz)) &&
160 all_points[idx++] = point;
/external/chromium_org/skia/ext/
H A Dpixel_ref_utils.cc78 const SkPoint& point = points[i]; variable
79 min_point.set(std::min(min_point.x(), point.x()),
80 std::min(min_point.y(), point.y()));
81 max_point.set(std::max(max_point.x(), point.x()),
82 std::max(max_point.y(), point.y()));
/external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
H A DElementShadow.cpp265 InsertionPoint* point = insertionPoints[i].get(); local
266 if (!point->isActive())
268 if (isHTMLShadowElement(*point)) {
270 shadowInsertionPoint = toHTMLShadowElement(point);
273 pool.distributeTo(point, this);
274 if (ElementShadow* shadow = shadowWhereNodeCanBeDistributed(*point))
H A DInsertionPoint.cpp154 InsertionPoint* point = insertionPoints[i].get(); local
155 if (isHTMLShadowElement(*point))
156 return point == this;
229 // Since this insertion point is no longer visible from the shadow subtree, it need to clean itself up.
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DSliderThumbElement.cpp109 void SliderThumbElement::dragFrom(const LayoutPoint& point) argument
113 setPositionFromPoint(point);
116 void SliderThumbElement::setPositionFromPoint(const LayoutPoint& point) argument
124 LayoutPoint offset = roundedLayoutPoint(input->renderer()->absoluteToLocal(point, UseTransforms));
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorInputAgent.cpp76 void append(const blink::PlatformTouchPoint& point) argument
78 m_touchPoints.append(point);
82 void ConvertInspectorPoint(blink::Page* page, const blink::IntPoint& point, blink::IntPoint* convertedPoint, blink::IntPoint* globalPoint) argument
84 *convertedPoint = page->deprecatedLocalMainFrame()->view()->convertToContainingWindow(point);
85 *globalPoint = page->chrome().rootViewToScreen(blink::IntRect(point, blink::IntSize(0, 0))).location();
263 SyntheticInspectorTouchPoint point(id++, convertedState, globalPoint, convertedPoint, radiusX, radiusY, rotationAngle, force);
264 event.append(point);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DHitTestResult.cpp53 HitTestResult::HitTestResult(const LayoutPoint& point) argument
54 : m_hitTestLocation(point)
55 , m_pointInInnerNodeFrame(point)
71 , m_pointInInnerNodeFrame(m_hitTestLocation.point())
206 return frame->selection().contains(m_hitTestLocation.point());
213 // Return the tool tip string associated with this point, if any. Only markers associated with bad grammar
218 DocumentMarker* marker = m_innerNonSharedNode->document().markers().markerContainingPoint(m_hitTestLocation.point(), DocumentMarker::Grammar);
465 // Update the HitTestResult as if the supplied node had been hit in normal point-based hit-test.
466 // Note that we don't know the local point after a rect-based hit-test, but we never use
H A DRenderWidget.cpp316 CursorDirective RenderWidget::getCursor(const LayoutPoint& point, Cursor& cursor) const argument
322 return RenderReplaced::getCursor(point, cursor);
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGInlineText.cpp158 PositionWithAffinity RenderSVGInlineText::positionForPoint(const LayoutPoint& point) argument
168 // Map local point to absolute point, as the character origins stored in the text fragments use absolute coordinates.
169 FloatPoint absolutePoint(point);
H A DRenderSVGResourceClipper.cpp328 FloatPoint point = nodeAtPoint; local
329 if (!SVGRenderSupport::pointInClippingArea(this, point))
336 point = transform.inverse().mapPoint(point);
343 point = animatedLocalTransform.inverse().mapPoint(point);
353 if (renderer->nodeAtFloatPoint(HitTestRequest(HitTestRequest::SVGClipContent), result, point, HitTestForeground))
H A DSVGRootInlineBox.cpp180 InlineBox* SVGRootInlineBox::closestLeafChildForPosition(const LayoutPoint& point) argument
192 if (point.y() < leaf->y())
194 if (point.y() > leaf->y() + leaf->virtualLogicalHeight())
198 if (point.x() < leaf->left() + leaf->logicalWidth())
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGAnimateMotionElement.cpp137 static bool parsePointInternal(const String& string, FloatPoint& point) argument
153 point = FloatPoint(x, y);
159 static bool parsePoint(const String& string, FloatPoint& point) argument
164 return parsePointInternal<LChar>(string, point);
165 return parsePointInternal<UChar>(string, point);
H A DSVGPathElement.cpp72 FloatPoint point; local
73 getPointAtLengthOfSVGPathByteStream(pathByteStream(), length, point); local
74 return SVGPointTearOff::create(SVGPoint::create(point), 0, PropertyIsNotAnimVal);
/external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/
H A DFontHarfBuzz.cpp123 const FloatPoint& point, const FloatRect& textRect) const
125 SkScalar x = SkFloatToScalar(point.x());
126 SkScalar y = SkFloatToScalar(point.y());
134 gc->concatCTM(AffineTransform(0, -1, 1, 0, point.x(), point.y()));
135 gc->concatCTM(AffineTransform(1, 0, 0, 1, -point.x(), -point.y()));
141 SkScalar verticalOriginX = SkFloatToScalar(point.x() + metrics.floatAscent() - metrics.floatAscent(IdeographicBaseline));
142 float horizontalOffset = point.x();
153 y = SkFloatToScalar(point
121 drawGlyphs(GraphicsContext* gc, const SimpleFontData* font, const GlyphBuffer& glyphBuffer, unsigned from, unsigned numGlyphs, const FloatPoint& point, const FloatRect& textRect) const argument
288 selectionRectForComplexText(const TextRun& run, const FloatPoint& point, int height, int from, int to) const argument
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatBox.h124 void expandTo(const FloatPoint3D& point) argument
126 expandTo(point, point);
H A DFloatQuad.cpp78 // Check if point is in triangle
126 FloatPoint point; local
128 point.setY(rect.maxY());
130 point.setY(rect.y());
132 point.setX(rect.x());
134 point.setX(rect.maxX());
135 return point;
194 // If distance between the center point and the line > the radius,
199 // The nearest point on the line is between p0 and p1?
H A DFloatRect.cpp79 bool FloatRect::contains(const FloatPoint& point, ContainsMode containsMode) const argument
82 return contains(point.x(), point.y());
83 return x() < point.x() && maxX() > point.x() && y() < point.y() && maxY() > point.y();
H A DLayoutPoint.h44 LayoutPoint(const IntPoint& point) : m_x(point.x()), m_y(point.y()) { } argument
121 inline LayoutPoint operator-(const LayoutPoint& point) argument
123 return LayoutPoint(-point.x(), -point.y());
151 inline IntPoint flooredIntPoint(const LayoutPoint& point) argument
153 return IntPoint(point.x().floor(), point.y().floor());
156 inline IntPoint roundedIntPoint(const LayoutPoint& point) argument
166 ceiledIntPoint(const LayoutPoint& point) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DPathTraversalState.cpp182 float PathTraversalState::moveTo(const FloatPoint& point) argument
184 m_current = m_start = point;
188 float PathTraversalState::lineTo(const FloatPoint& point) argument
190 float distance = distanceLine(m_current, point);
191 m_current = point;
/external/chromium_org/third_party/WebKit/Source/platform/graphics/skia/
H A DSkiaUtils.cpp128 bool SkPathContainsPoint(const SkPath& originalPath, const FloatPoint& point, SkPath::FillType ft) argument
132 // We can immediately return false if the point is outside the bounding
136 SkScalar fX = SkFloatToScalar(point.x());
137 SkScalar fY = SkFloatToScalar(point.y());
162 int x = static_cast<int>(floorf(0.5f + point.x() * scale));
163 int y = static_cast<int>(floorf(0.5f + point.y() * scale));

Completed in 318 milliseconds

1234567891011>>