Home
last modified time | relevance | path

Searched refs:currentState (Results 1 – 16 of 16) sorted by relevance

/external/jsilver/src/com/google/streamhtmlparser/impl/
DGenericParser.java43 protected InternalState currentState; field in GenericParser
53 this.currentState = initialState; in GenericParser()
69 currentState = aGenericParser.currentState; in GenericParser()
109 parserStateTable.getNextState(currentState, input); in parse()
116 currentState.getName(), getState().getName()); in parse()
117 currentState = InternalState.INTERNAL_ERROR_STATE; in parse()
121 if (currentState != nextState) { in parse()
122 nextState = handleExitState(currentState, nextState, input); in parse()
124 if (currentState != nextState) { in parse()
128 currentState = nextState; in parse()
[all …]
DHtmlParserImpl.java189 || (currentState == CDATA_TEXT) in inJavascript()
190 || (currentState == CDATA_COM_START) in inJavascript()
191 || (currentState == CDATA_COM_START_DASH) in inJavascript()
192 || (currentState == CDATA_COM_BODY) in inJavascript()
193 || (currentState == CDATA_COM_DASH) in inJavascript()
194 || (currentState == CDATA_COM_DASH_DASH) in inJavascript()
195 || (currentState == CDATA_LT) in inJavascript()
196 || (currentState == CDATA_MAY_CLOSE) in inJavascript()
197 || (currentState == JS_FILE) )); in inJavascript()
230 return (currentState == CSS_FILE in inCss()
[all …]
DJavascriptParserImpl.java102 currentState = JS_TEXT; in reset()
106 protected InternalState handleEnterState(InternalState currentState, in handleEnterState() argument
110 if (currentState == JS_SLASH) { in handleEnterState()
111 nextState = enterStateJsSlash(currentState, input); in handleEnterState()
112 } else if (currentState == JS_COM_AFTER) { in handleEnterState()
119 protected InternalState handleExitState(InternalState currentState, in handleExitState() argument
127 protected InternalState handleInState(InternalState currentState, in handleInState() argument
129 if (currentState == JS_TEXT) { in handleInState()
132 return currentState; in handleInState()
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowVideoView.java28 private int currentState = -1; field in ShadowVideoView
59 currentState = ShadowVideoView.START; in start()
65 currentState = ShadowVideoView.STOP; in stopPlayback()
71 currentState = ShadowVideoView.SUSPEND; in suspend()
77 currentState = ShadowVideoView.PAUSE; in pause()
83 currentState = ShadowVideoView.RESUME; in resume()
88 return (currentState == ShadowVideoView.START); in isPlaying()
93 return (currentState != ShadowVideoView.PAUSE && in canPause()
94 currentState != ShadowVideoView.STOP && in canPause()
95 currentState != ShadowVideoView.SUSPEND); in canPause()
[all …]
/external/icu4c/common/
Ducnv_ct.c341 COMPOUND_TEXT_CONVERTERS currentState, tmpState; in UConverter_fromUnicode_CompoundText_OFFSETS() local
348 currentState = myConverterData->state; in UConverter_fromUnicode_CompoundText_OFFSETS()
397 if (tmpState != DO_SEARCH && currentState != tmpState) { in UConverter_fromUnicode_CompoundText_OFFSETS()
399 currentState = tmpState; in UConverter_fromUnicode_CompoundText_OFFSETS()
400 for (i = 0; escSeqCompoundText[currentState][i] != 0; i++) { in UConverter_fromUnicode_CompoundText_OFFSETS()
401 tmpTargetBuffer[tmpTargetBufferLength++] = escSeqCompoundText[currentState][i]; in UConverter_fromUnicode_CompoundText_OFFSETS()
411 if (currentState != tmpState) { in UConverter_fromUnicode_CompoundText_OFFSETS()
412 currentState = tmpState; in UConverter_fromUnicode_CompoundText_OFFSETS()
413 for (j = 0; escSeqCompoundText[currentState][j] != 0; j++) { in UConverter_fromUnicode_CompoundText_OFFSETS()
414 … tmpTargetBuffer[tmpTargetBufferLength++] = escSeqCompoundText[currentState][j]; in UConverter_fromUnicode_CompoundText_OFFSETS()
[all …]
/external/jmonkeyengine/engine/src/test/jme3test/input/combomoves/
DComboMoveExecution.java97 ComboMoveState currentState = moveDef.getState(state); in updateState() local
98 if (isStateSatisfied(pressedMappings, time, currentState)){ in updateState()
112 if (currentState.getPressedMappings().length > 0){ in updateState()
116 … debugString += Arrays.toString(currentState.getPressedMappings()).replace(", ", "+"); in updateState()
/external/webkit/Source/WebCore/bindings/js/
DJSMainThreadExecState.h39 static JSC::ExecState* currentState() in currentState() function
47 JSMainThreadExecState currentState(exec); in call()
53 JSMainThreadExecState currentState(exec); in evaluate()
DScriptController.cpp242 ExecState* exec = JSMainThreadExecState::currentState(); in processingUserGesture()
310 ExecState* exec = JSMainThreadExecState::currentState(); in canAccessFromCurrentOrigin()
/external/icu4c/layout/
DStateTableProcessor.cpp45 ByteOffset currentState = stateArrayOffset; in process() local
68 …ndex *stateArray = (const EntryTableIndex *) ((char *) &stateTableHeader->stHeader + currentState); in process()
71 currentState = processStateEntry(glyphStorage, currGlyph, entryTableIndex); in process()
/external/nist-sip/java/gov/nist/javax/sip/stack/
DSIPTransaction.java222 private TransactionState currentState; field in SIPTransaction
356 this.currentState = null; in SIPTransaction()
527 if (currentState == TransactionState.COMPLETED) { in setState()
532 if (currentState == TransactionState.CONFIRMED) { in setState()
536 if (currentState != TransactionState.TERMINATED) in setState()
537 currentState = newState; in setState()
539 newState = currentState; in setState()
555 return this.currentState; in getState()
/external/llvm/utils/TableGen/
DDFAPacketizerEmitter.cpp137 State *currentState; member in __anon392ea13a0311::DFA
164 DFA::DFA(): currentState(NULL) {} in DFA()
252 assert(currentState && "Missing current state"); in initialize()
253 currentState->isInitial = true; in initialize()
/external/webkit/Source/WebCore/inspector/front-end/
DProfileView.js443 …var currentState = this.showSelfTimeAsPercent && this.showTotalTimeAsPercent && this.showAverageTi…
444 this.showSelfTimeAsPercent = !currentState;
445 this.showTotalTimeAsPercent = !currentState;
446 this.showAverageTimeAsPercent = !currentState;
DHeapSnapshotView.js373 var currentState = this._isShowingAsPercent;
374 this.showCountAsPercent = !currentState;
375 this.showSizeAsPercent = !currentState;
376 this.showCountDeltaAsPercent = !currentState;
377 this.showSizeDeltaAsPercent = !currentState;
DDetailedHeapshotView.js861 var currentState = this._isShowingAsPercent;
862 this.showCountAsPercent = !currentState;
863 this.showShallowSizeAsPercent = !currentState;
864 this.showRetainedSizeAsPercent = !currentState;
/external/webkit/Source/WebCore/platform/graphics/gstreamer/
DMediaPlayerPrivateGStreamer.cpp339 GstState currentState; in changePipelineState() local
342 gst_element_get_state(m_playBin, &currentState, &pending, 0); in changePipelineState()
343 if (currentState != newState && pending != newState) { in changePipelineState()
346 if (currentState != pausedOrPlaying && ret == GST_STATE_CHANGE_FAILURE) { in changePipelineState()
/external/webkit/Source/WebCore/
DChangeLog-2010-05-241985 (WebCore::JSMainThreadExecState::currentState):
2987 (WebCore::JSMainThreadExecState::currentState):
3871 (WebCore::JSMainThreadExecState::currentState):