HomeSort by relevance Sort by last modified time
    Searched full:currentstate (Results 1 - 25 of 95) sorted by null

1 2 3 4

  /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...]
  /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);
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);
IStateTransform.java 27 void apply(IGLProperty currentState);
30 void revert(IGLProperty currentState);
33 IGLProperty getChangedProperty(IGLProperty 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/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
once_unittest.cc 141 State CurrentState() {
184 EXPECT_EQ(INIT_NOT_STARTED, CurrentState());
186 EXPECT_EQ(INIT_DONE, CurrentState());
190 EXPECT_EQ(INIT_DONE, CurrentState());
199 EXPECT_EQ(INIT_NOT_STARTED, CurrentState());
201 EXPECT_EQ(INIT_DONE, CurrentState());
210 EXPECT_EQ(INIT_NOT_STARTED, CurrentState());
217 EXPECT_EQ(INIT_DONE, CurrentState());
227 EXPECT_EQ(INIT_NOT_STARTED, CurrentState());
242 EXPECT_EQ(INIT_STARTED, CurrentState());
    [all...]
  /external/protobuf/src/google/protobuf/stubs/
once_unittest.cc 141 State CurrentState() {
184 EXPECT_EQ(INIT_NOT_STARTED, CurrentState());
186 EXPECT_EQ(INIT_DONE, CurrentState());
190 EXPECT_EQ(INIT_DONE, CurrentState());
199 EXPECT_EQ(INIT_NOT_STARTED, CurrentState());
201 EXPECT_EQ(INIT_DONE, CurrentState());
210 EXPECT_EQ(INIT_NOT_STARTED, CurrentState());
217 EXPECT_EQ(INIT_DONE, CurrentState());
227 EXPECT_EQ(INIT_NOT_STARTED, CurrentState());
242 EXPECT_EQ(INIT_STARTED, CurrentState());
    [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 153 if ((pExynosComponent->currentState != OMX_StateLoaded) && (pExynosComponent->currentState != OMX_StateWaitForResources)) {
244 if (pExynosComponent->currentState != OMX_StateLoaded) {
359 if (pExynosComponent->currentState == OMX_StateInvalid) {
378 if ((pExynosComponent->currentState != OMX_StateIdle) &&
379 (pExynosComponent->currentState != OMX_StateExecuting) &&
380 (pExynosComponent->currentState != OMX_StatePause)) {
464 if (pExynosComponent->currentState == OMX_StateInvalid) {
483 if ((pExynosComponent->currentState != OMX_StateIdle) &&
484 (pExynosComponent->currentState != OMX_StateExecuting) &
    [all...]
  /external/icu/icu4c/source/layout/
StateTableProcessor.cpp 49 ByteOffset currentState = stateArrayOffset;
73 LEReferenceToArrayOf<EntryTableIndex> stateArray(stHeader, success, currentState, LE_UNBOUNDED_ARRAY);
76 currentState = processStateEntry(glyphStorage, currGlyph, entryTableIndex);
StateTableProcessor2.cpp 59 le_uint16 currentState = 0;
98 EntryTableIndex2 entryTableIndex = SWAPW(stateArray(classCode + currentState * nClasses, success));
100 currentState = processStateEntry(glyphStorage, currGlyph, entryTableIndex); // return a zero-based index instead of a byte offset
133 EntryTableIndex2 entryTableIndex = SWAPW(stateArray(classCode + currentState * nClasses,success));
135 currentState = processStateEntry(glyphStorage, currGlyph, entryTableIndex, success);
173 EntryTableIndex2 entryTableIndex = SWAPW(stateArray(classCode + currentState * nClasses, success));
175 currentState = processStateEntry(glyphStorage, currGlyph, entryTableIndex, success);
204 EntryTableIndex2 entryTableIndex = SWAPW(stateArray(classCode + currentState * nClasses, success));
206 currentState = processStateEntry(glyphStorage, currGlyph, entryTableIndex, success);
  /external/chromium_org/chrome/browser/resources/chromeos/
image_burner.js 305 this.currentState = new State(loadTimeData);
337 this.currentState.changeState(State.StatesEnum.SUCCESS);
346 this.currentState.changeState(State.StatesEnum.FAIL);
356 var inInitialState = this.currentState.isInitialState();
359 this.currentState.gotoInitialState(this.deviceSelection.devices);
367 var inInitialState = this.currentState.isInitialState();
370 this.currentState.gotoInitialState(this.deviceSelection.devices);
379 this.currentState.gotoInitialState(this.deviceSelection.devices);
389 !this.currentState.equals(State.StatesEnum.PROGRESS_DOWNLOAD)) {
390 this.currentState.changeState(State.StatesEnum.PROGRESS_DOWNLOAD)
    [all...]
  /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;
  /external/chromium_org/third_party/icu/source/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...]
  /external/icu/icu4c/source/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...]
  /frameworks/base/core/java/android/os/
SystemService.java 110 final State currentState = getState(service);
111 if (state.equals(currentState)) {
116 throw new TimeoutException("Service " + service + " currently " + currentState
  /external/chromium_org/ppapi/native_client/tests/ppapi_browser/
progress_event_listener.js 21 this.currentState = 'BEGIN';
43 if (!(event_type in this_.expectedNext[this_.currentState])) {
44 console.log('unexpected ' + event_type + ' from ' + this_.currentState);
47 this_.currentState = event_type;
48 this_.stateHistogram[this_.currentState]++;
178 assertEqual(eventMachine.currentState, 'loadend');
  /external/llvm/lib/CodeGen/
DFAPacketizer.cpp 36 InstrItins(I), CurrentState(0), DFAStateInputTable(SIT),
70 UnsignPair StateTrans = UnsignPair(CurrentState, FuncUnits);
71 ReadTable(CurrentState);
82 UnsignPair StateTrans = UnsignPair(CurrentState, FuncUnits);
83 ReadTable(CurrentState);
85 CurrentState = CachedTable[StateTrans];
  /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/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;
158 DFA::DFA(): currentState(nullptr) {}
184 // Iterate over all resource states in currentState.
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
ApnContext.java 206 DctConstants.State currentState = getState();
207 return ((currentState == DctConstants.State.IDLE) ||
208 currentState == DctConstants.State.FAILED);
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/component/audio/dec/
Exynos_OMX_Adec.c 362 if ((pExynosComponent->currentState == OMX_StateExecuting) &&
408 if ((pExynosComponent->currentState == OMX_StatePause) &&
440 if (pExynosComponent->currentState != OMX_StateExecuting) {
512 if ((pExynosComponent->currentState == OMX_StatePause) &&
545 if (pExynosComponent->currentState != OMX_StateExecuting) {
780 if (((pExynosComponent->currentState == OMX_StatePause) ||
781 (pExynosComponent->currentState == OMX_StateIdle) ||
    [all...]

Completed in 2165 milliseconds

1 2 3 4