HomeSort by relevance Sort by last modified time
    Searched refs:y2 (Results 1 - 25 of 151) sorted by null

1 2 3 4 5 6 7

  /external/webkit/WebCore/svg/
SVGPathSegCurvetoCubicSmooth.cpp 27 SVGPathSegCurvetoCubicSmoothAbs::SVGPathSegCurvetoCubicSmoothAbs(float x, float y, float x2, float y2)
28 : SVGPathSegCurvetoCubicSmooth(x, y, x2, y2)
32 SVGPathSegCurvetoCubicSmoothRel::SVGPathSegCurvetoCubicSmoothRel(float x, float y, float x2, float y2)
33 : SVGPathSegCurvetoCubicSmooth(x, y, x2, y2)
SVGPathSegCurvetoCubic.cpp 28 SVGPathSegCurvetoCubicAbs::SVGPathSegCurvetoCubicAbs(float x, float y, float x1, float y1, float x2, float y2)
29 : SVGPathSegCurvetoCubic(x, y, x1, y1, x2, y2)
33 SVGPathSegCurvetoCubicRel::SVGPathSegCurvetoCubicRel(float x, float y, float x1, float y1, float x2, float y2)
34 : SVGPathSegCurvetoCubic(x, y, x1, y1, x2, y2)
SVGPathSegCurvetoCubicSmooth.h 32 SVGPathSegCurvetoCubicSmooth(float x, float y, float x2, float y2)
33 : m_x(x), m_y(y), m_x2(x2), m_y2(y2) { }
46 void setY2(float y2) { m_y2 = y2; }
47 float y2() const { return m_y2; } function in class:WebCore::SVGPathSegCurvetoCubicSmooth
58 static PassRefPtr<SVGPathSegCurvetoCubicSmoothAbs> create(float x, float y, float x2, float y2) { return adoptRef(new SVGPathSegCurvetoCubicSmoothAbs(x, y, x2, y2)); }
64 SVGPathSegCurvetoCubicSmoothAbs(float x, float y, float x2, float y2);
69 static PassRefPtr<SVGPathSegCurvetoCubicSmoothRel> create(float x, float y, float x2, float y2) { return adoptRef(new SVGPathSegCurvetoCubicSmoothRel(x, y, x2, y2)); }
    [all...]
SVGPathSegCurvetoCubic.h 32 SVGPathSegCurvetoCubic(float x, float y, float x1, float y1, float x2, float y2) : SVGPathSeg() , m_x(x) , m_y(y) , m_x1(x1) , m_y1(y1) , m_x2(x2) , m_y2(y2) {}
51 void setY2(float y2) { m_y2 = y2; }
52 float y2() const { return m_y2; } function in class:WebCore::SVGPathSegCurvetoCubic
65 static PassRefPtr<SVGPathSegCurvetoCubicAbs> create(float x, float y, float x1, float y1, float x2, float y2)
67 return adoptRef(new SVGPathSegCurvetoCubicAbs(x, y, x1, y1, x2, y2));
74 SVGPathSegCurvetoCubicAbs(float x, float y, float x1, float y1, float x2, float y2);
79 static PassRefPtr<SVGPathSegCurvetoCubicRel> create(float x, float y, float x1, float y1, float x2, float y2)
81 return adoptRef(new SVGPathSegCurvetoCubicRel(x, y, x1, y1, x2, y2));
    [all...]
SVGPathSegCurvetoCubicSmoothAbs.idl 36 attribute float y2
SVGPathSegCurvetoCubicSmoothRel.idl 36 attribute float y2
SVGPathSegCurvetoCubicAbs.idl 40 attribute float y2
SVGPathSegCurvetoCubicRel.idl 40 attribute float y2
SVGLineElement.idl 37 readonly attribute SVGAnimatedLength y2;
SVGLinearGradientElement.idl 32 readonly attribute SVGAnimatedLength y2;
  /external/webkit/WebCore/css/
CSSTimingFunctionValue.h 36 static PassRefPtr<CSSTimingFunctionValue> create(double x1, double y1, double x2, double y2)
38 return adoptRef(new CSSTimingFunctionValue(x1, y1, x2, y2));
46 double y2() const { return m_y2; } function in class:WebCore::CSSTimingFunctionValue
49 CSSTimingFunctionValue(double x1, double y1, double x2, double y2)
53 , m_y2(y2)
  /external/skia/src/animator/
SkDrawLine.cpp 29 SK_MEMBER(y2, Float)
36 SkLine::SkLine() : x1(0), x2(0), y1(0), y2(0) {
41 maker.fCanvas->drawLine(x1, y1, x2, y2, *maker.fPaint);
SkDrawLine.h 32 SkScalar y2; member in class:SkLine
  /frameworks/base/media/libstagefright/codecs/amrnb/enc/src/
g_code.h 104 Word16 y2[], /* i : filtered innovation vector */
spstproc.h 120 Word16 y2[], /* i : Filtered fixed codebook excitation */
  /external/skia/src/svg/
SkSVGLine.cpp 25 SVG_ATTRIBUTE(y2)
36 SVG_ADD_ATTRIBUTE(y2);
  /frameworks/base/services/audioflinger/
AudioResamplerCubic.h 43 int32_t a, b, c, y0, y1, y2, y3; member in struct:android::AudioResamplerCubic::__anon9496
55 p->y1 = p->y2;
56 p->y2 = p->y3;
58 p->a = (3 * (p->y1 - p->y2) - p->y0 + p->y3) >> 1;
59 p->b = (p->y2 << 1) + p->y0 - (((5 * p->y1 + p->y3)) >> 1);
60 p->c = (p->y2 - p->y0) >> 1;
  /external/freetype/src/base/
ftbbox.c 93 /* y2 :: The coordinate of the control point. */
104 FT_Pos y2,
109 if ( y1 <= y3 && y2 == y1 ) /* flat arc */
114 if ( y2 >= y1 && y2 <= y3 ) /* ascending arc */
119 if ( y2 >= y3 && y2 <= y1 ) /* descending arc */
121 y2 = y1;
123 y3 = y2;
128 y1 = y3 = y1 - FT_MulDiv( y2 - y1, y2 - y1, y1 - 2*y2 + y3 )
    [all...]
  /external/webkit/WebCore/platform/animation/
TimingFunction.h 42 TimingFunction(ETimingFunctionType timingFunction, double x1 = 0.0, double y1 = 0.0, double x2 = 1.0, double y2 = 1.0)
47 , m_y2(y2)
59 double y2() const { return m_y2; } function in struct:WebCore::TimingFunction
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/editors/layout/gscripts/
IGraphics.java 100 void drawLine(int x1, int y1, int x2, int y2);
111 void drawRect(int x1, int y1, int x2, int y2);
127 void fillRect(int x1, int y1, int x2, int y2);
  /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
conceal.cpp 142 uint8 *y1, *y2, *u1, *u2, *v1, *v2; local
157 y2 = prevFrame + lumstart;
162 oscl_memcpy(y1, y2, MB_SIZE);
164 y2 += width_Y;
165 oscl_memcpy(y1, y2, MB_SIZE);
167 y2 += width_Y;
168 oscl_memcpy(y1, y2, MB_SIZE);
170 y2 += width_Y;
171 oscl_memcpy(y1, y2, MB_SIZE);
173 y2 += width_Y
    [all...]
get_pred_adv_b_add.cpp 867 uint32 x1, x2, x1m, x2m, y1, y2, y1m, y2m; /* new way */ local
    [all...]
  /external/qemu/android/skin/
rect.c 150 if (a.x2 <= b.x1 || b.x2 <= a.x1 || a.y2 <= b.y1 || b.y2 <= a.y1) {
154 if (b.x1 >= a.x1 && b.x2 <= a.x2 && b.y1 >= a.y1 && b.y2 <= a.y2) {
170 if (a.x2 <= b.x1 || b.x2 <= a.x1 || a.y2 <= b.y1 || b.y2 <= a.y1) {
178 r.y2 = (a.y2 < b.y2) ? a.y2 : b.y2
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/gem/
SDL_gemevents.c 82 short x2,y2,w2,h2; local
86 x2=y2=w2=h2 = 0;
90 wind_get (GEM_handle, WF_WORKXYWH, &x2, &y2, &w2, &h2);
99 mouse_event,x2,y2,w2,h2,
172 short x2,y2,w2,h2; local
229 wind_get (message[3], WF_WORKXYWH, &x2, &y2, &w2, &h2);
249 wind_get (message[3], WF_WORKXYWH, &x2, &y2, &w2, &h2);
296 short x2, y2, w2, h2; local
304 x2 = y2 = 0;
308 wind_get (GEM_handle, WF_WORKXYWH, &x2, &y2, &w2, &h2)
    [all...]
  /frameworks/base/services/sensorservice/
SecondOrderLowPassFilter.h 49 float y1, y2; member in class:android::BiquadFilter

Completed in 1560 milliseconds

1 2 3 4 5 6 7