Searched refs:state (Results 276 - 300 of 865) sorted by relevance

<<11121314151617181920>>

/frameworks/base/telecomm/java/android/telecom/
H A DParcelableConference.java46 int state,
55 mState = state;
71 .append(", state: ")
127 int state = source.readInt();
138 return new ParcelableConference(phoneAccount, state, capabilities, connectionIds,
44 ParcelableConference( PhoneAccountHandle phoneAccount, int state, int connectionCapabilities, List<String> connectionIds, IVideoProvider videoProvider, int videoState, long connectTimeMillis, StatusHints statusHints, Bundle extras) argument
/frameworks/base/tests/UsageStatsTest/src/com/android/tests/usagestats/
H A DUsageLogActivity.java134 holder.state = (TextView) convertView.findViewById(android.R.id.text2);
145 if (holder.state != null) {
146 holder.state.setText(eventToString(event.getEventType()));
178 public TextView state; field in class:UsageLogActivity.ViewHolder
/frameworks/native/include/gui/
H A DBufferSlot.h93 static const char* bufferStateName(BufferState state);
95 // mBufferState is the current state of this buffer slot.
130 // consumer. This is set when a buffer in ACQUIRED state is freed.
/frameworks/rs/
H A DrsFBOCache.h51 State state; member in struct:android::renderscript::FBOCache::Hal
H A DrsAllocation.h73 // Allocation adapter state
82 State state; member in struct:android::renderscript::Allocation::Hal
120 const Type * getType() const {return mHal.state.type;}
156 return (mHal.state.usageFlags & RS_ALLOCATION_USAGE_SCRIPT) != 0;
159 return (mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_TEXTURE) != 0;
162 return (mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_RENDER_TARGET) != 0;
165 return (mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_VERTEX) != 0;
175 return mHal.state.mipmapControl != RS_ALLOCATION_MIPMAP_NONE;
210 mHal.state.type = t;
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DMenuPresenter.java46 * of menu state so that it does not attempt to hide the action bar
135 * Returns an ID for determining how to save/restore instance state.
141 * Returns a Parcelable describing the current state of the presenter.
144 * @return The saved instance state
149 * Supplies the previously saved instance state to be restored.
150 * @param state The previously saved instance state
152 public void onRestoreInstanceState(Parcelable state); argument
/frameworks/base/libs/hwui/
H A DDisplayListOp.h92 // default behavior only affects immediate, deferrable state, issue directly to renderer
144 renderer.restoreDisplayState(*(ops[i].state), true);
150 * When this method is invoked the state field is initialized to have the
151 * final rendering state. We can thus use it to process data as it will be
160 const DeferredDisplayState& state) {}
195 inline bool isOpaqueOverBounds(const DeferredDisplayState& state) { argument
197 if (!state.mMatrix.isSimple()) return false;
199 if (state.mRoundRectClipState) return false;
201 // check state/paint for transparency
214 if (state
159 onDefer(OpenGLRenderer& renderer, DeferInfo& deferInfo, const DeferredDisplayState& state) argument
664 const DeferredDisplayState& state = *(ops[i].state); variable
847 const DeferredDisplayState* state = ops[i].state; variable
1363 const DeferredDisplayState& state = *(ops[i].state); variable
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DNotificationChildrenContainer.java243 * Update the state of all its children based on a linear layout algorithm.
245 * @param resultState the state to update
246 * @param parentState the state of the parent
280 public void applyState(StackScrollState state) { argument
286 StackViewState viewState = state.getViewStateForView(child);
297 state.applyViewState(divider, dividerState);
301 state.applyState(child, viewState);
313 * @param state the new state we animate to
315 public void prepareExpansionChanged(StackScrollState state) { argument
347 startAnimationToState(StackScrollState state, StackStateAnimator stateAnimator, boolean withDelays, long baseDelay, long duration) argument
[all...]
/frameworks/av/cmds/stagefright/
H A DSimplePlayer.h101 status_t onOutputFormatChanged(size_t trackIndex, CodecState *state);
104 CodecState *state, BufferInfo *info, const sp<ABuffer> &buffer);
/frameworks/base/core/java/android/app/
H A DExpandableListActivity.java204 protected void onRestoreInstanceState(Bundle state) { argument
206 super.onRestoreInstanceState(state);
210 * Updates the screen state (current list and other views) when the
H A DListActivity.java152 * // requerying or closing it as the activity changes state.
217 protected void onRestoreInstanceState(Bundle state) { argument
219 super.onRestoreInstanceState(state);
232 * Updates the screen state (current list and other views) when the
/frameworks/base/core/java/android/preference/
H A DDialogPreference.java285 * @param state Optional instance state to restore on the dialog
287 protected void showDialog(Bundle state) { argument
312 if (state != null) {
313 dialog.onRestoreInstanceState(state);
443 protected void onRestoreInstanceState(Parcelable state) { argument
444 if (state == null || !state.getClass().equals(SavedState.class)) {
445 // Didn't save state for us in onSaveInstanceState
446 super.onRestoreInstanceState(state);
[all...]
/frameworks/base/core/java/com/android/internal/statusbar/
H A DIStatusBar.aidl37 void setWindowState(int window, int state);
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DSystemAudioStatusAction.java120 void handleTimerEvent(int state) { argument
121 if (mState != state) {
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DOperatorInfo.java63 State state) {
69 mState = state;
88 * See state strings defined in ril.h RIL_REQUEST_QUERY_AVAILABLE_NETWORKS
101 "RIL impl error: Invalid network state '" + s + "'");
151 (State) in.readSerializable()); /*state*/
60 OperatorInfo(String operatorAlphaLong, String operatorAlphaShort, String operatorNumeric, State state) argument
/frameworks/compile/mclinker/include/mcld/LD/
H A DDiagnosticEngine.h119 State& state() { return m_State; } function in class:mcld::DiagnosticEngine
121 const State& state() const { return m_State; } function in class:mcld::DiagnosticEngine
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DTestPhoneNotifier.java.broken55 PhoneConstants.DataState state) {
/frameworks/support/v4/java/android/support/v4/media/session/
H A DIMediaControllerCallback.aidl34 void onPlaybackStateChanged(in PlaybackStateCompat state);
H A DMediaSessionCompat.java266 * Get the current active state of this session.
327 * Update the current playback state.
329 * @param state The current state of playback
331 public void setPlaybackState(PlaybackStateCompat state) { argument
332 mImpl.setPlaybackState(state);
946 void setPlaybackState(PlaybackStateCompat state); argument
1204 public void setPlaybackState(PlaybackStateCompat state) { argument
1206 mState = state;
1208 sendState(state);
1464 sendState(PlaybackStateCompat state) argument
1976 setPlaybackState(PlaybackStateCompat state) argument
[all...]
/frameworks/base/graphics/java/android/graphics/drawable/
H A DLayerDrawable.java112 * specified constant state.
115 * @param state The constant drawable state.
117 LayerDrawable(@NonNull Drawable[] layers, @Nullable LayerState state) { argument
118 this(state, null);
143 LayerDrawable(@Nullable LayerState state, @Nullable Resources res) { argument
144 mLayerState = createConstantState(state, res);
151 LayerState createConstantState(@Nullable LayerState state, @Nullable Resources res) { argument
152 return new LayerState(state, this, res);
171 * Initializes the constant state fro
1374 onStateChange(int[] state) argument
[all...]
H A DLevelListDrawable.java71 // in case the new state matches our current state...
232 protected void setConstantState(@NonNull DrawableContainerState state) { argument
233 super.setConstantState(state);
235 if (state instanceof LevelListState) {
236 mLevelListState = (LevelListState) state;
240 private LevelListDrawable(LevelListState state, Resources res) { argument
241 final LevelListState as = new LevelListState(state, this, res);
/frameworks/base/core/java/android/widget/
H A DScrollBarDrawable.java174 protected boolean onStateChange(int[] state) { argument
175 boolean changed = super.onStateChange(state);
177 changed |= mVerticalTrack.setState(state);
180 changed |= mVerticalThumb.setState(state);
183 changed |= mHorizontalTrack.setState(state);
186 changed |= mHorizontalThumb.setState(state);
/frameworks/base/core/java/com/android/internal/view/menu/
H A DIconMenuPresenter.java163 Bundle state = new Bundle();
164 saveHierarchyState(state);
166 state.putInt(OPEN_SUBMENU_KEY, mOpenSubMenuId);
168 return state;
172 public void onRestoreInstanceState(Parcelable state) { argument
173 restoreHierarchyState((Bundle) state);
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
H A DCallbackHandlerTest.java159 IconState state = new IconState(true, R.drawable.stat_sys_ethernet, "Test Description");
160 mHandler.setEthernetIndicators(state);
165 assertEquals(state, iconArg.getValue());
169 IconState state = new IconState(true, R.drawable.stat_sys_airplane_mode, "Test Description");
170 mHandler.setIsAirplaneMode(state);
175 assertEquals(state, iconArg.getValue());
/frameworks/base/services/core/java/com/android/server/display/
H A DDisplayDeviceInfo.java111 * Diff result: The {@link #state} fields differ.
225 * Display state.
227 public int state = Display.STATE_ON; field in class:DisplayDeviceInfo
269 if (state != other.state) {
319 state = other.state;
344 sb.append(", state ").append(Display.stateToString(state));

Completed in 1504 milliseconds

<<11121314151617181920>>