Searched refs:State (Results 26 - 50 of 212) sorted by last modified time

123456789

/frameworks/rs/
H A DrsProgramStore.h41 struct State { struct in struct:android::renderscript::ProgramStore::Hal
56 State state;
H A DrsSampler.h42 struct State { struct in struct:android::renderscript::Sampler::Hal
50 State state;
H A DrsType.h41 struct State { struct in struct:android::renderscript::Type::Hal
58 State state;
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DGridLayoutManager.java30 import android.support.v7.widget.RecyclerView.State;
215 RecyclerView.State state, Action action) {
391 private RecyclerView.State mState;
947 * Save Recycler and State for convenience. Must be paired with leaveContext().
949 private void saveContext(Recycler recycler, State state) {
958 * Discard saved Recycler and State.
1180 public void onMeasure(Recycler recycler, State state, int widthSpec, int heightSpec) {
1676 public void onLayoutChildren(RecyclerView.Recycler recycler, RecyclerView.State state) {
1845 public int scrollHorizontallyBy(int dx, Recycler recycler, RecyclerView.State state) {
1864 public int scrollVerticallyBy(int dy, Recycler recycler, RecyclerView.State stat
[all...]
/frameworks/support/v4/java/android/support/v4/media/session/
H A DPlaybackStateCompat.java154 public @interface State {} interface in class:PlaybackStateCompat
165 * State indicating this item is currently stopped.
172 * State indicating this item is currently paused.
179 * State indicating this item is currently playing.
186 * State indicating this item is currently fast forwarding.
193 * State indicating this item is currently rewinding.
200 * State indicating this item is currently buffering and will begin playing
208 * State indicating this item is currently in an error state. The error
216 * State indicating the class doing playback is currently connecting to a
229 * State indicatin
[all...]
/frameworks/support/v4/java/android/support/v4/widget/
H A DDrawerLayout.java95 private @interface State {} interface in class:DrawerLayout
252 public void onDrawerStateChanged(@State int newState);
682 void updateDrawerState(int forGravity, @State int activeState, View activeDrawer) {
1765 * State persisted across instances
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DCall.java34 public enum State { enum in class:Call
50 public static State
51 stateFromDCState (DriverCall.State dcState) {
53 case ACTIVE: return State.ACTIVE;
54 case HOLDING: return State.HOLDING;
55 case DIALING: return State.DIALING;
56 case ALERTING: return State.ALERTING;
57 case INCOMING: return State.INCOMING;
58 case WAITING: return State.WAITING;
69 public State mStat
[all...]
H A DCallManager.java273 public PhoneConstants.State getState() {
274 PhoneConstants.State s = PhoneConstants.State.IDLE;
277 if (phone.getState() == PhoneConstants.State.RINGING) {
278 s = PhoneConstants.State.RINGING;
279 } else if (phone.getState() == PhoneConstants.State.OFFHOOK) {
280 if (s == PhoneConstants.State.IDLE) s = PhoneConstants.State.OFFHOOK;
292 public PhoneConstants.State getState(int subId) {
293 PhoneConstants.State
[all...]
H A DCallTracker.java288 public abstract PhoneConstants.State getState();
H A DConnection.java127 public Call.State mPreHandoverState = Call.State.IDLE;
280 * Returns getCall().getState() or Call.State.IDLE if not
283 public Call.State getState() {
289 return Call.State.IDLE;
299 public Call.State getStateBeforeHandover() {
H A DDefaultPhoneNotifier.java312 * Convert the {@link PhoneConstants.State} enum into the TelephonyManager.CALL_STATE_*
315 public static int convertCallState(PhoneConstants.State state) {
328 * {@link PhoneConstants.State} enum for the public API.
330 public static PhoneConstants.State convertCallState(int state) {
333 return PhoneConstants.State.RINGING;
335 return PhoneConstants.State.OFFHOOK;
337 return PhoneConstants.State.IDLE;
414 * Convert the {@link State} enum into the PreciseCallState.PRECISE_CALL_STATE_* constants
417 public static int convertPreciseCallState(Call.State state) {
441 * Convert the Call.State
[all...]
H A DDriverCall.java29 public enum State { enum in class:DriverCall
42 public State state; // May be null if unavail
119 public static State
122 case 0: return State.ACTIVE;
123 case 1: return State.HOLDING;
124 case 2: return State.DIALING;
125 case 3: return State.ALERTING;
126 case 4: return State.INCOMING;
127 case 5: return State.WAITING;
H A DIccCard.java22 import com.android.internal.telephony.IccCardConstants.State;
45 public State getState();
58 * Notifies handler of any transition into IccCardConstants.State.ABSENT
64 * Notifies handler of any transition into IccCardConstants.State.NETWORK_LOCKED
70 * Notifies handler of any transition into IccCardConstants.State.isPinLocked()
H A DInboundSmsHandler.java73 import com.android.internal.util.State;
270 class DefaultState extends State {
304 class StartupState extends State {
333 class IdleState extends State {
389 class DeliveringState extends State {
462 class WaitingState extends State {
H A DMmiCode.java27 public enum State { enum in interface:MmiCode
38 public State getState();
54 * State becomes CANCELLED unless already COMPLETE or FAILED
H A DPhone.java261 State getState();
341 * Register for getting notifications for change in the Call State {@link Call.State}
343 * {@link PhoneConstants.State} which can be obtained using the {@link PhoneStateListener}
808 * State change notification is available via
825 * State change notification is available via
842 * State change notification is available via
H A DPhoneBase.java583 PhoneConstants.State state = getState();
585 && ((state == PhoneConstants.State.RINGING) ||
586 (state == PhoneConstants.State.IDLE))) {
597 if (getState() == PhoneConstants.State.RINGING) {
1263 public abstract PhoneConstants.State getState();
H A DPhoneProxy.java413 public PhoneConstants.State getState() {
H A DPhoneStateIntentReceiver.java47 PhoneConstants.State mPhoneState = PhoneConstants.State.IDLE;
78 public PhoneConstants.State getPhoneState() {
178 PhoneConstants.State.class, phoneState);
H A DSubscriptionController.java43 import com.android.internal.telephony.IccCardConstants.State;
1665 * @return SIM state as the ordinal of {@See IccCardConstants.State}
1669 State simState;
1672 simState = IccCardConstants.State.UNKNOWN;
1677 simState = IccCardConstants.State.UNKNOWN;
1682 simState = IccCardConstants.State.UNKNOWN;
H A DWakeLockStateMachine.java27 import com.android.internal.util.State;
111 class DefaultState extends State {
138 class IdleState extends State {
182 class WaitingState extends State {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DRilMessageDecoder.java27 import com.android.internal.util.State;
126 private class StateStart extends State {
141 private class StateCmdParamsReady extends State {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCDMALTEPhone.java167 if (mCT.mState != PhoneConstants.State.IDLE &&
H A DCDMAPhone.java295 public PhoneConstants.State getState() {
297 PhoneConstants.State imsState = mImsPhone.getState();
298 if (imsState != PhoneConstants.State.IDLE) {
507 CdmaCall.State foregroundCallState = getForegroundCall().getState();
508 CdmaCall.State backgroundCallState = getBackgroundCall().getState();
509 CdmaCall.State ringingCallState = getRingingCall().getState();
819 if ( mCT.mState != PhoneConstants.State.IDLE
849 if (mCT.mState == PhoneConstants.State.OFFHOOK) {
881 if ((mCT.mState == PhoneConstants.State.OFFHOOK)&&(check)) {
1037 * {@link com.android.internal.telephony.PhoneConstants.State}
[all...]
H A DCdmaCall.java89 attachFake(Connection conn, State state) {
100 if (mState != State.DISCONNECTED) {
107 != State.DISCONNECTED
115 mState = State.DISCONNECTED;
129 mState = State.IDLE;
135 State newState;
172 mState = State.DISCONNECTING;
182 if (cn.getState() == State.DISCONNECTED) {
188 mState = State.IDLE;

Completed in 247 milliseconds

123456789