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

1 2 3 4

  /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/trace-viewer/src/
profiling_view.css 7 -webkit-box-orient: vertical;
18 -webkit-box-orient: vertical;
timeline_track_view.css 11 -webkit-box-orient: vertical;
overlay.css 12 -webkit-box-orient: horizontal;
33 -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;
  /hardware/invensense/libsensors_iio/software/simple_apps/gesture_test/
inv_gesture_test.c 74 orient, enumerator in enum:__anon20559
344 int orient; local
347 printf("GT:Google Orient Handler\n");
351 fscanf(fp, "%d\n", &orient);
354 printf("Google Orient-> %d\n", orient);
362 int orient; local
365 fscanf(fp, "%d\n", &orient);
369 printf("GT:Reg Orient Handler\n");
372 if (orient & 0x01
    [all...]
  /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...]
  /hardware/qcom/display/liboverlay/
overlayCtrl.cpp 59 bool Ctrl::setTransform(const utils::eTransform& orient)
61 if(!mMdp.setTransform(orient)) {
  /packages/apps/Camera/src/com/android/camera/
Exif.java 46 int orient = (int) tag.getValueAt(0); local
47 switch (orient) {
  /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...]
  /hardware/invensense/libsensors_iio/software/core/mpl/
quat_accuracy_monitor.h 65 float inv_heading_accuracy_check(float orient[3], float *heading, int8_t *accuracy);

Completed in 173 milliseconds

1 2 3 4