Searched refs:rotate (Results 1 - 25 of 87) sorted by relevance

1234

/macosx-10.9.5/ruby-104/ruby/test/ruby/
H A Dtest_array.rb2058 assert_equal(ary.rotate, ary.shuffle(random: gen_to_int))
2259 assert_equal([2,3,4,5,1], a.rotate)
2260 assert_equal([5,1,2,3,4], a.rotate(-1))
2261 assert_equal([3,4,5,1,2], a.rotate(2))
2262 assert_equal([4,5,1,2,3], a.rotate(-2))
2263 assert_equal([4,5,1,2,3], a.rotate(13))
2264 assert_equal([3,4,5,1,2], a.rotate(-13))
2266 assert_equal([1], a.rotate)
2267 assert_equal([1], a.rotate(2))
2268 assert_equal([1], a.rotate(
[all...]
/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGTextPositioningElement.idl33 readonly attribute SVGAnimatedNumberList rotate;
H A DSVGTextPositioningElement.h47 DECLARE_ANIMATED_NUMBER_LIST(Rotate, rotate)
H A DSVGMatrix.idl40 [Immutable, StrictTypeChecking] SVGMatrix rotate(float angle);
H A DSVGMatrix.h66 SVGMatrix rotate(double d) function in class:WebCore::SVGMatrix
69 copy.rotate(d);
H A DSVGTextPositioningElement.cpp41 DEFINE_ANIMATED_NUMBER_LIST(SVGTextPositioningElement, SVGNames::rotateAttr, Rotate, rotate)
48 REGISTER_LOCAL_ANIMATED_PROPERTY(rotate)
H A DSVGAnimateMotionElement.cpp126 const AtomicString& rotate = getAttribute(SVGNames::rotateAttr); local
127 if (rotate == autoVal)
129 if (rotate == autoReverse)
243 transform->rotate(angle);
/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tkextlib/blt/
H A Dcutbuffer.rb16 def self.rotate(count = 1) singleton method in class:Tk.CutBuffer
17 Tk.tk_call('::blt::cutbuffer', 'rotate', count)
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/cg/
H A DGraphicsContextPlatformPrivateCG.h62 void rotate(float) {} function in class:WebCore::GraphicsContextPlatformPrivate
76 void rotate(float);
/macosx-10.9.5/WebCore-7537.78.1/rendering/svg/
H A DSVGTextLayoutAttributes.h41 float rotate; member in struct:WebCore::SVGCharacterData
73 , rotate(SVGTextLayoutAttributes::emptyValue())
H A DSVGTextLayoutAttributesBuilder.cpp176 data.rotate = rotateList->at(i);
177 lastRotation = data.rotate;
187 const SVGNumberList& rotateList = position.element->rotate();
227 data.rotate = lastRotation;
232 it->value.rotate = lastRotation;
H A DSVGTextLayoutAttributes.cpp71 dumpSVGCharacterDataMapValue("rotate", data.rotate, false);
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/cairo/
H A DGraphicsContextPlatformPrivateCairo.h76 void rotate(float);
89 void rotate(float) {} function in class:WebCore::GraphicsContextPlatformPrivate
/macosx-10.9.5/ksh-20/ksh/src/lib/libsum/
H A Dsum-crc.c32 [+rotate?XOR each input character with the high order crc byte (instead of the low order).]\
53 unsigned int rotate; member in struct:Crc_s
90 else if (strneq(t, "rotate", i))
91 sum->rotate = 1;
101 if (sum->rotate)
152 if (sum->rotate)
175 if (sum->rotate)
/macosx-10.9.5/files-638.1.4/private/etc/
H A Dasl.conf24 > system.log mode=0640 format=bsd rotate=seq compress file_max=5M all_max=50M
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/ADT/
H A DHashing.h173 /// \brief Bitwise right rotate.
176 inline uint64_t rotate(uint64_t val, size_t shift) { function in namespace:llvm::hashing::detail
213 return hash_16_bytes(seed ^ a, rotate(b + len, len)) ^ b;
221 return hash_16_bytes(rotate(a - b, 43) + rotate(c ^ seed, 30) + d,
222 a + rotate(b ^ k3, 20) - c + len + seed);
228 uint64_t b = rotate(a + z, 52);
229 uint64_t c = rotate(a, 37);
231 c += rotate(a, 7);
234 uint64_t vs = b + rotate(
[all...]
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DWebKitCSSMatrix.idl79 // If rotY and rotZ are NaN, rotate about Z (rotX=0, rotateY=0, rotateZ=rotX).
81 [Immutable] WebKitCSSMatrix rotate([Default=Undefined] optional double rotX,
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DcanvasProfiler.css83 -webkit-transform: rotate(180deg);
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/win/
H A DGraphicsContextWin.cpp176 void GraphicsContextPlatformPrivate::rotate(float degreesAngle) function in class:WebCore::GraphicsContextPlatformPrivate
178 XFORM xform = TransformationMatrix().rotate(degreesAngle);
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/tkextlib/blt/
H A Dbarchart5.rb45 $graph.xaxis_configure(:rotate=>90, :stepsize=>0)
H A Dpareto.rb78 b.axis_configure('x', :title=>'Process', :rotate=>90, :subdivisions=>0,
/macosx-10.9.5/tcsh-65/tcsh/
H A Ded.inputl.c60 static int rotate = 0; variable
368 rotate = 0;
374 rotate = 0;
379 rotate = 1;
384 rotate = 1;
389 if (InputBuf[curlen] && rotate) {
482 if (InputBuf[curlen] && rotate) {
/macosx-10.9.5/Chess-310.5/sjeng/
H A Dsegtb.c70 int rotate[64] = { variable
806 rotate the board 180 degrees */
807 b1 = rotate[w1];
808 w1 = rotate[temp];
852 rotate the board 180 degrees */
853 b2 = rotate[w2];
854 w1 = rotate[b1];
855 b1 = rotate[temp];
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/transforms/
H A DAffineTransform.cpp135 AffineTransform& AffineTransform::rotate(double a) function in class:WebCore::AffineTransform
182 return rotate(rad2deg(atan2(y, x)));
321 // Don't rotate the long way around.
376 m.rotate(rad2deg(-angle));
400 this->rotate(rad2deg(decomp.angle));
/macosx-10.9.5/bind9-45.100/bind9/lib/isc/
H A Dentropy.c96 isc_uint32_t rotate; /*%< how many bits to rotate by */ member in struct:__anon6590
286 if (rp->rotate == 0)
290 ((val << rp->rotate) | (val >> (32 - rp->rotate)));
293 * If we have looped around the pool, increment the rotate
302 rp->rotate = (rp->rotate + 7) & 31;
660 pool->rotate = 0;
669 pool->rotate
[all...]

Completed in 277 milliseconds

1234