/external/valgrind/main/memcheck/tests/ |
bug287260.c | 5 signed int rotation : 10; member in struct:__anon37655 13 r.rotation = 45; 14 fprintf (stderr, "%d\n", r.rotation);
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/ |
FilterRotateRepresentation.java | 30 public static final String SERIALIZATION_NAME = "ROTATION"; 34 Rotation mRotation; 36 public enum Rotation { 40 private Rotation(int value) { 48 public static Rotation fromValue(int value) { 64 public FilterRotateRepresentation(Rotation rotation) { 73 setRotation(rotation); 85 public Rotation getRotation() { 92 mRotation = Rotation.NINETY [all...] |
/external/chromium_org/athena/system/ |
orientation_controller.cc | 45 gfx::Display::Rotation rotation; local 47 rotation = gfx::Display::ROTATE_270; 49 rotation = gfx::Display::ROTATE_90; 51 rotation = gfx::Display::ROTATE_180; 53 rotation = gfx::Display::ROTATE_0; 55 // No rotation as gravity threshold was not hit. 59 if (rotation == current_rotation_) 62 current_rotation_ = rotation; 63 ScreenManager::Get()->SetRotation(rotation); [all...] |
/development/cmds/monkey/src/com/android/commands/monkey/ |
MonkeyRotationEvent.java | 23 * monkey screen rotation event 31 * Construct a rotation Event. 33 * @param degree Possible rotation degrees, see constants in 35 * @param persist Should we keep the rotation lock after the orientation 47 System.out.println(":Sending rotation degree=" + mRotationDegree + 51 // inject rotation event
|
/external/chromium_org/ui/base/cursor/ |
cursor_util.h | 23 gfx::Display::Rotation rotation, 30 gfx::Display::Rotation rotation, 35 gfx::Display::Rotation rotation,
|
cursor_loader.h | 22 gfx::Display::Rotation rotation() const { function in class:ui::CursorLoader 26 void set_rotation(gfx::Display::Rotation rotation) { 27 rotation_ = rotation; 68 // The current rotation of the mouse cursor icon. 69 gfx::Display::Rotation rotation_;
|
/external/opencv/cv/src/ |
cvposit.cpp | 114 CvMatr32f rotation, CvVect32f translation ) 135 if( !rotation ) 165 float tmp = objectVectors[i] * rotation[6] /*[2][0]*/ + 166 objectVectors[N + i] * rotation[7] /*[2][1]*/ + 167 objectVectors[2 * N + i] * rotation[8] /*[2][2]*/; 189 rotation[3*i+j] /*[i][j]*/ = 0; 192 rotation[3*i+j] /*[i][j]*/ += invMatrix[j * N + k] * imgVectors[i * N + k]; 197 inorm = rotation[0] /*[0][0]*/ * rotation[0] /*[0][0]*/ + 198 rotation[1] /*[0][1]*/ * rotation[1] /*[0][1]*/ + [all...] |
/external/chromium_org/native_client_sdk/src/gonacl_appengine/static/bullet/ |
box.json | 19 "rotation": {
34 "rotation": {
49 "rotation": {
64 "rotation": {
79 "rotation": {
94 "rotation": {
109 "rotation": {
124 "rotation": {
139 "rotation": {
154 "rotation": { [all...] |
scenes.js | 23 body.rotation = {}; 24 body.rotation.x = ( Math.random() * 360 ) * Math.PI / 180; 25 body.rotation.y = ( Math.random() * 360 ) * Math.PI / 180; 26 body.rotation.z = ( Math.random() * 360 ) * Math.PI / 180; 51 body.rotation = {}; 52 body.rotation.x = ( Math.random() * 360 ) * Math.PI / 180; 53 body.rotation.y = ( Math.random() * 360 ) * Math.PI / 180; 54 body.rotation.z = ( Math.random() * 360 ) * Math.PI / 180; 94 body.rotation = {}; 95 body.rotation.x = 0.0 [all...] |
/external/eigen/Eigen/src/Eigen2Support/Geometry/ |
RotationBase.h | 14 // this file aims to contains the various representations of rotation/orientation 19 * \brief Common base class for compact rotation representations 21 * \param Derived is the derived type, i.e., a rotation type 38 /** \returns an equivalent rotation matrix */ 41 /** \returns the inverse rotation */ 44 /** \returns the concatenation of the rotation \c *this with a translation \a t */ 48 /** \returns the concatenation of the rotation \c *this with a scaling \a s */ 52 /** \returns the concatenation of the rotation \c *this with an affine transformation \a t */ 59 * Constructs a Dim x Dim rotation matrix from the rotation \a [all...] |
/packages/apps/DeskClock/res/animator/ |
ic_alarm_animation_button.xml | 23 android:propertyName="rotation" 29 android:propertyName="rotation" 35 android:propertyName="rotation" 41 android:propertyName="rotation" 47 android:propertyName="rotation" 53 android:propertyName="rotation" 59 android:propertyName="rotation" 65 android:propertyName="rotation" 71 android:propertyName="rotation" 77 android:propertyName="rotation" [all...] |
/packages/apps/Camera2/src/com/android/camera/data/ |
VideoRotationMetadataLoader.java | 17 final String rotation = localData.getMetadata().getString(ROTATION_KEY); local 18 return ROTATE_90.equals(rotation) || ROTATE_270.equals(rotation); 35 String rotation = retriever.extractMetadata( local 37 data.getMetadata().putString(ROTATION_KEY, rotation);
|
/external/chromium_org/ash/wm/maximize_mode/ |
maximize_mode_controller.h | 52 // rotation lock. 70 // change the display rotation. 76 // change the display rotation. 140 // Detect hinge rotation from |base| and |lid| accelerometers and 145 // Detect screen rotation from |lid| accelerometer and automatically rotate 149 // Sets the display rotation and suppresses display notifications. 151 gfx::Display::Rotation rotation); 157 // rotation lock. 160 // Removes MaximizeModeWindowManager and resets the display rotation if ther [all...] |
/external/qemu/include/android/ |
log-rotate.h | 18 // Setup log rotation, this installed a signal handler for SIGUSR1 19 // which will trigger a log rotation at runtime. 22 // Perform log rotation if needed. For now, this must be called from
|
/external/pixman/test/ |
rotate-test.c | 35 TRANSFORM (0, -1, 1, 0), /* wrong 90 degree rotation */ 36 TRANSFORM (0, 1, -1, 0), /* wrong 270 degree rotation */ 38 TRANSFORM (-1, 0, 0, -1), /* wrong 180 degree rotation */ 39 TRANSFORM (0, -F1, F1, 0), /* correct 90 degree rotation */ 40 TRANSFORM (0, F1, -F1, 0), /* correct 270 degree rotation */ 42 TRANSFORM (-F1, 0, 0, -F1), /* correct 180 degree rotation */
|
/packages/apps/Gallery/src/com/android/camera/ |
RotateBitmap.java | 32 public RotateBitmap(Bitmap bitmap, int rotation) { 34 mRotation = rotation % 360; 37 public void setRotation(int rotation) { 38 mRotation = rotation; 57 // We want to do the rotation at origin, but since the bounding 58 // rectangle will be changed after rotation, so the delta values
|
/development/tools/emulator/skins/WSVGA/ |
layout | 57 dpad-rotation 3 75 rotation 3
|
/development/tools/emulator/skins/WXGA720/ |
layout | 57 dpad-rotation 3 75 rotation 3
|
/development/tools/emulator/skins/WXGA800/ |
layout | 57 dpad-rotation 3 75 rotation 3
|
/development/tools/emulator/skins/WXGA800-7in/ |
layout | 59 dpad-rotation 3 77 rotation 3
|
/external/eigen/Eigen/src/Geometry/ |
RotationBase.h | 23 * \brief Common base class for compact rotation representations 25 * \param Derived is the derived type, i.e., a rotation type 44 /** \returns an equivalent rotation matrix */ 47 /** \returns an equivalent rotation matrix 52 /** \returns the inverse rotation */ 55 /** \returns the concatenation of the rotation \c *this with a translation \a t */ 59 /** \returns the concatenation of the rotation \c *this with a uniform scaling \a s */ 63 /** \returns the concatenation of the rotation \c *this with a generic expression \a e 74 /** \returns the concatenation of a linear transformation \a l with the rotation \a r */ 79 /** \returns the concatenation of a scaling \a l with the rotation \a r * [all...] |
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/decoder/ |
VideoTrackDecoder.java | 43 public void grabFrame(FrameImage2D outputVideoFrame, int rotation) { 51 copyFrameDataTo(outputVideoFrame, rotation); 87 protected static boolean needSwapDimension(int rotation) { 88 switch(rotation) { 96 throw new IllegalArgumentException("Unsupported rotation angle."); 104 * @param rotation The desired rotation of the frame 106 protected abstract void copyFrameDataTo(FrameImage2D outputVideoFrame, int rotation);
|
/development/samples/ApiDemos/src/com/example/android/apis/animation/ |
Transition3d.java | 81 * Setup a new 3D rotation on the container view. 84 * @param start the start angle at which the rotation must begin 85 * @param end the end angle of the rotation 92 // Create a new 3D rotation with the supplied parameter 94 final Rotate3dAnimation rotation = local 96 rotation.setDuration(500); 97 rotation.setFillAfter(true); 98 rotation.setInterpolator(new AccelerateInterpolator()); 99 rotation.setAnimationListener(new DisplayNextView(position)); 101 mContainer.startAnimation(rotation); 151 Rotate3dAnimation rotation; local [all...] |
/frameworks/base/core/java/com/android/internal/view/ |
RotationPolicy.java | 39 * Provides helper functions for configuring the display rotation policy. 50 * Gets whether the device supports rotation. In general such a 55 * @return Whether the device supports rotation. 90 * Returns true if the rotation-lock toggle should be shown in system UI. 100 * Returns true if rotation lock is enabled. 108 * Enables or disables rotation lock from the system UI toggle. 115 final int rotation = areAllRotationsAllowed(context) ? CURRENT_ROTATION : NATURAL_ROTATION; local 116 setRotationLock(enabled, rotation); 120 * Enables or disables natural rotation lock from Accessibility settings. 122 * If rotation is locked for accessibility, the system UI toggle is hidden to avoid confusion [all...] |
/system/core/toolbox/ |
rotatefb.c | 17 int rotation = 0; local 38 fprintf(stderr, "%s: specify rotation\n", argv[0]); 41 rotation = atoi(argv[optind]); 54 if((fbinfo.rotate ^ rotation) & 1) { 63 fbinfo.rotate = rotation;
|