Searched defs:mState (Results 26 - 50 of 82) sorted by relevance

1234

/frameworks/base/graphics/java/android/graphics/drawable/
H A DColorDrawable.java39 private ColorState mState; field in class:ColorDrawable
61 mState = new ColorState(state);
66 return super.getChangingConfigurations() | mState.mChangingConfigurations;
78 mState = new ColorState(mState);
86 if ((mState.mUseColor >>> 24) != 0) {
87 mPaint.setColor(mState.mUseColor);
98 return mState.mUseColor;
108 if (mState.mBaseColor != color || mState
[all...]
H A DRotateDrawable.java52 private RotateState mState; field in class:RotateDrawable
70 mState = new RotateState(rotateState, this, res);
76 Rect bounds = mState.mDrawable.getBounds();
81 final RotateState st = mState;
97 return mState.mDrawable;
103 | mState.mChangingConfigurations
104 | mState.mDrawable.getChangingConfigurations();
108 mState.mDrawable.setAlpha(alpha);
112 mState.mDrawable.setColorFilter(cf);
116 return mState
[all...]
H A DAnimatedRotateDrawable.java41 private AnimatedRotateState mState; field in class:AnimatedRotateDrawable
52 mState = new AnimatedRotateState(rotateState, this, res);
57 final AnimatedRotateState state = mState;
72 final AnimatedRotateState st = mState;
107 scheduleSelf(this, SystemClock.uptimeMillis() + mState.mFrameDuration);
123 mState.mDrawable.setVisible(visible, restart);
140 return mState.mDrawable;
146 | mState.mChangingConfigurations
147 | mState.mDrawable.getChangingConfigurations();
152 mState
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DAccessibilityManagerServiceTest.java552 int mState; field in class:AccessibilityManagerServiceTest.MyMockAccessibilityManagerClient
555 mState = state;
/frameworks/ex/common/java/com/android/common/
H A DNetworkConnectivityListener.java45 private State mState; field in class:NetworkConnectivityListener
69 Log.w(TAG, "onReceived() called with " + mState.toString() + " and " + intent);
77 mState = State.NOT_CONNECTED;
79 mState = State.CONNECTED;
94 " noConn=" + noConnectivity) + " mState=" + mState.toString());
128 mState = State.UNKNOWN;
182 return mState;
/frameworks/base/media/java/android/media/
H A DAsyncPlayer.java137 private int mState = STOP; field in class:AsyncPlayer
175 mState = PLAY;
187 if (mState != STOP) {
192 mState = STOP;
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DFilterSurfaceView.java34 private int mState = STATE_ALLOCATED; field in class:FilterSurfaceView
72 if (mState >= STATE_CREATED) {
81 if (mState == STATE_INITIALIZED) {
101 mState = STATE_CREATED;
123 mState = STATE_INITIALIZED;
133 mState = STATE_ALLOCATED;
/frameworks/av/media/libstagefright/wifi-display/source/
H A DWifiDisplaySource.h104 State mState; member in struct:android::WifiDisplaySource
/frameworks/av/services/camera/libcameraservice/
H A DCamera2Device.h343 } mState; member in class:android::Camera2Device::StreamAdapter
426 } mState; member in class:android::Camera2Device::ReprocessStreamAdapter
/frameworks/base/core/java/android/net/
H A DNetworkInfo.java115 private State mState; field in class:NetworkInfo
146 mState = State.UNKNOWN;
158 mState = source.mState;
232 return mState == State.CONNECTED || mState == State.CONNECTING;
244 return mState == State.CONNECTED;
327 return mState;
353 this.mState = stateMap.get(detailedState);
399 append("], state: ").append(mState)
[all...]
/frameworks/base/include/androidfw/
H A DKeyCharacterMap.h195 State mState; member in class:android::KeyCharacterMap::Parser
/frameworks/base/tests/RenderScriptTests/LivePreview/src/com/android/rs/livepreview/
H A DCameraPreviewActivity.java85 private int mState = STATE_OFF; field in class:CameraPreviewActivity
244 mState = STATE_OFF;
249 if (mState != STATE_OFF) {
253 mState = STATE_OFF;
263 mState = STATE_PREVIEW;
337 if (mProcessInProgress || mState != STATE_PREVIEW) {
351 mState = STATE_NO_CALLBACKS;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DApnContext.java38 private DctConstants.State mState; field in class:ApnContext
67 mState = DctConstants.State.IDLE;
155 log("setState: " + s + ", previous state:" + mState);
158 mState = s;
160 if (mState == DctConstants.State.FAILED) {
168 return mState;
179 log("set reason as " + reason + ",current state " + mState);
232 return "{mApnType=" + mApnType + " mState=" + getState() + " mWaitingApns=" + mWaitingApns +
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DIconLoader.java39 private int mState = STATE_SINGLE_ICON; field in class:IconLoader
99 mState = STATE_MULTI_ICONS;
108 mState = STATE_SINGLE_ICON;
215 if (mState == STATE_SINGLE_ICON) {
218 } else if (mState == STATE_MULTI_ICONS) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/
H A DNotificationPlayer.java236 private int mState = STOP; field in class:NotificationPlayer
274 mState = PLAY;
286 if (mState != STOP) {
291 mState = STOP;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPanelBar.java43 private int mState = STATE_CLOSED; field in class:PanelBar
49 if (DEBUG) LOG("go state: %d -> %d", mState, state);
50 mState = state;
111 if (DEBUG) LOG("PanelBar.onTouch: state=%d ACTION_DOWN: panel %s %s", mState, panel,
141 if (DEBUG) LOG("panelExpansionChanged: start state=%d panel=%s", mState, panel.getName());
147 if (mState == STATE_CLOSED) {
169 } else if (fullyClosed && !mTracking && mState != STATE_CLOSED) {
174 if (DEBUG) LOG("panelExpansionChanged: end state=%d [%s%s ]", mState,
190 if (!waiting && mState != STATE_CLOSED) {
/frameworks/av/include/media/stagefright/
H A DMediaCodec.h177 State mState; member in struct:android::MediaCodec
/frameworks/av/libvideoeditor/vss/stagefrightshells/src/
H A DVideoEditorAudioEncoder.cpp71 State mState; member in struct:android::VideoEditorAudioEncoderSource
97 mState(CREATED),
106 if( STARTED == mState ) {
116 if( CREATED != mState ) {
118 mState);
122 mState = STARTED;
134 if( STARTED != mState ) {
136 mState);
152 mState = CREATED;
171 if ( STARTED != mState ) {
[all...]
/frameworks/av/media/libeffects/visualizer/
H A DEffectVisualizer.cpp63 uint8_t mState; member in struct:VisualizerContext
215 pContext->mState = VISUALIZER_STATE_UNINITIALIZED;
226 pContext->mState = VISUALIZER_STATE_INITIALIZED;
241 pContext->mState = VISUALIZER_STATE_UNINITIALIZED;
350 if (pContext->mState != VISUALIZER_STATE_ACTIVE) {
362 if (pContext == NULL || pContext->mState == VISUALIZER_STATE_UNINITIALIZED) {
397 if (pContext->mState != VISUALIZER_STATE_INITIALIZED) {
400 pContext->mState = VISUALIZER_STATE_ACTIVE;
408 if (pContext->mState != VISUALIZER_STATE_ACTIVE) {
411 pContext->mState
[all...]
/frameworks/base/core/java/android/webkit/
H A DHTML5Audio.java66 private int mState = IDLE; field in class:HTML5Audio
125 if (mState != ERROR && mMediaPlayer.isPlaying()) {
130 mState = ERROR;
147 mState = COMPLETE;
159 mState = ERROR;
161 mState = IDLE;
167 mState = PREPARED;
213 mState = IDLE;
219 if (mState != IDLE) {
234 mState
[all...]
/frameworks/base/core/java/android/widget/
H A DEdgeEffect.java120 private int mState = STATE_IDLE; field in class:EdgeEffect
183 return mState == STATE_IDLE;
191 mState = STATE_IDLE;
206 if (mState == STATE_PULL_DECAY && now - mStartTime < mDuration) {
209 if (mState != STATE_PULL) {
212 mState = STATE_PULL;
255 if (mState != STATE_PULL && mState != STATE_PULL_DECAY) {
259 mState = STATE_RECEDE;
285 mState
[all...]
/frameworks/base/core/tests/coretests/src/android/os/storage/
H A DStorageManagerBaseTest.java165 int mState = -1; field in class:StorageManagerBaseTest.ObbListener
176 mState = state;
198 return mState;
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DUniverseBackground.java71 private int mState = STATE_CLOSED; field in class:UniverseBackground
195 mState = STATE_CLOSED;
259 mState = STATE_OPEN;
269 mState = STATE_CLOSED;
393 if (mState == STATE_CLOSED) {
403 mState = STATE_OPENING;
412 if (mState == STATE_OPENING) {
443 mState = STATE_OPEN;
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DRecentTasksLoader.java74 private State mState = State.CANCELLED; field in class:RecentTasksLoader
298 mState = State.CANCELLED;
401 if (mState != State.CANCELLED) {
404 mState = State.LOADING;
526 mState = State.LOADED;
/frameworks/av/include/media/
H A DSoundPool.h61 int state() { return mState; }
64 void startLoad() { mState = LOADING; }
78 uint8_t mState : 3;
119 SoundChannel() : mAudioTrack(NULL), mState(IDLE), mNumChannels(1),
134 int state() { return mState; }
152 int mState; member in class:android::SoundChannel

Completed in 300 milliseconds

1234