HomeSort by relevance Sort by last modified time
    Searched full:currentstate (Results 1 - 25 of 82) 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-trace/trace-viewer/tracing/tracing/ui/base/
sortable_table.html 38 var currentState = window.history.state;
45 if (currentState && currentState.tableSorting) {
47 if (currentState.tableSorting[hashCode]) {
48 this.sort(currentState.tableSorting[hashCode].col,
49 currentState.tableSorting[hashCode].sortDirection);
60 var currentState = history.state;
61 if (!currentState.tableSorting)
62 currentState.tableSorting = {};
63 currentState.tableSorting[table.sortingHashCode_()] =
    [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...]
  /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/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
RungeKuttaStepInterpolator.java 83 if (interpolator.currentState != null) {
84 final int dimension = currentState.length;
140 final int n = (currentState == null) ? -1 : currentState.length;
162 final int n = (currentState == null) ? -1 : currentState.length;
174 if (currentState != null) {
DormandPrince853StepInterpolator.java 246 if (interpolator.currentState == null) {
254 final int dimension = interpolator.currentState.length;
288 final int dimension = currentState.length;
371 interpolatedState[i] = currentState[i] -
391 if (currentState == null) {
397 final double[] yTmp = new double[currentState.length];
401 for (int j = 0; j < currentState.length; ++j) {
405 yTmp[j] = currentState[j] + h * s;
410 for (int j = 0; j < currentState.length; ++j) {
415 yTmp[j] = currentState[j] + h * s
    [all...]
GraggBulirschStoerStepInterpolator.java 155 final int dimension = currentState.length;
197 newPols[i] = new double[currentState.length];
201 newPols[i] = new double[currentState.length];
246 for (int i = 0; i < currentState.length; ++i) {
250 final double ydiff = y1[i] - currentState[i];
254 polynoms[0][i] = currentState[i];
264 final double ph0 = 0.5 * (currentState[i] + y1[i]) + 0.125 * (aspl + bspl);
314 final int dimension = currentState.length;
361 final int dimension = (currentState == null) ? -1 : currentState.length
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/sampling/
AbstractStepInterpolator.java 50 protected double[] currentState;
101 currentState = null;
123 currentState = y;
159 if (interpolator.currentState != null) {
160 currentState = interpolator.currentState.clone();
164 currentState = null;
189 currentState = y;
444 if (currentState == null) {
447 out.writeInt(currentState.length)
    [all...]
DummyStepInterpolator.java 102 System.arraycopy(currentState, 0, interpolatedState, 0, currentState.length);
136 if (currentState == null) {
139 currentDerivative = new double[currentState.length];
NordsieckStepInterpolator.java 209 for (int j = 0; j < currentState.length; ++j) {
211 interpolatedState[j] = currentState[j] + stateVariation[j];
230 final int n = (currentState == null) ? -1 : currentState.length;
263 final int n = (currentState == null) ? -1 : currentState.length;
  /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(", ", "+");
  /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/icu/icu4c/source/common/
ucnv_ct.c 339 COMPOUND_TEXT_CONVERTERS currentState, tmpState;
346 currentState = myConverterData->state;
395 if (tmpState != DO_SEARCH && currentState != tmpState) {
397 currentState = tmpState;
398 for (i = 0; escSeqCompoundText[currentState][i] != 0; i++) {
399 tmpTargetBuffer[tmpTargetBufferLength++] = escSeqCompoundText[currentState][i];
409 if (currentState != tmpState) {
410 currentState = tmpState;
411 for (j = 0; escSeqCompoundText[currentState][j] != 0; j++) {
412 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/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/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
CharsetCompoundText.java 347 byte currentState = state;
440 if (currentState != tmpState) {
441 currentState = tmpState;
444 for (i = 0; i < escSeqCompoundText[currentState].length; i++) {
445 targetBytes[i] = escSeqCompoundText[currentState][i];
476 state = currentState;
510 byte currentState = state;
511 byte tmpState = currentState;
547 if (tmpState != currentState) {
548 currentState = tmpState
    [all...]

Completed in 2484 milliseconds

1 2 3 4