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

1 2 3

  /sdk/common/src/com/android/resources/
ScreenOrientation.java 44 for (ScreenOrientation orient : values()) {
45 if (orient.mValue.equals(value)) {
46 return orient;
70 for (ScreenOrientation orient : values()) {
71 if (orient == orientation) {
83 for (ScreenOrientation orient : values()) {
85 return orient;
ScreenRatio.java 43 for (ScreenRatio orient : values()) {
44 if (orient.mValue.equals(value)) {
45 return orient;
69 for (ScreenRatio orient : values()) {
70 if (orient == orientation) {
82 for (ScreenRatio orient : values()) {
84 return orient;
ScreenSize.java 45 for (ScreenSize orient : values()) {
46 if (orient.mValue.equals(value)) {
47 return orient;
71 for (ScreenSize orient : values()) {
72 if (orient == orientation) {
84 for (ScreenSize orient : values()) {
86 return orient;
TouchScreen.java 44 for (TouchScreen orient : values()) {
45 if (orient.mValue.equals(value)) {
46 return orient;
Density.java 53 for (Density orient : values()) {
54 if (orient.mValue.equals(value)) {
55 return orient;
  /external/webkit/Source/WebCore/dom/
OverflowEvent.idl 31 readonly attribute unsigned short orient;
35 void initOverflowEvent(in unsigned short orient,
OverflowEvent.cpp 61 void OverflowEvent::initOverflowEvent(unsigned short orient, bool horizontalOverflow, bool verticalOverflow)
66 m_orient = orient;
OverflowEvent.h 50 void initOverflowEvent(unsigned short orient, bool horizontalOverflow, bool verticalOverflow);
52 unsigned short orient() const { return m_orient; } function in class:WebCore::OverflowEvent
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/control/
BillboardControl.java 52 private Matrix3f orient; field in class:BillboardControl
84 orient = new Matrix3f();
166 orient.set(0, 0, xzp.z);
167 orient.set(0, 1, xzp.x * -look.y);
168 orient.set(0, 2, xzp.x * cosp);
169 orient.set(1, 0, 0);
170 orient.set(1, 1, cosp);
171 orient.set(1, 2, look.y);
172 orient.set(2, 0, -xzp.x);
173 orient.set(2, 1, xzp.z * -look.y)
    [all...]
  /external/webkit/Source/WebCore/rendering/style/
StyleFlexibleBoxData.cpp 35 , orient(RenderStyle::initialBoxOrient())
47 , orient(o.orient)
56 pack == o.pack && orient == o.orient && lines == o.lines;
StyleFlexibleBoxData.h 50 unsigned orient: 1; // EBoxOrient
  /hardware/ti/omap4xxx/camera/
SensorListener.cpp 54 int tilt = 0, orient = 0; local
65 orient = (int) atan2f(-x, y) * RADIANS_2_DEG;
67 if (orient < 0) {
68 orient += 360;
71 if (orient >= DEGREES_270_THRESH) {
72 orient = 270;
73 } else if (orient >= DEGREES_180_THRESH) {
74 orient = 180;
75 } else if (orient >= DEGREES_90_THRESH) {
76 orient = 90
    [all...]
  /external/chromium-trace/src/tracing/
profiling_view.css 7 -webkit-box-orient: vertical;
18 -webkit-box-orient: vertical;
overlay.css 7 -webkit-box-orient: horizontal;
27 -webkit-box-orient: vertical;
  /external/qemu/android/protocol/
core-commands-api.h 27 extern int corecmd_set_coarse_orientation(AndroidCoarseOrientation orient);
core-commands.h 50 AndroidCoarseOrientation orient; member in struct:UICmdSetCoarseOrientation
core-commands-qemu.c 30 corecmd_set_coarse_orientation(AndroidCoarseOrientation orient)
32 android_sensors_set_coarse_orientation(orient);
  /external/chromium/chrome/browser/resources/gpu_internals/
overlay.css 15 -webkit-box-orient: horizontal;
30 -webkit-box-orient: vertical;
profiling_view.css 8 -webkit-box-orient: vertical;
29 -webkit-box-orient: vertical;
tab_control.css 8 -webkit-box-orient: vertical;
23 -webkit-box-orient: horizontal;
30 -webkit-box-orient: vertical;
timeline.css 19 -webkit-box-orient: vertical;
30 -webkit-box-orient: horizontal;
timeline_view.css 8 -webkit-box-orient: vertical;
  /external/qemu/android/
hw-sensors.h 64 extern void android_sensors_set_coarse_orientation( AndroidCoarseOrientation orient );
  /external/opencv/cv/src/
cvmotempl.cpp 173 CvMat orientstub, *orient = (CvMat*)orientation; local
183 CV_CALL( orient = cvGetMat( orient, &orientstub ));
194 if( CV_MAT_TYPE( mhi->type ) != CV_32FC1 || CV_MAT_TYPE( orient->type ) != CV_32FC1 )
198 if( !CV_ARE_SIZES_EQ( mhi, mask ) || !CV_ARE_SIZES_EQ( orient, mhi ))
201 if( orient->data.ptr == mhi->data.ptr )
221 cvGetRow( orient, &orient_row, 0 );
229 orient_row.data.ptr = orient->data.ptr + y*orient->step;
260 orient_row.data.ptr = orient->data.ptr + y*orient->step
296 CvMat orientstub, *orient = (CvMat*)orientation; local
    [all...]
  /external/chromium/chrome/browser/resources/file_manager/css/
file_manager.css 10 -webkit-box-orient: vertical;
38 -webkit-box-orient: horizontal;
47 -webkit-box-orient: horizontal;
58 -webkit-box-orient: horizontal;
66 -webkit-box-orient: horizontal;
106 -webkit-box-orient: vertical;
180 -webkit-box-orient: vertical;
222 -webkit-box-orient: horizontal;
258 -webkit-box-orient: horizontal;
378 -webkit-box-orient: horizontal
    [all...]

Completed in 1833 milliseconds

1 2 3