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

1 2

  /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/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/webkit/Source/WebCore/bindings/js/
JSMainThreadExecState.h 39 static JSC::ExecState* currentState()
47 JSMainThreadExecState currentState(exec);
53 JSMainThreadExecState currentState(exec);
  /hardware/ti/wlan/wl1271/stad/src/Connection_Managment/
broadcastKeySM.h 79 TI_UINT8 currentState;
externalSec.h 85 TI_UINT8 currentState;
unicastKeySM.h 81 TI_UINT8 currentState;
mainKeysSm.h 89 TI_UINT8 currentState;
mainSecSm.h 103 TI_UINT8 currentState;
  /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);
  /hardware/ti/wlan/wl1271/stad/src/Sta_Management/
authSm.h 75 TI_UINT8 currentState;
trafficAdmControl.h 89 TI_UINT8 currentState[MAX_NUM_OF_AC];
AssocSM.h 97 TI_UINT8 currentState;
mlmeSm.h 98 TI_UINT8 currentState;
151 TI_STATUS mlme_smEvent(TI_UINT8 *currentState, TI_UINT8 event, TI_HANDLE hMlme);
  /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...]
  /hardware/ti/wlan/wl1271/TWD/MacServices/
PowerSrvSM.h 110 PowerSrvSMStates_e currentState; /**< the current state of the state machine. */
  /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_Basecomponent.h 94 OMX_STATETYPE currentState;
  /external/llvm/utils/TableGen/
DFAPacketizerEmitter.cpp 30 // Specifically, currentState is a set of bit-masks.
36 // From the initial state (currentState = 0x00), if we add instruction class
37 // L_or_M we will transition to a state with currentState = [0x01, 0x10]. This
106 State *currentState;
175 // Iterate over all resource states in currentState.
221 currentState->isInitial = true;
  /frameworks/base/telephony/java/com/android/internal/telephony/
ApnContext.java 172 DataConnectionTracker.State currentState = getState();
173 return ((currentState == DataConnectionTracker.State.IDLE) ||
174 currentState == DataConnectionTracker.State.FAILED);
  /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;
  /hardware/ti/wlan/wl1271/stad/src/AirLink_Managment/
measurementMgr.h 115 measurementMgrSM_States currentState;
  /packages/apps/Settings/src/com/android/settings/bluetooth/
LocalBluetoothAdapter.java 190 int currentState = mAdapter.getState();
191 if (currentState != mState) {
  /frameworks/native/services/surfaceflinger/
LayerBase.h 236 inline const State& currentState() const { return mCurrentState; }
237 inline State& currentState() { return mCurrentState; }
  /hardware/ti/omap4xxx/camera/
BaseCameraAdapter.cpp     [all...]
  /external/icu4c/common/
ucnv_ct.c 340 COMPOUND_TEXT_CONVERTERS currentState, tmpState;
347 currentState = myConverterData->state;
396 if (tmpState != DO_SEARCH && currentState != tmpState) {
398 currentState = tmpState;
399 for (i = 0; escSeqCompoundText[currentState][i] != 0; i++) {
400 tmpTargetBuffer[tmpTargetBufferLength++] = escSeqCompoundText[currentState][i];
410 if (currentState != tmpState) {
411 currentState = tmpState;
412 for (i = 0; escSeqCompoundText[currentState][i] != 0; i++) {
413 tmpTargetBuffer[tmpTargetBufferLength++] = escSeqCompoundText[currentState][i]
    [all...]

Completed in 1675 milliseconds

1 2