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

1 2 3 4

  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/
SparseArrayElementRemoveTransform.java 33 public void apply(IGLProperty currentState) {
35 mAddTransform.revert(currentState);
39 public void revert(IGLProperty currentState) {
41 mAddTransform.apply(currentState);
45 public IGLProperty getChangedProperty(IGLProperty currentState) {
46 return mAddTransform.getChangedProperty(currentState);
IStateTransform.java 27 void apply(IGLProperty currentState);
30 void revert(IGLProperty currentState);
33 IGLProperty getChangedProperty(IGLProperty currentState);
ListElementAddTransform.java 36 public void apply(IGLProperty currentState) {
37 GLListProperty list = getList(currentState);
44 public void revert(IGLProperty currentState) {
45 GLListProperty list = getList(currentState);
52 public IGLProperty getChangedProperty(IGLProperty currentState) {
53 return getList(currentState);
SparseArrayElementAddTransform.java 37 public void apply(IGLProperty currentState) {
38 GLSparseArrayProperty propertyArray = getArray(currentState);
49 public void revert(IGLProperty currentState) {
50 GLSparseArrayProperty propertyArray = getArray(currentState);
60 public IGLProperty getChangedProperty(IGLProperty currentState) {
61 return getArray(currentState);
  /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/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowVideoView.java 28 private int currentState = -1;
59 currentState = ShadowVideoView.START;
65 currentState = ShadowVideoView.STOP;
71 currentState = ShadowVideoView.SUSPEND;
77 currentState = ShadowVideoView.PAUSE;
83 currentState = ShadowVideoView.RESUME;
88 return (currentState == ShadowVideoView.START);
93 return (currentState != ShadowVideoView.PAUSE &&
94 currentState != ShadowVideoView.STOP &&
95 currentState != ShadowVideoView.SUSPEND)
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/input/combomoves/
ComboMoveExecution.java 97 ComboMoveState currentState = moveDef.getState(state);
98 if (isStateSatisfied(pressedMappings, time, currentState)){
112 if (currentState.getPressedMappings().length > 0){
116 debugString += Arrays.toString(currentState.getPressedMappings()).replace(", ", "+");
  /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);
  /frameworks/base/core/java/android/os/
SystemService.java 112 final State currentState = getState(service);
113 if (state.equals(currentState)) {
118 throw new TimeoutException("Service " + service + " currently " + currentState
  /external/icu4c/common/
ucnv_ct.c 341 COMPOUND_TEXT_CONVERTERS currentState, tmpState;
348 currentState = myConverterData->state;
397 if (tmpState != DO_SEARCH && currentState != tmpState) {
399 currentState = tmpState;
400 for (i = 0; escSeqCompoundText[currentState][i] != 0; i++) {
401 tmpTargetBuffer[tmpTargetBufferLength++] = escSeqCompoundText[currentState][i];
411 if (currentState != tmpState) {
412 currentState = tmpState;
413 for (j = 0; escSeqCompoundText[currentState][j] != 0; j++) {
414 tmpTargetBuffer[tmpTargetBufferLength++] = escSeqCompoundText[currentState][j]
    [all...]
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/component/common/
Exynos_OMX_Basecomponent.c 108 if (pExynosComponent->currentState == OMX_StateInvalid) {
158 *pState = pExynosComponent->currentState;
173 OMX_STATETYPE currentState = pExynosComponent->currentState;
182 if (currentState == destState) {
186 if (currentState == OMX_StateInvalid) {
191 if ((currentState == OMX_StateLoaded) && (destState == OMX_StateIdle)) {
198 if (((currentState == OMX_StateIdle) && (destState == OMX_StateLoaded)) ||
199 ((currentState == OMX_StateIdle) && (destState == OMX_StateInvalid)) ||
200 ((currentState == OMX_StateExecuting) && (destState == OMX_StateInvalid)) |
    [all...]
Exynos_OMX_Baseport.c 151 if ((pExynosComponent->currentState != OMX_StateLoaded) && (pExynosComponent->currentState != OMX_StateWaitForResources)) {
237 if (pExynosComponent->currentState != OMX_StateLoaded) {
352 if (pExynosComponent->currentState == OMX_StateInvalid) {
371 if ((pExynosComponent->currentState != OMX_StateIdle) &&
372 (pExynosComponent->currentState != OMX_StateExecuting) &&
373 (pExynosComponent->currentState != OMX_StatePause)) {
457 if (pExynosComponent->currentState == OMX_StateInvalid) {
476 if ((pExynosComponent->currentState != OMX_StateIdle) &&
477 (pExynosComponent->currentState != OMX_StateExecuting) &
    [all...]
Exynos_OMX_Basecomponent.h 59 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);
  /frameworks/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/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
ApnContext.java 170 DctConstants.State currentState = getState();
171 return ((currentState == DctConstants.State.IDLE) ||
172 currentState == DctConstants.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...]
  /external/llvm/utils/TableGen/
DFAPacketizerEmitter.cpp 64 // Specifically, currentState is a set of bit-masks.
70 // From the initial state (currentState = 0x00), if we add instruction class
71 // L_or_M we will transition to a state with currentState = [0x01, 0x10]. This
137 State *currentState;
164 DFA::DFA(): currentState(NULL) {}
194 // Iterate over all resource states in currentState.
252 assert(currentState && "Missing current state");
253 currentState->isInitial = true;
  /frameworks/av/services/camera/libcameraservice/camera2/
CaptureSequencer.cpp 192 CaptureState currentState;
195 currentState = mCaptureState;
198 currentState = (this->*kStateManagers[currentState])(client);
201 if (currentState != mCaptureState) {
202 mCaptureState = currentState;
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/component/audio/dec/mp3/
Exynos_OMX_Mp3dec.c 81 if (pExynosComponent->currentState == OMX_StateInvalid ) {
180 if (pExynosComponent->currentState == OMX_StateInvalid ) {
239 if ((pExynosComponent->currentState != OMX_StateLoaded) && (pExynosComponent->currentState != OMX_StateWaitForResources)) {
288 if (pExynosComponent->currentState == OMX_StateInvalid) {
331 if (pExynosComponent->currentState == OMX_StateInvalid) {
379 if (pExynosComponent->currentState == OMX_StateInvalid) {
423 if (pExynosComponent->currentState == OMX_StateInvalid ) {
855 pExynosComponent->currentState = OMX_StateLoaded;
    [all...]

Completed in 1660 milliseconds

1 2 3 4