OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mOrientation
(Results
1 - 25
of
36
) sorted by null
1
2
/development/samples/ApiDemos/src/com/example/android/apis/app/
ScreenOrientation.java
32
Spinner
mOrientation
;
56
mOrientation
= (Spinner)findViewById(R.id.orientation);
60
mOrientation
.setAdapter(adapter);
61
mOrientation
.setOnItemSelectedListener(
/cts/tests/src/android/theme/cts/
TestListActivity.java
41
private int
mOrientation
;
67
mOrientation
= intent.getIntExtra(ThemeTests.EXTRA_ORIENTATION,
77
intent.putExtra(ThemeTests.EXTRA_ORIENTATION,
mOrientation
);
ThemeSelectorActivity.java
36
private int
mOrientation
;
52
mOrientation
= getIntent().getIntExtra(ThemeTests.EXTRA_ORIENTATION,
62
intent.putExtra(ThemeTests.EXTRA_ORIENTATION,
mOrientation
);
ActivitySnapshotTester.java
124
private int
mOrientation
;
155
mOrientation
= orientation;
163
String orientationString = (
mOrientation
== ActivityInfo.SCREEN_ORIENTATION_PORTRAIT)
215
mOrientation
, mGenerate, shouldRequestLayout));
/packages/apps/Camera/src/com/android/camera/ui/
RotateLayout.java
30
private int
mOrientation
;
54
switch (
mOrientation
) {
69
switch(
mOrientation
) {
85
switch (
mOrientation
) {
103
mChild.setRotation(-
mOrientation
);
109
if (
mOrientation
== orientation) return;
110
mOrientation
= orientation;
FaceView.java
40
private int
mOrientation
;
72
mOrientation
= orientation;
129
mMatrix.postRotate(
mOrientation
); // postRotate is clockwise
130
canvas.rotate(-
mOrientation
); // rotate is counter-clockwise (for canvas)
SharePopup.java
62
private int
mOrientation
;
85
r.setOrientation(
mOrientation
);
191
mOrientation
= orientation;
/packages/apps/Launcher2/src/com/android/launcher2/
HandleView.java
34
private int
mOrientation
= ORIENTATION_HORIZONTAL;
48
mOrientation
= a.getInt(R.styleable.HandleView_direction, ORIENTATION_HORIZONTAL);
60
return (
mOrientation
== ORIENTATION_HORIZONTAL && direction == FOCUS_DOWN) ?
/frameworks/base/core/java/android/webkit/
PluginFullScreenHolder.java
40
private final int
mOrientation
;
50
mOrientation
= orientation;
85
client.onShowCustomView(mLayout,
mOrientation
, mCallback);
/frameworks/base/services/camera/libcameraservice/
CameraService.h
184
int
mOrientation
; // Current display orientation
/packages/apps/Phone/src/com/android/phone/
AccelerometerListener.java
41
//
mOrientation
is the orientation value most recently reported to the client.
42
private int
mOrientation
;
46
//
mOrientation
.
76
mOrientation
= ORIENTATION_UNKNOWN;
99
if (
mOrientation
!= orientation) {
148
mOrientation
= mPendingOrientation;
151
(
mOrientation
== ORIENTATION_HORIZONTAL ? "horizontal"
152
: (
mOrientation
== ORIENTATION_VERTICAL ? "vertical"
155
mListener.orientationChanged(
mOrientation
);
/development/samples/Compass/src/com/example/android/compass/
CompassActivity.java
54
private float[]
mOrientation
= new float[3];
228
SensorManager.getOrientation(mR,
mOrientation
);
234
Log.d("Compass", "yaw: " + (int)(
mOrientation
[0]*rad2deg) +
235
" pitch: " + (int)(
mOrientation
[1]*rad2deg) +
236
" roll: " + (int)(
mOrientation
[2]*rad2deg) +
/frameworks/base/core/java/android/view/
OrientationEventListener.java
34
private int
mOrientation
= ORIENTATION_UNKNOWN;
141
if (orientation !=
mOrientation
) {
142
mOrientation
= orientation;
/frameworks/base/services/surfaceflinger/
LayerBase.h
223
int32_t getOrientation() const { return
mOrientation
; }
257
int32_t
mOrientation
;
SurfaceFlinger.h
118
int getOrientation() const { return
mOrientation
; }
134
int
mOrientation
;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyboardId.java
46
public final int
mOrientation
;
71
this.
mOrientation
= orientation;
112
return new KeyboardId(xmlName, xmlId, mLocale,
mOrientation
, mWidth, mMode, mAttribute,
147
&& other.
mOrientation
== this.
mOrientation
171
(
mOrientation
== 1 ? "port" : "land"), mWidth,
/development/samples/Home/src/com/example/android/home/
ApplicationsStackLayout.java
74
private int
mOrientation
= VERTICAL;
97
mOrientation
= a.getInt(R.styleable.ApplicationsStackLayout_stackOrientation, VERTICAL);
127
return
mOrientation
;
138
if (
mOrientation
== VERTICAL) {
148
if (
mOrientation
== VERTICAL) {
187
if (
mOrientation
== VERTICAL) {
247
final boolean isVertical =
mOrientation
== VERTICAL;
/frameworks/base/graphics/java/android/graphics/drawable/
ClipDrawable.java
68
mClipState.
mOrientation
= orientation;
106
mClipState.
mOrientation
= orientation;
205
if ((mClipState.
mOrientation
& HORIZONTAL) != 0) {
210
if ((mClipState.
mOrientation
& VERTICAL) != 0) {
248
int
mOrientation
;
262
mOrientation
= orig.
mOrientation
;
/frameworks/base/libs/gui/
SurfaceComposerClient.cpp
94
int
mOrientation
;
97
mOrientation
(ISurfaceComposer::eOrientationUnchanged) { }
146
orientation =
mOrientation
;
147
mOrientation
= ISurfaceComposer::eOrientationUnchanged;
272
mOrientation
= orientation;
/packages/apps/Browser/src/com/android/browser/
NavScreen.java
68
int
mOrientation
;
77
mOrientation
= activity.getResources().getConfiguration().orientation;
101
if (newconfig.orientation !=
mOrientation
) {
104
mOrientation
= newconfig.orientation;
130
mScroller.setOrientation(
mOrientation
== Configuration.ORIENTATION_LANDSCAPE
/packages/apps/Calendar/src/com/android/calendar/month/
MonthByWeekAdapter.java
51
protected int
mOrientation
= Configuration.ORIENTATION_LANDSCAPE;
214
drawingParams.put(MonthWeekEventsView.VIEW_PARAMS_ORIENTATION,
mOrientation
);
253
mOrientation
= mContext.getResources().getConfiguration().orientation;
/packages/apps/Calendar/src/com/android/calendar/selectcalendars/
SelectCalendarsSimpleAdapter.java
58
private int
mOrientation
;
85
mOrientation
= context.getResources().getConfiguration().orientation;
293
bg |= (position == 0 &&
mOrientation
== Configuration.ORIENTATION_LANDSCAPE) ? IS_TOP : 0;
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ConfigurationSelector.java
[
all
...]
/system/media/mca/filterpacks/videosrc/java/
MediaSource.java
96
private int
mOrientation
= 0;
282
switch (
mOrientation
) {
392
if (
mOrientation
== 0 ||
mOrientation
== 180) {
492
if (
mOrientation
== 0 ||
mOrientation
== 180) {
/frameworks/base/core/java/android/widget/
LinearLayout.java
80
* if {@link #
mOrientation
} is horizontal.
104
private int
mOrientation
;
295
if (
mOrientation
== VERTICAL) {
452
if (
mOrientation
== VERTICAL) {
552
if (
mOrientation
== VERTICAL) {
[
all
...]
Completed in 1020 milliseconds
1
2