HomeSort by relevance Sort by last modified time
    Searched defs:rotate (Results 1 - 25 of 328) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /cts/tests/tests/view/src/android/view/cts/
PixelCopyViewProducerDialogActivity.java 28 public boolean rotate() { method in class:PixelCopyViewProducerDialogActivity
  /prebuilts/go/darwin-x86/src/crypto/md5/
gen.go 65 "rotate": rotate,
80 func rotate() string { func
253 {{rotate}}
260 {{rotate}}
267 {{rotate}}
274 {{rotate}}
283 {{rotate}}
293 {{rotate}}
303 {{rotate}}
    [all...]
  /prebuilts/go/linux-x86/src/crypto/md5/
gen.go 65 "rotate": rotate,
80 func rotate() string { func
253 {{rotate}}
260 {{rotate}}
267 {{rotate}}
274 {{rotate}}
283 {{rotate}}
293 {{rotate}}
303 {{rotate}}
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
rotatingtree.c 67 int rotate; local
73 rotate = !randombits(1);
78 if (rotate) {
90 if (rotate) {
  /external/python/cpython2/Modules/
rotatingtree.c 67 int rotate; local
73 rotate = !randombits(1);
78 if (rotate) {
90 if (rotate) {
  /external/python/cpython3/Modules/
rotatingtree.c 67 int rotate; local
73 rotate = !randombits(1);
78 if (rotate) {
90 if (rotate) {
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
AnimationSetTest.java 33 Animation rotate = new RotateAnimation(1f, 2f); local
36 set.addAnimation(rotate);
42 assertThat(list.get(2), sameInstance(rotate));
  /external/skia/samplecode/
SampleManyRects.cpp 49 SkMatrix rotate; variable
50 rotate.setRotate(fRandom.nextUScalar1() * 360,
53 canvas->concat(rotate);
  /external/skqp/gm/
localmatriximageshader.cpp 27 SkMatrix rotate; local
28 rotate.setRotate(45.0f);
30 sk_sp<SkShader> redLocalMatrixShader = redImageShader->makeWithLocalMatrix(rotate);
32 // Rotate about the origin will happen first.
38 sk_sp<SkShader> blueImageShader = blueImage->makeShader(&rotate);
  /external/skqp/samplecode/
SampleManyRects.cpp 49 SkMatrix rotate; variable
50 rotate.setRotate(fRandom.nextUScalar1() * 360,
53 canvas->concat(rotate);
  /external/tensorflow/tensorflow/contrib/image/python/ops/
image_ops.py 42 def rotate(images, angles, interpolation="NEAREST", name=None): function
43 """Rotate image(s) counterclockwise by the passed angle(s) in radians.
50 angles: A scalar angle to rotate all images by, or (if images has rank 4)
62 with ops.name_scope(name, "rotate"):
130 angles: A scalar angle to rotate all images by, or (for batches of images)
131 a vector with an angle to rotate each image in the batch. The rank must
  /frameworks/rs/
rsMatrix4x4.h 64 void rotate(float rot, float x, float y, float z) { function in struct:android::renderscript::Matrix4x4
  /hardware/qcom/display/msm8960/liboverlay/
mdpWrapper.h 61 bool rotate(int fd, msm_rotator_data_info& rot);
137 inline bool rotate(int fd, msm_rotator_data_info& rot) { function in namespace:overlay::mdp_wrapper
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/utils/
RecapitalizeStatusTests.java 60 status.rotate();
64 status.rotate();
66 status.rotate();
68 status.rotate();
72 status.rotate();
76 status.rotate();
78 status.rotate();
80 status.rotate();
84 status.rotate();
88 status.rotate();
    [all...]
  /external/skia/gm/
localmatriximageshader.cpp 28 SkMatrix rotate; local
29 rotate.setRotate(45.0f);
31 sk_sp<SkShader> redLocalMatrixShader = redImageShader->makeWithLocalMatrix(rotate);
33 // Rotate about the origin will happen first.
39 sk_sp<SkShader> blueImageShader = blueImage->makeShader(&rotate);
  /external/deqp/modules/gles3/scripts/
gen-swizzle-math-operations.py 89 def rotate(l, n) : function
171 swizzle2 = rotate(swizzle1, 1)
172 rotatedSwizzleIndices = rotate(swizzleIndices, 1)
  /external/fonttools/Lib/fontTools/misc/
transform.py 37 >>> t3 = t2.rotate(math.pi / 2)
73 rotate(), return a new Transform instance.
153 def rotate(self, angle): member in class:Transform
159 >>> t.rotate(math.pi / 2)
  /external/mesa3d/src/gallium/drivers/nouveau/nv50/
nv50_query_hw.h 28 uint32_t offset; /* base + i * rotate */
31 uint8_t rotate; member in struct:nv50_hw_query
  /external/mesa3d/src/gallium/drivers/nouveau/nvc0/
nvc0_query_hw.h 28 uint32_t offset; /* base_offset + i * rotate */
31 uint8_t rotate; member in struct:nvc0_hw_query
  /external/pdfium/core/fpdfapi/page/
cpdf_page.cpp 51 int rotate = GetPageRotation(); local
52 if (rotate % 2)
55 switch (rotate) {
181 CPDF_Object* pRotate = GetPageAttr("Rotate");
182 int rotate = pRotate ? (pRotate->GetInteger() / 90) % 4 : 0; local
183 return (rotate < 0) ? (rotate + 4) : rotate;
  /external/pdfium/fxjs/xfa/
cjx_draw.cpp 53 void CJX_Draw::rotate(CFXJSE_Value* pValue, function in class:CJX_Draw
  /external/skia/bench/
RotatedRectBench.cpp 93 SkMatrix rotate; variable
95 rotate.setRotate(30.f, kRectW / 2, kRectH / 2);
96 SkMatrix m = rotate;
119 m.postConcat(rotate);
  /external/skia/src/pathops/
SkOpCubicHull.cpp 9 static bool rotate(const SkDCubic& cubic, int zero, int index, SkDCubic& rotPath) { function
73 // rotate line from (yMin, index) to axis
80 if (!rotate(*this, yMin, index, rotPath)) { // ! if cbc[yMin]==cbc[idx]
137 if (!rotate(*this, least, most, midPath)) { // ! if cbc[least]==cbc[most]
  /external/skqp/bench/
RotatedRectBench.cpp 93 SkMatrix rotate; variable
95 rotate.setRotate(30.f, kRectW / 2, kRectH / 2);
96 SkMatrix m = rotate;
119 m.postConcat(rotate);
  /external/skqp/src/pathops/
SkOpCubicHull.cpp 9 static bool rotate(const SkDCubic& cubic, int zero, int index, SkDCubic& rotPath) { function
73 // rotate line from (yMin, index) to axis
80 if (!rotate(*this, yMin, index, rotPath)) { // ! if cbc[yMin]==cbc[idx]
137 if (!rotate(*this, least, most, midPath)) { // ! if cbc[least]==cbc[most]

Completed in 977 milliseconds

1 2 3 4 5 6 7 8 91011>>