Searched refs:x2 (Results 1 - 25 of 878) sorted by relevance

1234567891011>>

/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/demos-en/
H A Dhscale.rb43 x2 = width - 30
44 if x2 < 21
45 x2 = 21
47 w.coords 'poly',20,15,20,35,x2,35,x2,45,width,25,x2,5,x2,15,20,15
48 w.coords 'line',20,15,20,35,x2,35,x2,45,width,25,x2,
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/demos-jp/
H A Dhscale.rb46 x2 = width - 30
47 if x2 < 21
48 x2 = 21
50 w.coords 'poly',20,15,20,35,x2,35,x2,45,width,25,x2,5,x2,15,20,15
51 w.coords 'line',20,15,20,35,x2,35,x2,45,width,25,x2,
[all...]
/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGPathSegCurvetoCubicSmooth.h31 SVGPathSegCurvetoCubicSmooth(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2) argument
35 , m_x2(x2)
54 float x2() const { return m_x2; } function in class:WebCore::SVGPathSegCurvetoCubicSmooth
55 void setX2(float x2) argument
57 m_x2 = x2;
77 static PassRefPtr<SVGPathSegCurvetoCubicSmoothAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2) argument
79 return adoptRef(new SVGPathSegCurvetoCubicSmoothAbs(element, role, x, y, x2, y2));
83 SVGPathSegCurvetoCubicSmoothAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2) argument
84 : SVGPathSegCurvetoCubicSmooth(element, role, x, y, x2, y2)
94 static PassRefPtr<SVGPathSegCurvetoCubicSmoothRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, floa argument
100 SVGPathSegCurvetoCubicSmoothRel(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2) argument
[all...]
H A DSVGPathSegCurvetoCubicSmoothAbs.idl32 [StrictTypeChecking] attribute float x2;
H A DSVGPathSegCurvetoCubicSmoothRel.idl32 [StrictTypeChecking] attribute float x2;
H A DSVGPathSegCurvetoCubic.h31 SVGPathSegCurvetoCubic(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2) argument
37 , m_x2(x2)
70 float x2() const { return m_x2; } function in class:WebCore::SVGPathSegCurvetoCubic
71 void setX2(float x2) argument
73 m_x2 = x2;
95 static PassRefPtr<SVGPathSegCurvetoCubicAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2) argument
97 return adoptRef(new SVGPathSegCurvetoCubicAbs(element, role, x, y, x1, y1, x2, y2));
101 SVGPathSegCurvetoCubicAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2) argument
102 : SVGPathSegCurvetoCubic(element, role, x, y, x1, y1, x2, y2)
112 static PassRefPtr<SVGPathSegCurvetoCubicRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, floa argument
118 SVGPathSegCurvetoCubicRel(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2) argument
[all...]
H A DSVGLinearGradientElement.idl31 readonly attribute SVGAnimatedLength x2;
H A DSVGLineElement.idl35 readonly attribute SVGAnimatedLength x2;
H A DSVGPathSegCurvetoCubicAbs.idl34 [StrictTypeChecking] attribute float x2;
/macosx-10.9.5/WebCore-7537.78.1/rendering/shapes/
H A DShapeInterval.h40 float x2; member in struct:WebCore::ShapeInterval
42 ShapeInterval(float x1 = 0, float x2 = 0)
44 , x2(x2)
H A DShapeInterval.cpp46 if (x2 < i.x1 || x1 > i.x2)
49 rv.x2 = std::min(x2, i.x2);
73 else if (v[i].x1 >= interval->x1 && v[i].x1 <= interval->x2) // FIXME: 1st <= test not needed?
74 interval->x2 = std::max(interval->x2, v[i].x2);
108 if (v1[i1].x2 < v
[all...]
/macosx-10.9.5/emacs-92/emacs/mac/inc/
H A Dtermio.h49 #define ICRNL 0x2 /* map CR to NL on input */
54 #define TABDLY 0x2 /* horizontal tab delays */
59 #define B9600 0x2
63 #define ICANON 0x2 /* canonical input (erase and kill processing) */
/macosx-10.9.5/file_cmds-230/pax/
H A Dpat_rep.h47 #define GLOB 0x2
/macosx-10.9.5/tcl-102/tk/tk/library/demos/
H A Dhscale.tcl41 set x2 [expr {$width - 30}]
42 if {$x2 < 21} {
43 set x2 21
45 $w coords poly 20 15 20 35 $x2 35 $x2 45 $width 25 $x2 5 $x2 15 20 15
46 $w coords line 20 15 20 35 $x2 35 $x2 45 $width 25 $x2
[all...]
/macosx-10.9.5/bash-92/bash-3.2/examples/functions/
H A Dinetaddr25 local x1 x2 x3 x4
50 x2=$(( 0x${h:2:2} ))
55 printf "%d.%d.%d.%d\n" $x1 $x2 $x3 $x4
57 printf "%d.%d.%d.%d\n" $x4 $x3 $x2 $x1
/macosx-10.9.5/eap8021x-180/EAP8021X.fproj/
H A Deapolcfg_auth_types.h50 keapolcfg_auth_set_password = 0x2
/macosx-10.9.5/xnu-2422.115.4/osfmk/device/
H A Ddevice_port.h74 #define DEVICE_PAGER_COHERENT 0x2
/macosx-10.9.5/xnu-2422.115.4/osfmk/mach/
H A Dsync_policy.h42 #define SYNC_POLICY_REVERSED 0x2
/macosx-10.9.5/tcl-102/tk84/tk/library/demos/
H A Dhscale.tcl41 set x2 [expr {$width - 30}]
42 if {$x2 < 21} {
43 set x2 21
45 $w coords poly 20 15 20 35 $x2 35 $x2 45 $width 25 $x2 5 $x2 15 20 15
46 $w coords line 20 15 20 35 $x2 35 $x2 45 $width 25 $x2
[all...]
/macosx-10.9.5/OpenPAM-20/compat/
H A Dpam_shim_setcred_flags.h2 xlate(PAM_DELETE_CRED, 0x0004U, PAM_DELETE_CRED, 0x2)
/macosx-10.9.5/Security-55471.14.18/libsecurity_apple_csp/open_ssl/misc/
H A Drc2_cbc.c166 register RC2_INT x0,x1,x2,x3,t; local
173 x2=(RC2_INT)l&0xffff;
182 t=(x0+(x1& ~x3)+(x2&x3)+ *(p0++))&0xffff;
184 t=(x1+(x2& ~x0)+(x3&x0)+ *(p0++))&0xffff;
186 t=(x2+(x3& ~x1)+(x0&x1)+ *(p0++))&0xffff;
187 x2=(t<<3)|(t>>13);
188 t=(x3+(x0& ~x2)+(x1&x2)+ *(p0++))&0xffff;
198 x2+=p1[x1&0x3f];
199 x3+=p1[x2
215 register RC2_INT x0,x1,x2,x3,t; local
[all...]
/macosx-10.9.5/libiconv-41/libiconv/lib/
H A Dcns11643_inv.h1582 0x3,0x21,0x26, 0x3,0x21,0x25, 0x2,0x21,0x26, 0x1,0x44,0x37,
1583 0x1,0x44,0x35, 0x1,0x44,0x38, 0x1,0x44,0x36, 0x2,0x21,0x27,
1584 0x1,0x44,0x62, 0x2,0x21,0x2f, 0x2,0x21,0x2d, 0x1,0x44,0x61,
1590 0x1,0x44,0x63, 0x2,0x21,0x30, 0x4,0x21,0x3a, 0x1,0x44,0x64,
1591 0x2,0x21,0x43, 0x1,0x48,0x6b, 0x2,0x25,0x31, 0x4,0x2b,0x5e,
1593 0x2,0x21,0x44, 0x3,0x27,0x40, 0x3,0x21,0x23, 0x4,0x21,0x22,
1594 0x4,0x21,0x23, 0x2,0x21,0x21, 0x1,0x44,0x25, 0x1,0x44,0x3c,
1595 0x3,0x21,0x30, 0x2,
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/
H A DUnitBezier.h68 double x2; local
74 x2 = sampleCurveX(t2) - x;
75 if (fabs (x2) < epsilon)
80 t2 = t2 - x2 / d2;
94 x2 = sampleCurveX(t2);
95 if (fabs(x2 - x) < epsilon)
97 if (x > x2)
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DCSSTimingFunctionValue.h54 static PassRefPtr<CSSCubicBezierTimingFunctionValue> create(double x1, double y1, double x2, double y2) argument
56 return adoptRef(new CSSCubicBezierTimingFunctionValue(x1, y1, x2, y2));
63 double x2() const { return m_x2; } function in class:WebCore::CSSCubicBezierTimingFunctionValue
69 CSSCubicBezierTimingFunctionValue(double x1, double y1, double x2, double y2) argument
73 , m_x2(x2)
/macosx-10.9.5/tcl-102/tk84/tk/xlib/
H A Dxdraw.c35 XDrawLine(display, d, gc, x1, y1, x2, y2)
39 int x1, y1, x2, y2; /* Coordinates of line segment. */
45 points[1].x = x2;

Completed in 205 milliseconds

1234567891011>>