HomeSort by relevance Sort by last modified time
    Searched full:currentstate (Results 26 - 50 of 82) sorted by null

12 3 4

  /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.
  /external/llvm/include/llvm/CodeGen/
DFAPacketizer.h 47 int CurrentState;
63 CurrentState = 0;
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
LocalBluetoothAdapter.java 194 int currentState = mAdapter.getState();
195 if (currentState != mState) {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
ApnContext.java 219 DctConstants.State currentState = getState();
220 return ((currentState == DctConstants.State.IDLE) ||
221 currentState == DctConstants.State.FAILED);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
ClassicalRungeKuttaStepInterpolator.java 103 currentState[i] + coeff1 * yDot1 + coeff23 * yDot23 + coeff4 * yDot4;
EulerStepInterpolator.java 85 interpolatedState[i] = currentState[i] - oneMinusThetaH * yDotK[0][i];
HighamHall54StepInterpolator.java 96 currentState[i] + b0 * yDot0 + b2 * yDot2 + b3 * yDot3 + b4 * yDot4 + b5 * yDot5;
MidpointStepInterpolator.java 94 interpolatedState[i] = currentState[i] + coeff1 * yDot1 - coeff2 * yDot2;
GillStepInterpolator.java 118 currentState[i] - coeff1 * yDot1 - coeff2 * yDot2 - coeff3 * yDot3 - coeff4 * yDot4;
ThreeEighthesStepInterpolator.java 108 currentState[i] - coeff1 * yDot1 - coeff2 * yDot2 - coeff3 * yDot3 - coeff4 * yDot4;
DormandPrince54StepInterpolator.java 208 currentState[i] - oneMinusThetaH * (v1[i] - theta * (v2[i] + theta * (v3[i] + eta * v4[i])));
  /frameworks/base/services/core/java/com/android/server/display/
LocalDisplayAdapter.java 341 int currentState = oldState;
346 currentState = state;
350 currentState = Display.STATE_DOZE;
362 if (state != 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...]
  /frameworks/av/services/camera/libcameraservice/api1/client2/
CaptureSequencer.cpp 205 CaptureState currentState;
208 currentState = mCaptureState;
211 currentState = (this->*kStateManagers[currentState])(client);
214 if (currentState != mCaptureState) {
218 mCaptureState = currentState;
  /external/parameter-framework/tools/coverage/
coverage.py 628 self.currentState = []
638 list(self._getElementNames(self.currentState)),
651 self.currentState = newCurrentState
660 self.currentState = child
664 subStateNames = self._getElementNames(self.currentState)
669 subStateCurrentNames = list(self._getElementNames(self.currentState))
680 if len(self.currentState) != 1 :
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/
A2dpSinkStateMachine.java 607 IState currentState = getCurrentState();
608 if (currentState == mPending) {
621 if (currentState == mConnected) {
627 loge("Bad currentState: " + currentState);
    [all...]
A2dpStateMachine.java 625 IState currentState = getCurrentState();
626 if (currentState == mPending) {
639 if (currentState == mConnected) {
645 loge("Bad currentState: " + currentState);
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
ContactEditorFragment.java 450 final RawContactDelta currentState, BaseRawContactEditorView editor) {
452 currentState.getAccountName(),
453 currentState.getAccountType(),
454 currentState.getDataSet());
481 rebindEditorsForNewContact(currentState, currentAccount, newAccount);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/
TexImageTransform.java 80 public void apply(IGLProperty currentState) {
83 IGLProperty property = mAccessor.getProperty(currentState);
  /packages/apps/Launcher2/src/com/android/launcher2/
CellLayout.java     [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
CellLayout.java     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
mountmgr.h 157 MOUNTMGR_AUTO_MOUNT_STATE CurrentState;
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/
HeadsetClientStateMachine.java     [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
HeadsetStateMachine.java     [all...]
  /frameworks/base/core/java/com/android/internal/widget/
SlidingTab.java 184 private int currentState = STATE_NORMAL;
287 currentState = state;
397 setState(currentState);
    [all...]

Completed in 3261 milliseconds

12 3 4