HomeSort by relevance Sort by last modified time
    Searched refs:Rotation (Results 1 - 25 of 44) sorted by null

1 2

  /external/jmonkeyengine/engine/src/core/com/jme3/audio/
ListenerParam.java 38 Rotation,
Listener.java 42 private Quaternion rotation; field in class:Listener
49 rotation = new Quaternion();
55 rotation = source.rotation.clone();
78 return rotation;
86 return rotation.getRotationColumn(0);
90 return rotation.getRotationColumn(1);
94 return rotation.getRotationColumn(2);
103 public void setRotation(Quaternion rotation) {
104 this.rotation.set(rotation)
    [all...]
  /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/ui/gfx/
display.h 21 // Screen Rotation in clock-wise degrees.
22 enum Rotation {
63 Rotation rotation() const { return rotation_; } function in class:gfx::Display
64 void set_rotation(Rotation rotation) { rotation_ = rotation; }
111 Rotation rotation_;
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
AnimationFactory.java 41 * you can add some keyFrames for a given time or a given keyFrameIndex, for translation rotation and scale.
58 * step for splitting rotation that have a n ange above PI/2
67 Translation, Rotation, Scale;
71 * Inner Rotation type class to kep track on a rotation Euler angle
73 protected class Rotation {
76 * The rotation Quaternion
78 Quaternion rotation = new Quaternion(); field in class:AnimationFactory.Rotation
80 * This rotation expressed in Euler angles
84 * the index of the parent key frame is this keyFrame is a splitted rotation
    [all...]
  /external/chromium_org/ash/display/
display_info.h 45 // (5%), and one rotation property where 'r' is 90 degree clock-wise
53 // no rotation. 1.0 ui scale.
56 // no overscan, no rotation. 1.0 ui scale.
83 void set_rotation(gfx::Display::Rotation rotation) { rotation_ = rotation; }
84 gfx::Display::Rotation rotation() const { return rotation_; } function in class:ash::internal::DisplayInfo
117 // and rotation settings.
146 gfx::Display::Rotation rotation_
    [all...]
mirror_window_controller.h 73 gfx::Display::Rotation current_cursor_rotation_;
display_manager.h 127 // Sets the display's rotation.
128 void SetDisplayRotation(int64 display_id, gfx::Display::Rotation rotation);
139 gfx::Display::Rotation rotation,
148 // Tells if display rotation/ui scaling features are enabled.
root_window_transformers.cc 26 DECLARE_WINDOW_PROPERTY_TYPE(gfx::Display::Rotation);
32 DEFINE_WINDOW_PROPERTY_KEY(gfx::Display::Rotation, kRotationPropertyKey,
56 // TODO(oshima): Add animation. (crossfade+rotation, or just cross-fade)
62 if (info.rotation() == root_window->GetProperty(kRotationPropertyKey))
64 root_window->SetProperty(kRotationPropertyKey, info.rotation());
71 switch (info.rotation()) {
display_info.cc 65 gfx::Display::Rotation rotation(gfx::Display::ROTATE_0);
78 rotation = gfx::Display::ROTATE_90;
81 rotation = gfx::Display::ROTATE_180;
84 rotation = gfx::Display::ROTATE_270;
104 display_info.set_rotation(rotation);
213 "overscan=%s, rotation=%d, ui-scale=%f",
root_window_transformers_unittest.cc 112 gfx::Display::Rotation GetStoredRotation(int64 id) {
113 return Shell::GetInstance()->display_manager()->GetDisplayInfo(id).rotation();
  /external/ceres-solver/internal/ceres/
rotation_test.cc 37 #include "ceres/rotation.h"
198 TEST(Rotation, ZeroAngleAxisToQuaternion) {
208 TEST(Rotation, SmallAngleAxisToQuaternion) {
220 TEST(Rotation, TinyAngleAxisToQuaternion) {
231 // Transforms a rotation by pi/2 around X to a quaternion.
232 TEST(Rotation, XRotationToQuaternion) {
242 TEST(Rotation, UnitQuaternionToAngleAxis) {
251 TEST(Rotation, YRotationQuaternionToAngleAxis) {
261 TEST(Rotation, ZRotationQuaternionToAngleAxis) {
270 TEST(Rotation, SmallQuaternionToAngleAxis)
    [all...]
  /external/chromium_org/ui/base/cursor/
cursor_loader_x11.h 64 gfx::Display::Rotation rotation,
cursor_loader_x11.cc 166 scale(), display().rotation(), &bitmap, &hotpoint);
236 display().rotation() == gfx::Display::ROTATE_0) {
263 gfx::Display::Rotation rotation,
266 switch (rotation) {
  /external/chromium_org/ui/aura/test/
test_screen.h 34 void SetDisplayRotation(gfx::Display::Rotation rotation);
test_screen.cc 47 void TestScreen::SetDisplayRotation(gfx::Display::Rotation rotation) {
48 display_.set_rotation(rotation);
65 switch (display_.rotation()) {
  /external/llvm/lib/Target/AArch64/Utils/
AArch64BaseInfo.cpp 948 int Rotation = 0;
972 // Now we have to work out the amount of rotation needed. The first part of
975 Rotation = countTrailingZeros(Imm);
976 if (Rotation == 0) {
979 Rotation = RegWidth == 64 ? CountLeadingOnes_64(Imm)
981 Rotation = RepeatWidth - Rotation;
985 if (Rotation != 0 && Rotation != 64)
986 ReplicatedOnes = (ReplicatedMask >> Rotation)
    [all...]
  /external/chromium_org/webkit/common/cursors/
webcursor.h 181 gfx::Display::Rotation rotation_;
  /external/jmonkeyengine/engine/src/core/com/jme3/cinematic/events/
MotionTrack.java 68 protected Quaternion rotation; field in class:MotionTrack
96 * The target rotates with the given rotation
98 Rotation,
202 oc.write(rotation, "rotation", Quaternion.IDENTITY);
213 rotation = (Quaternion) in.readSavable("rotation", Quaternion.IDENTITY);
239 if (rotation != null) {
242 q2.multLocal(rotation);
246 case Rotation
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
GeometryMathUtils.java 34 import com.android.gallery3d.filtershow.filters.FilterRotateRepresentation.Rotation;
49 public Rotation rotation = FilterRotateRepresentation.getNil(); field in class:GeometryMathUtils.GeometryHolder
55 rotation = h.rotation;
62 rotation = FilterRotateRepresentation.getNil();
69 return rotation == FilterRotateRepresentation.getNil() &&
84 return rotation == h.rotation && straighten == h.straighten &&
91 return getClass().getSimpleName() + "[" + "rotation:" + rotation.value(
344 int rotation = holder.rotation.value(); local
376 int rotation = getRotationForOrientation(orientation); local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11video.h 121 Rotation saved_rotation;
  /external/chromium_org/chrome/browser/chromeos/display/
display_preferences.cc 128 gfx::Display::Rotation rotation = gfx::Display::ROTATE_0; local
133 if (dict_value->GetInteger("rotation", &rotation_value)) {
134 rotation = static_cast<gfx::Display::Rotation>(rotation_value);
149 rotation,
199 property_value->SetInteger("rotation", static_cast<int>(info.rotation()));
  /external/chromium_org/chrome/browser/extensions/api/system_display/
display_info_provider_chromeos.cc 33 // Checks if the given integer value is valid display rotation in degrees.
34 bool IsValidRotationValue(int rotation) {
35 return rotation == 0 || rotation == 90 || rotation == 180 || rotation == 270;
38 // Converts Rotation enum to integer.
39 int RotationToDegrees(gfx::Display::Rotation rotation) {
40 switch (rotation) {
    [all...]
  /external/jmonkeyengine/engine/src/android/com/jme3/audio/android/
AndroidAudioRenderer.java 206 case Rotation:
  /external/chromium_org/chrome/browser/ui/webui/options/chromeos/
display_options_handler.cc 192 static_cast<int>(display_info.rotation()));
199 if (display_info.rotation() == gfx::Display::ROTATE_90 ||
200 display_info.rotation() == gfx::Display::ROTATE_270) {
386 gfx::Display::Rotation new_rotation = gfx::Display::ROTATE_0;
398 LOG(ERROR) << "Invalid rotation: " << rotation_value << " Falls back to 0";

Completed in 704 milliseconds

1 2