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

1 2 3 4

  /external/jsilver/src/com/google/streamhtmlparser/impl/
GenericParser.java 108 InternalState nextState =
111 if (nextState == InternalState.INTERNAL_ERROR_STATE) {
121 if (currentState != nextState) {
122 nextState = handleExitState(currentState, nextState, input);
124 if (currentState != nextState) {
125 nextState = handleEnterState(nextState, nextState, input);
127 nextState = handleInState(nextState, input)
    [all...]
JavascriptParserImpl.java 109 InternalState nextState = expectedNextState;
111 nextState = enterStateJsSlash(currentState, input);
115 return nextState;
181 InternalState nextState = state;
193 nextState = JS_REGEXP_SLASH;
199 nextState = JS_REGEXP_SLASH;
223 nextState = JS_REGEXP_SLASH;
229 nextState = JS_REGEXP_SLASH;
233 return nextState;
HtmlParserImpl.java 423 InternalState nextState = expectedNextState;
429 nextState = tagClose(currentState);
439 return nextState;
446 InternalState nextState = expectedNextState;
452 nextState = exitStateCdataMayClose(nextState, input);
458 return nextState;
599 InternalState nextState = state;
602 nextState = CDATA_TEXT;
608 nextState = CDATA_TEXT
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
TrustDrawable.java 165 int nextState = mState;
167 nextState = mTrustManaged ? STATE_ENTERING : STATE_GONE;
169 if (mTrustManaged) nextState = STATE_ENTERING;
171 if (!mTrustManaged) nextState = STATE_EXITING;
173 if (!mTrustManaged) nextState = STATE_EXITING;
175 if (mTrustManaged) nextState = STATE_ENTERING;
178 if (nextState == STATE_ENTERING) nextState = STATE_VISIBLE;
179 if (nextState == STATE_EXITING) nextState = STATE_GONE
    [all...]
  /packages/apps/Camera2/src/com/android/camera/captureintent/stateful/
StateMachineImpl.java 62 Optional<State> nextState = mState.onEnter();
63 while (nextState.isPresent()) {
64 Log.d(TAG, "Forward state : " + mState + " => " + nextState.get());
66 mState = nextState.get();
67 nextState = mState.onEnter();
  /packages/apps/Launcher3/src/com/android/launcher3/
FocusIndicatorView.java 91 ViewAnimState nextState = new ViewAnimState();
92 nextState.scaleX = v.getScaleX() * v.getWidth() / indicatorWidth;
93 nextState.scaleY = v.getScaleY() * v.getHeight() / indicatorHeight;
96 nextState.x = mTargetViewPos[0] - mIndicatorPos[0] - (1 - nextState.scaleX) * indicatorWidth / 2;
97 nextState.y = mTargetViewPos[1] - mIndicatorPos[1] - (1 - nextState.scaleY) * indicatorHeight / 2;
100 mTargetState = nextState;
108 applyState(nextState);
  /frameworks/ex/camera2/public/src/com/android/ex/camera2/blocking/
BlockingStateCallback.java 185 Integer nextState = null;
189 while ((nextState = mRecentStates.poll(timeoutLeft, TimeUnit.MILLISECONDS))
192 Log.v(TAG, " Saw transition to " + stateToString(nextState));
194 if (states.contains(nextState)) break;
207 if (!states.contains(nextState)) {
216 return nextState;
  /frameworks/ex/camera2/public/src/com/android/ex/camera2/utils/
StateWaiter.java 128 Integer nextState = null;
138 while ((nextState = mQueuedStates.poll(timeoutLeft, TimeUnit.MILLISECONDS)) != null) {
140 Log.v(TAG, " Saw transition to " + getStateName(nextState));
143 if (states.contains(nextState)) {
158 if (!states.contains(nextState)) {
167 return nextState;
  /hardware/qcom/gps/loc_api/libloc_api_50001/
loc_eng_agps.cpp 267 AgpsState* nextState = this;
281 nextState = mPendingState;
306 whoami(), nextState->whoami(), event);
307 return nextState;
327 AgpsState* nextState = this;;
355 nextState = mReleasedState;
361 nextState = mReleasingState;
371 nextState = mAcquiredState;
387 nextState = mReleasedState;
401 whoami(), nextState->whoami(), event)
    [all...]
  /hardware/qcom/gps/msm8084/loc_api/libloc_api_50001/
loc_eng_agps.cpp 267 AgpsState* nextState = this;
281 nextState = mPendingState;
306 whoami(), nextState->whoami(), event);
307 return nextState;
327 AgpsState* nextState = this;;
355 nextState = mReleasedState;
361 nextState = mReleasingState;
371 nextState = mAcquiredState;
387 nextState = mReleasedState;
401 whoami(), nextState->whoami(), event)
    [all...]
  /hardware/qcom/gps/msm8960/loc_api/libloc_api_50001/
loc_eng_agps.cpp 267 AgpsState* nextState = this;
281 nextState = mPendingState;
306 whoami(), nextState->whoami(), event);
307 return nextState;
327 AgpsState* nextState = this;;
355 nextState = mReleasedState;
361 nextState = mReleasingState;
371 nextState = mAcquiredState;
387 nextState = mReleasedState;
401 whoami(), nextState->whoami(), event)
    [all...]
  /hardware/qcom/gps/msm8974/loc_api/libloc_api_50001/
loc_eng_agps.cpp 267 AgpsState* nextState = this;
281 nextState = mPendingState;
306 whoami(), nextState->whoami(), event);
307 return nextState;
327 AgpsState* nextState = this;;
355 nextState = mReleasedState;
361 nextState = mReleasingState;
371 nextState = mAcquiredState;
387 nextState = mReleasedState;
401 whoami(), nextState->whoami(), event)
    [all...]
  /libcore/luni/src/main/java/java/util/
Date.java 414 int nextState = PAD;
416 nextState = LETTERS;
418 nextState = NUMBERS;
423 if (state == NUMBERS && nextState != NUMBERS) {
484 } else if (state == LETTERS && nextState != LETTERS) {
525 && nextState != NUMBERS) {
529 if (nextState == LETTERS || nextState == NUMBERS) {
532 state = nextState;
  /external/icu/icu4c/source/layout/
ThaiShaping.h 63 le_uint8 nextState;
66 le_uint8 getNextState() { return nextState; };
  /packages/apps/Camera2/src/com/android/camera/captureintent/state/
StateBackground.java 96 State nextState = StateBackgroundWithSurfaceTexture.from(
103 return Optional.of(nextState);
StateForeground.java 82 State nextState = StateForegroundWithSurfaceTexture.from(
89 return Optional.of(nextState);
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
MachineProbe.java 84 DFAState nextState = dfaStates.get(i + 1);
88 if (e.target.stateNumber == nextState.stateNumber) {
  /hardware/ti/omap4-aah/camera/OMXCameraAdapter/
OMXFocus.cpp 419 BaseCameraAdapter::AdapterState state, nextState;
421 BaseCameraAdapter::getNextState(nextState);
427 if( ((AF_ACTIVE & state ) != AF_ACTIVE) && ((AF_ACTIVE & nextState ) != AF_ACTIVE) )
831 BaseCameraAdapter::AdapterState nextState;
832 BaseCameraAdapter::getNextState(nextState);
841 if (AF_ACTIVE & nextState) {
  /hardware/ti/omap4xxx/camera/OMXCameraAdapter/
OMXFocus.cpp 392 BaseCameraAdapter::AdapterState state, nextState;
394 BaseCameraAdapter::getNextState(nextState);
400 if( ((AF_ACTIVE & state ) != AF_ACTIVE) && ((AF_ACTIVE & nextState ) != AF_ACTIVE) )
794 BaseCameraAdapter::AdapterState nextState;
795 BaseCameraAdapter::getNextState(nextState);
804 if (AF_ACTIVE & nextState) {
  /frameworks/wilhelm/tests/sandbox/
monkey.c 285 State_t nextState = (*transitionTable[i].mAction)(&player);
286 if (STATE_UNCHANGED != nextState)
287 currentState = nextState;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
StackScrollState.java 241 StackViewState nextState = getViewStateForView(nextChild);
242 boolean startIsAboveNext = nextState.yTranslation > lineEnd;
  /frameworks/av/services/camera/libcameraservice/api1/client2/
CaptureSequencer.cpp 330 CaptureState nextState = DONE;
341 nextState = BURST_CAPTURE_START;
346 nextState = ZSL_START;
348 nextState = STANDARD_START;
357 return nextState;
  /packages/apps/Camera2/src/com/android/camera/
MultiToggleImageButton.java 243 private void nextState() {
256 nextState();
  /external/icu/icu4c/source/common/
ucnvmbcs.cpp 658 int32_t nextState=MBCS_ENTRY_TRANSITION_STATE(entry);
659 if(stateProps[nextState]>=0) {
662 mbcsTable, stateProps, nextState,
735 int32_t min, max, entry, nextState;
743 nextState=MBCS_ENTRY_STATE(entry);
744 if(stateProps[nextState]==-1) {
745 getStateProp(stateTable, stateProps, nextState);
748 if(stateProps[nextState]>=0) {
764 nextState=MBCS_ENTRY_STATE(entry);
765 if(stateProps[nextState]==-1)
    [all...]
  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
CharsetMBCS.java 729 int nextState = MBCS_ENTRY_TRANSITION_STATE(entry);
730 if (stateProps[nextState] >= 0) {
732 if (!enumToU(mbcsTable, stateProps, nextState, offset+MBCS_ENTRY_TRANSITION_OFFSET(entry), value|b)) {
    [all...]

Completed in 3355 milliseconds

1 2 3 4