Searched defs:center (Results 1 - 25 of 179) sorted by relevance

12345678

/external/chromium_org/third_party/skia/src/svg/
H A DSkSVGRadialGradient.cpp32 SkString center; local
33 center.appendUnichar('[');
34 center.append(f_cx);
35 center.appendUnichar(',');
36 center.append(f_cy);
37 center.appendUnichar(']');
38 parser._addAttribute("center", center);
/external/skia/src/svg/
H A DSkSVGRadialGradient.cpp32 SkString center; local
33 center.appendUnichar('[');
34 center.append(f_cx);
35 center.appendUnichar(',');
36 center.append(f_cy);
37 center.appendUnichar(']');
38 parser._addAttribute("center", center);
/external/chromium_org/chrome/browser/chromeos/first_run/steps/
H A Dapp_list_step.cc28 gfx::Point center = button_bounds.CenterPoint(); local
29 actor()->AddRoundHole(center.x(), center.y(), kCircleRadius);
30 actor()->ShowStepPointingTo(name(), center.x(), center.y(), kCircleRadius);
H A Dhelp_step.cc29 gfx::Point center = button_bounds.CenterPoint(); local
30 actor()->AddRoundHole(center.x(), center.y(), kCircleRadius);
31 actor()->ShowStepPointingTo(name(), center.x(), center.y(), kCircleRadius);
/external/aac/libAACenc/src/
H A Dchaosmeasure.cpp110 FIXP_DBL left,center; /* left, center tap of filter */ local
113 center = (FIXP_DBL)((LONG)paMDCTDataNM0[i+2]^((LONG)paMDCTDataNM0[i+2]>>(DFRACT_BITS-1)));
119 if (tmp < center ) {
120 INT leadingBits = CntLeadingZeros(center)-1;
121 tmp = schur_div(tmp<<leadingBits, center<<leadingBits, 8);
128 left = center;
129 center = right;
/external/chromium_org/third_party/skia/src/animator/
H A DSkDrawGradient.h61 SkPoint center; member in class:SkDrawRadialGradient
/external/chromium_org/tools/telemetry/telemetry/core/timeline/
H A Dbounds.py35 def center(self): member in class:Bounds
/external/chromium_org/ui/base/cocoa/
H A Dappkit_utils.h19 int center; member in struct:ui::NinePartImageIds
/external/skia/src/animator/
H A DSkDrawGradient.h61 SkPoint center; member in class:SkDrawRadialGradient
/external/skia/tests/
H A DShaderImageFilterTest.cpp31 SkPoint center = SkPoint::Make(SkIntToScalar(5), SkIntToScalar(5)); local
39 center, radius, colors, pos, SK_ARRAY_COUNT(colors), SkShader::kClamp_TileMode);
50 center, radius, colors, pos, SK_ARRAY_COUNT(colors), SkShader::kClamp_TileMode);
/external/chromium/chrome/browser/ui/views/infobars/
H A Dinfobar_button_border.h37 SkBitmap* center; member in struct:InfoBarButtonBorder::MBBImageSet
/external/chromium_org/remoting/webapp/
H A Dtoolbar.js47 window.addEventListener('resize', this.center.bind(this), false);
80 remoting.Toolbar.prototype.center = function() {
/external/chromium_org/third_party/WebKit/Source/modules/notifications/
H A DNotificationCenter.cpp106 PassRefPtr<NotificationCenter::NotificationRequestCallback> NotificationCenter::NotificationRequestCallback::createAndStartTimer(NotificationCenter* center, PassOwnPtr<VoidCallback> callback) argument
108 RefPtr<NotificationCenter::NotificationRequestCallback> requestCallback = adoptRef(new NotificationCenter::NotificationRequestCallback(center, callback));
113 NotificationCenter::NotificationRequestCallback::NotificationRequestCallback(NotificationCenter* center, PassOwnPtr<VoidCallback> callback) argument
114 : m_notificationCenter(center)
/external/eigen/demos/mandelbrot/
H A Dmandelbrot.h39 Eigen::Vector2d center; member in class:MandelbrotWidget
55 MandelbrotWidget() : QWidget(), center(0,0), xradius(2),
/external/jmonkeyengine/engine/src/core/com/jme3/collision/bih/
H A DBIHTriangle.java43 private final Vector3f center = new Vector3f(); field in class:BIHTriangle
49 center.set(pointa);
50 center.addLocal(pointb).addLocal(pointc).multLocal(FastMath.ONE_THIRD);
66 return center;
/external/jmonkeyengine/engine/src/core/com/jme3/effect/shapes/
H A DEmitterSphereShape.java44 private Vector3f center; field in class:EmitterSphereShape
50 public EmitterSphereShape(Vector3f center, float radius) { argument
51 if (center == null) {
59 this.center = center;
67 clone.center = center.clone();
80 } while (store.distance(center) > radius);
89 return center;
92 public void setCenter(Vector3f center) { argument
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
H A DBox.java79 * The box has a center of 0,0,0 and extends in the out from the center by
95 * The box has the given center and extends in the out from the center by
99 * @param center the center of the box.
104 public Box(Vector3f center, float x, float y, float z) { argument
106 updateGeometry(center, x, y, z);
140 return new Box(center.clone(), xExtent, yExtent, zExtent);
H A DDome.java62 /** The center of the dome */
63 private Vector3f center; field in class:Dome
95 * @param center
106 public Dome(Vector3f center, int planes, int radialSamples, argument
109 updateGeometry(center, planes, radialSamples, radius, true);
119 * @param center
133 public Dome(Vector3f center, int planes, int radialSamples, argument
136 updateGeometry(center, planes, radialSamples, radius, insideView);
140 return center;
174 * @param center th
180 updateGeometry(Vector3f center, int planes, int radialSamples, float radius, boolean insideView) argument
[all...]
H A DStripBox.java78 * The box has a center of 0,0,0 and extends in the out from the center by
94 * The box has the given center and extends in the out from the center by
98 * @param center the center of the box.
103 public StripBox(Vector3f center, float x, float y, float z) { argument
105 updateGeometry(center, x, y, z);
139 return new StripBox(center.clone(), xExtent, yExtent, zExtent);
/external/skia/gm/
H A Dcircles.cpp66 SkPoint center = SkPoint::Make(SkIntToScalar(40), SkIntToScalar(40)); local
69 SkShader* s = SkGradientShader::CreateRadial(center,
H A Dshallowgradient.cpp20 SkPoint center = { size.width()/2, size.height()/2 }; local
21 return SkGradientShader::CreateRadial(center, size.width()/2, colors, NULL, count,
26 SkPoint center = { size.width()/2, size.height()/2 }; local
27 return SkGradientShader::CreateTwoPointConical(center, size.width()/64,
28 center, size.width()/2,
H A Dstringart.cpp37 SkPoint center = SkPoint::Make(SkScalarHalf(kWidth), SkScalarHalf(kHeight)); local
42 path.moveTo(center);
46 SkPoint rp = SkPoint::Make(length*SkScalarCos(step) + center.fX,
47 length*SkScalarSin(step) + center.fY);
/external/chromium_org/chrome/browser/ui/views/omnibox/
H A Domnibox_view_views_browsertest.cc42 // Move the mouse to the center of the browser window and left-click.
68 // Tap the center of the browser window.
74 gfx::Point center = BrowserView::GetBrowserViewForBrowser( local
76 ui::TouchEvent press(ui::ET_TOUCH_PRESSED, center,
80 ui::TouchEvent release(ui::ET_TOUCH_RELEASED, center,
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DGapRects.h32 const LayoutRect& center() const { return m_center; } function in struct:WebCore::GapRects
38 void unite(const GapRects& o) { uniteLeft(o.left()); uniteCenter(o.center()); uniteRight(o.right()); }
50 return m_left == other.left() && m_center == other.center() && m_right == other.right();
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGEllipse.cpp127 FloatPoint center = FloatPoint(m_center.x() - point.x(), m_center.y() - point.y()); local
131 float xrXOuter = center.x() / (m_radii.width() + halfStrokeWidth);
132 float yrYOuter = center.y() / (m_radii.height() + halfStrokeWidth);
136 float xrXInner = center.x() / (m_radii.width() - halfStrokeWidth);
137 float yrYInner = center.y() / (m_radii.height() - halfStrokeWidth);
146 FloatPoint center = FloatPoint(m_center.x() - point.x(), m_center.y() - point.y());
150 float xrX = center.x() / m_radii.width();
151 float yrY = center.y() / m_radii.height();

Completed in 1354 milliseconds

12345678