Searched refs:dy (Results 1 - 25 of 225) sorted by relevance

123456789

/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/filters/
H A DFEOffset.h33 static PassRefPtr<FEOffset> create(Filter*, float dx, float dy);
38 float dy() const;
49 FEOffset(Filter*, float dx, float dy);
H A DFEOffset.cpp36 FEOffset::FEOffset(Filter* filter, float dx, float dy) argument
39 , m_dy(dy)
43 PassRefPtr<FEOffset> FEOffset::create(Filter* filter, float dx, float dy) argument
45 return adoptRef(new FEOffset(filter, dx, dy));
58 float FEOffset::dy() const function in class:WebCore::FEOffset
63 void FEOffset::setDy(float dy) argument
65 m_dy = dy;
105 ts << " dx=\"" << dx() << "\" dy=\"" << dy() << "\"]\n";
H A DFEDropShadow.h43 float dy() const { return m_dy; } function in class:WebCore::FEDropShadow
44 void setDy(float dy) { m_dy = dy; } argument
/macosx-10.9.5/ruby-104/ruby/benchmark/
H A Dbm_app_mandelbrot.rb16 (0..1000).each{|dy|
18 y = dy / 50.0
H A Dbm_so_nbody.rb27 dy = @y - b2.y
30 distance = Math.sqrt(dx * dx + dy * dy + dz * dz)
35 @vy -= dy * b2_mass_mag
38 b2.vy += dy * b_mass_mag
59 dy = b.y - b2.y
61 distance = Math.sqrt(dx * dx + dy * dy + dz * dz)
/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGFEOffsetElement.idl32 readonly attribute SVGAnimatedNumber dy;
H A DSVGGlyphRefElement.idl28 [SetterRaisesException] attribute float dy;
H A DSVGTextPositioningElement.idl32 readonly attribute SVGAnimatedLengthList dy;
H A DSVGFEDropShadowElement.idl26 readonly attribute SVGAnimatedNumber dy;
H A DSVGFEOffsetElement.h46 DECLARE_ANIMATED_NUMBER(Dy, dy)
H A DSVGTextPositioningElement.h46 DECLARE_ANIMATED_LENGTH_LIST(Dy, dy)
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/Hakoiri-Musume/
H A Dtk_hako.rb36 dy = 1
38 dy = -1
40 dy = 0
44 dy = 0
47 return if (dx == 0) and (dy == 0)
49 chip.try_move(dx, dy)
H A Dhako.rb32 def move?(chip, dx, dy)
42 chip.area(dx, dy).each do |a|
63 def area(dx=0, dy=0)
67 v.push([dx + @x + j - 1, dy + @y + i - 1])
79 def move(dx, dy)
81 y = @y + dy
86 try_move(dx, dy)
89 def try_move(dx, dy)
90 if @house.move?(self, dx, dy)
91 move(dx, dy)
[all...]
H A Dcocoa_hako.rb43 dy = 1
45 dy = -1
47 dy = 0
51 dy = 0
54 return if (dx == 0) and (dy == 0)
55 chip.try_move(dx, dy)
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/
H A DFloatQuad.h121 void move(float dx, float dy) argument
123 m_p1.move(dx, dy);
124 m_p2.move(dx, dy);
125 m_p3.move(dx, dy);
126 m_p4.move(dx, dy);
129 void scale(float dx, float dy) argument
131 m_p1.scale(dx, dy);
132 m_p2.scale(dx, dy);
133 m_p3.scale(dx, dy);
134 m_p4.scale(dx, dy);
[all...]
/macosx-10.9.5/WebCore-7537.78.1/rendering/svg/
H A DSVGTextLayoutAttributes.h40 float dy; member in struct:WebCore::SVGCharacterData
72 , dy(SVGTextLayoutAttributes::emptyValue())
/macosx-10.9.5/tcl-102/tcl_ext/tkimg/tkimg/compat/libtiff/libtiff/
H A Dtif_tile.c72 uint32 dy = td->td_tilelength; local
80 if (dy == (uint32) -1)
81 dy = td->td_imagelength;
84 if (dx != 0 && dy != 0 && dz != 0) {
86 uint32 ypt = TIFFhowmany(td->td_imagelength, dy);
92 xpt*(y/dy) +
95 tile = (xpt*ypt)*(z/dz) + xpt*(y/dy) + x/dx;
149 uint32 dy = td->td_tilelength; local
155 if (dy == (uint32) -1)
156 dy
[all...]
/macosx-10.9.5/tcl-102/tk84/tk/unix/
H A DtkUnixDraw.c31 int dx, dy; /* Amount by which window was shifted. */ member in struct:ScrollInfo
63 TkScrollWindow(tkwin, gc, x, y, width, height, dx, dy, damageRgn)
67 int dx, dy; /* Distance rectangle should be moved. */
75 x, y, (unsigned int) width, (unsigned int) height, x + dx, y + dy);
82 info.dy = dy;
173 rect.y += info->dy;
74 x, y, (unsigned int) width, (unsigned int) height, x + dx, y + dy); local
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/framework/src/ruby/osx/objc/
H A Doc_types.rb55 def inflate(dx, dy); inset(-dx, -dy); end
56 def inset(dx, dy); OSX::NSInsetRect(self, dx, dy); end
60 def offset(dx, dy); OSX::NSOffsetRect(self, dx, dy); end
/macosx-10.9.5/tcl-102/tk/tk/unix/
H A DtkUnixDraw.c30 int dx, dy; /* Amount by which window was shifted. */ member in struct:ScrollInfo
66 int dx, int dy, /* Distance rectangle should be moved. */
74 x, y, (unsigned) width, (unsigned) height, x+dx, y+dy);
81 info.dy = dy;
171 rect.y += info->dy;
60 TkScrollWindow( Tk_Window tkwin, GC gc, int x, int y, int width, int height, int dx, int dy, TkRegion damageRgn) argument
73 x, y, (unsigned) width, (unsigned) height, x+dx, y+dy); local
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderOverflow.h52 void move(LayoutUnit dx, LayoutUnit dy);
70 inline void RenderOverflow::move(LayoutUnit dx, LayoutUnit dy) argument
72 m_layoutOverflow.move(dx, dy);
73 m_visualOverflow.move(dx, dy);
/macosx-10.9.5/ncurses-42/ncurses/ncurses/base/
H A Dlib_overlay.c142 int sx, sy, dx, dy; local
167 for (dy = dminrow, sy = sminrow;
168 dy <= dmaxrow;
169 sy++, dy++) {
177 (!CharEq(dst->_line[dy].text[dx],
179 dst->_line[dy].text[dx] =
181 SetAttr(dst->_line[dy].text[dx],
187 if (!CharEq(dst->_line[dy].text[dx],
189 dst->_line[dy].text[dx] =
/macosx-10.9.5/tcl-102/tcl_ext/bwidget/bwidget/
H A Dscrollframe.tcl157 set dy 0
177 set dy [expr {$y1-$yb1}]
179 if { $y0 < $yb0+$dy } {
180 set dy [expr {$y0-$yb0}]
184 set dy [expr {$y0-$yb0}]
186 if { $y1 > $yb1+$dy } {
187 set dy [expr {$y1-$yb1}]
195 if {($dy + $yOffset) != 0} {
196 set y [expr {($yb0+$dy+$yOffset)/[winfo height $path.frame]}]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/math/
H A Dplotstat.tcl48 set plot($canvas,dy) [expr {($cheight-2*$cy)/double($ymax-$ymin)}]
174 set dy $plot($canvas,dy)
202 set yc [expr {$cy2-$dy*($y-$ymin)-2}]
208 set yc [expr {$cy2-$dy*($y-$ymin)}]
256 set dy $plot($canvas,dy)
286 set yc [expr {$cy2-$dy*($y-$ymin)}]
/macosx-10.9.5/WebCore-7537.78.1/html/canvas/
H A DCanvasRenderingContext2D.idl36 void transform(float m11, float m12, float m21, float m22, float dx, float dy);
37 void setTransform(float m11, float m12, float m21, float m22, float dx, float dy);
125 [RaisesException] void drawImage(HTMLImageElement? image, float sx, float sy, float sw, float sh, float dx, float dy, float dw, float dh);
128 [RaisesException] void drawImage(HTMLCanvasElement? canvas, float sx, float sy, float sw, float sh, float dx, float dy, float dw, float dh);
132 [RaisesException] void drawImage(HTMLVideoElement? video, float sx, float sy, float sw, float sh, float dx, float dy, float dw, float dh);
137 optional float dx, optional float dy, optional float dw, optional float dh,
145 [RaisesException] void putImageData(ImageData? imagedata, float dx, float dy);
146 [RaisesException] void putImageData(ImageData? imagedata, float dx, float dy, float dirtyX, float dirtyY, float dirtyWidth, float dirtyHeight);
148 [RaisesException] void webkitPutImageDataHD(ImageData? imagedata, float dx, float dy);
149 [RaisesException] void webkitPutImageDataHD(ImageData? imagedata, float dx, float dy, floa
[all...]

Completed in 457 milliseconds

123456789