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

1 2

  /external/jsilver/src/com/google/streamhtmlparser/impl/
GenericParser.java 43 protected InternalState currentState;
53 this.currentState = initialState;
69 currentState = aGenericParser.currentState;
109 parserStateTable.getNextState(currentState, input);
116 currentState.getName(), getState().getName());
117 currentState = InternalState.INTERNAL_ERROR_STATE;
121 if (currentState != nextState) {
122 nextState = handleExitState(currentState, nextState, input);
124 if (currentState != nextState)
    [all...]
HtmlParserImpl.java 189 || (currentState == CDATA_TEXT)
190 || (currentState == CDATA_COM_START)
191 || (currentState == CDATA_COM_START_DASH)
192 || (currentState == CDATA_COM_BODY)
193 || (currentState == CDATA_COM_DASH)
194 || (currentState == CDATA_COM_DASH_DASH)
195 || (currentState == CDATA_LT)
196 || (currentState == CDATA_MAY_CLOSE)
197 || (currentState == JS_FILE) ));
230 return (currentState == CSS_FIL
    [all...]
JavascriptParserImpl.java 102 currentState = JS_TEXT;
106 protected InternalState handleEnterState(InternalState currentState,
110 if (currentState == JS_SLASH) {
111 nextState = enterStateJsSlash(currentState, input);
112 } else if (currentState == JS_COM_AFTER) {
119 protected InternalState handleExitState(InternalState currentState,
127 protected InternalState handleInState(InternalState currentState,
129 if (currentState == JS_TEXT) {
132 return currentState;
  /external/webrtc/src/modules/audio_processing/aecm/main/matlab/matlab/
calcFilterGain.m 30 currentState = 0;
32 if (currentState == 0)
33 currentState = (dEVec(ii) > dE2) - (dEVec(ii) < -2);
34 elseif ((currentState == 1) & (dEVec(ii) < -2))
36 currentState = -1;
37 elseif ((currentState == -1) & (dEVec(ii) > dE2))
39 currentState = 1;
calcStepSize.m 67 currentState = 0;
69 if (currentState == 0)
70 currentState = (dEVec(ii) > dE2) - (dEVec(ii) < -2);
71 elseif ((currentState == 1) & (dEVec(ii) < -2))
73 currentState = -1;
74 elseif ((currentState == -1) & (dEVec(ii) > dE2))
76 currentState = 1;
  /external/icu4c/layout/
StateTableProcessor.cpp 45 ByteOffset currentState = stateArrayOffset;
68 const EntryTableIndex *stateArray = (const EntryTableIndex *) ((char *) &stateTableHeader->stHeader + currentState);
71 currentState = processStateEntry(glyphStorage, currGlyph, entryTableIndex);
  /external/webkit/Source/WebCore/bindings/js/
JSMainThreadExecState.h 39 static JSC::ExecState* currentState()
47 JSMainThreadExecState currentState(exec);
53 JSMainThreadExecState currentState(exec);
  /device/samsung/crespo/sec_mm/sec_omx/sec_omx_component/common/
SEC_OMX_Basecomponent.c 102 if (pSECComponent->currentState == OMX_StateInvalid) {
152 *pState = pSECComponent->currentState;
196 OMX_STATETYPE currentState = pSECComponent->currentState;
204 if (currentState == destState) {
208 if (currentState == OMX_StateInvalid) {
213 if ((currentState == OMX_StateLoaded) && (destState == OMX_StateIdle)) {
219 if (((currentState == OMX_StateIdle) && (destState == OMX_StateLoaded)) ||
220 ((currentState == OMX_StateIdle) && (destState == OMX_StateInvalid)) ||
221 ((currentState == OMX_StateExecuting) && (destState == OMX_StateInvalid)) |
    [all...]
SEC_OMX_Baseport.c 309 if (pSECComponent->currentState == OMX_StateExecuting) {
315 if ((pSECComponent->currentState != OMX_StateLoaded) && (pSECComponent->currentState != OMX_StateWaitForResources)) {
320 if ((pSECComponent->currentState != OMX_StateLoaded) && (pSECComponent->currentState != OMX_StateWaitForResources)) {
404 if (pSECComponent->currentState!=OMX_StateLoaded) {
553 if (pSECComponent->currentState == OMX_StateInvalid) {
572 if ((pSECComponent->currentState != OMX_StateIdle) &&
573 (pSECComponent->currentState != OMX_StateExecuting) &&
574 (pSECComponent->currentState != OMX_StatePause))
    [all...]
SEC_OMX_Resourcemanager.c 165 if (pSECComponent->currentState == OMX_StateIdle) {
174 } else if ((pSECComponent->currentState == OMX_StateExecuting) || (pSECComponent->currentState == OMX_StatePause)) {
SEC_OMX_Basecomponent.h 94 OMX_STATETYPE currentState;
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
NetworkState.java 41 public NetworkState(State currentState) {
43 mStateDepository.add(currentState);
67 public void recordState(State currentState) {
68 mStateDepository.add(currentState);
  /system/media/wilhelm/tests/sandbox/
monkey.c 252 State_t currentState = STATE_INITIAL;
253 while (STATE_TERMINAL != currentState) {
257 if (currentState != transitionTable[i].mEntryState)
263 fprintf(stderr, "No matching transitions in state %d\n", currentState);
269 "but with probability 0\n", currentState);
276 if (currentState != transitionTable[i].mEntryState)
284 transitionTable[i].mActionName, currentState, transitionTable[i].mCount);
287 currentState = nextState;
  /frameworks/base/telephony/java/com/android/internal/telephony/
ApnContext.java 158 DataConnectionTracker.State currentState = getState();
159 return ((currentState == DataConnectionTracker.State.IDLE) ||
160 currentState == DataConnectionTracker.State.FAILED);
  /packages/apps/Settings/src/com/android/settings/bluetooth/
LocalBluetoothAdapter.java 190 int currentState = mAdapter.getState();
191 if (currentState != mState) {
  /frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/
NetworkState.java 47 public NetworkState(State currentState) {
49 mStateDepository.add(currentState);
82 * @param currentState the current {@link State}
84 public void recordState(State currentState) {
85 mStateDepository.add(currentState);
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPTransaction.java 222 private TransactionState currentState;
356 this.currentState = null;
527 if (currentState == TransactionState.COMPLETED) {
532 if (currentState == TransactionState.CONFIRMED) {
536 if (currentState != TransactionState.TERMINATED)
537 currentState = newState;
539 newState = currentState;
555 return this.currentState;
    [all...]
  /hardware/ril/mock-ril/src/cpp/
mock_ril.cpp 77 static RIL_RadioState currentState();
100 currentState,
143 static RIL_RadioState currentState()
145 DBG("currentState: gRadioState=%d", gRadioState);
  /frameworks/base/core/java/android/server/
BluetoothAdapterStateMachine.java 769 IState currentState = getCurrentState();
770 if (currentState == mPowerOff) {
772 } else if (currentState == mWarmUp) {
774 } else if (currentState == mHotOff) {
776 } else if (currentState == mSwitching) {
778 } else if (currentState == mBluetoothOn) {
  /frameworks/base/services/surfaceflinger/
LayerBase.h 220 inline const State& currentState() const { return mCurrentState; }
221 inline State& currentState() { return mCurrentState; }
LayerScreenshot.cpp 89 const Layer::State& curr(currentState());
  /external/webkit/Source/WebCore/inspector/front-end/
ProfileView.js 443 var currentState = this.showSelfTimeAsPercent && this.showTotalTimeAsPercent && this.showAverageTimeAsPercent;
444 this.showSelfTimeAsPercent = !currentState;
445 this.showTotalTimeAsPercent = !currentState;
446 this.showAverageTimeAsPercent = !currentState;
  /device/samsung/crespo/sec_mm/sec_omx/sec_omx_component/video/dec/mpeg4dec/
SEC_OMX_Mpeg4dec.c 295 if (pSECComponent->currentState == OMX_StateInvalid ) {
489 if (pSECComponent->currentState == OMX_StateInvalid ) {
548 if ((pSECComponent->currentState != OMX_StateLoaded) && (pSECComponent->currentState != OMX_StateWaitForResources)) {
583 if ((pSECComponent->currentState != OMX_StateLoaded) && (pSECComponent->currentState != OMX_StateWaitForResources)) {
730 if (pSECComponent->currentState == OMX_StateInvalid) {
773 if (pSECComponent->currentState == OMX_StateInvalid) {
828 if (pSECComponent->currentState == OMX_StateInvalid) {
889 if (pSECComponent->currentState == OMX_StateInvalid )
    [all...]
  /device/samsung/crespo/sec_mm/sec_omx/sec_omx_component/video/dec/h264dec/
SEC_OMX_H264dec.c 204 if (pSECComponent->currentState == OMX_StateInvalid ) {
357 if (pSECComponent->currentState == OMX_StateInvalid ) {
394 if ((pSECComponent->currentState != OMX_StateLoaded) && (pSECComponent->currentState != OMX_StateWaitForResources)) {
425 if ((pSECComponent->currentState != OMX_StateLoaded) && (pSECComponent->currentState != OMX_StateWaitForResources)) {
556 if (pSECComponent->currentState == OMX_StateInvalid) {
634 if (pSECComponent->currentState == OMX_StateInvalid) {
691 if (pSECComponent->currentState == OMX_StateInvalid) {
    [all...]
  /device/samsung/crespo/sec_mm/sec_omx/sec_omx_component/video/dec/
SEC_OMX_Vdec.c 399 if ((pSECComponent->currentState == OMX_StateExecuting) &&
449 if ((pSECComponent->currentState == OMX_StatePause) &&
482 if (pSECComponent->currentState != OMX_StateExecuting) {
558 if ((pSECComponent->currentState == OMX_StatePause) &&
592 if (pSECComponent->currentState != OMX_StateExecuting) {
    [all...]

Completed in 340 milliseconds

1 2