/external/replicaisland/src/com/replica/replicaisland/ |
D | DoorAnimationComponent.java | 40 private int mState; field in DoorAnimationComponent 56 mState = STATE_CLOSED; in reset() 73 mState = STATE_OPEN; in open() 79 if (mState == STATE_CLOSING) { in open() 91 mState = STATE_OPENING; in open() 112 mState = STATE_CLOSED; in close() 118 if (mState == STATE_OPENING) { in close() 122 mState = STATE_CLOSING; in close() 145 && (mState == STATE_CLOSED || mState == STATE_CLOSING)) { in update() 149 && (mState == STATE_OPEN || mState == STATE_OPENING)) { in update() [all …]
|
D | EnemyAnimationComponent.java | 45 private AnimationState mState; field in EnemyAnimationComponent 56 mState = AnimationState.IDLING; in reset() 69 switch(mState) { in update() 77 mState = AnimationState.ATTACKING; in update() 79 mState = AnimationState.HIDING; in update() 81 mState = AnimationState.MOVING; in update() 98 mState = AnimationState.ATTACKING; in update() 100 mState = AnimationState.HIDING; in update() 102 mState = AnimationState.IDLING; in update() 109 mState = AnimationState.IDLING; in update() [all …]
|
D | SleeperComponent.java | 34 private int mState; field in SleeperComponent 49 mState = STATE_SLEEPING; in reset() 63 mState = STATE_SLEEPING; in update() 67 switch(mState) { in update() 70 mState = STATE_WAKING; in update() 78 mState = STATE_ATTACKING; in update() 86 mState = STATE_SLAM; in update() 93 mState = STATE_SLEEPING; in update()
|
D | PopOutComponent.java | 35 private int mState; field in PopOutComponent 56 mState = STATE_HIDDEN; in reset() 74 switch(mState) { in update() 78 mState = STATE_VISIBLE; in update() 85 mState = STATE_HIDDEN; in update() 89 mState = STATE_ATTACKING; in update() 95 mState = STATE_VISIBLE; in update()
|
D | PlayerComponent.java | 65 private State mState; field in PlayerComponent 100 mState = State.MOVE; in reset() 228 if (mInventory != null && mState != State.WIN) { in update() 258 if (mInvincibleEndTime > 0.0f && (mInvincibleEndTime < gameTime || mState == State.DEAD)) { in update() 268 if (mState != State.DEAD && mState != State.WIN ) { in update() 275 } else if (mState != State.HIT_REACT in update() 292 switch(mState) { in update() 328 mState = State.MOVE; in gotoMove() 377 mState = State.STOMP; in gotoStomp() 427 if (mState != State.FROZEN) { in gotoHitReact() [all …]
|
/external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/ |
D | PairingSession.java | 178 protected ProtocolState mState; field in PairingSession 206 mState = ProtocolState.STATE_UNINITIALIZED; in PairingSession() 313 if (mState != ProtocolState.STATE_UNINITIALIZED) { in addInputEncoding() 338 if (mState != ProtocolState.STATE_UNINITIALIZED) { in addOutputEncoding() 352 mState = newState; in setState() 433 switch (mState) { in hasCompleted() 443 return mState == ProtocolState.STATE_SUCCESS; in hasSucceeded() 461 } else if (mState != ProtocolState.STATE_PAIRING) { in setSecret()
|
/external/opencv/cv/src/ |
D | cvmoments.cpp | 518 cvGetHuMoments( CvMoments * mState, CvHuMoments * HuState ) in cvGetHuMoments() argument 524 if( !mState || !HuState ) in cvGetHuMoments() 528 double m00s = mState->inv_sqrt_m00, m00 = m00s * m00s, s2 = m00 * m00, s3 = s2 * m00s; in cvGetHuMoments() 530 double nu20 = mState->mu20 * s2, in cvGetHuMoments() 531 nu11 = mState->mu11 * s2, in cvGetHuMoments() 532 nu02 = mState->mu02 * s2, in cvGetHuMoments() 533 nu30 = mState->mu30 * s3, in cvGetHuMoments() 534 nu21 = mState->mu21 * s3, nu12 = mState->mu12 * s3, nu03 = mState->mu03 * s3; in cvGetHuMoments()
|
/external/opencv3/modules/java/generator/src/java/ |
D | android+CameraBridgeViewBase.java | 38 private int mState = STOPPED; field in CameraBridgeViewBase 310 if (targetState != mState) { in checkCurrentState() 312 processExitState(mState); in checkCurrentState() 313 mState = targetState; in checkCurrentState() 314 processEnterState(mState); in checkCurrentState()
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/ |
D | TelephonyEvents.java | 163 private int mState; field in TelephonyEvents.DataConnectionStateEvent 172 mState = state; in DataConnectionStateEvent() 180 return mState; in getState() 201 mState); in toJSON()
|
/external/opencv3/modules/imgproc/src/ |
D | moments.cpp | 820 CV_IMPL void cvGetHuMoments( CvMoments * mState, CvHuMoments * HuState ) in cvGetHuMoments() argument 822 if( !mState || !HuState ) in cvGetHuMoments() 825 double m00s = mState->inv_sqrt_m00, m00 = m00s * m00s, s2 = m00 * m00, s3 = s2 * m00s; in cvGetHuMoments() 827 double nu20 = mState->mu20 * s2, in cvGetHuMoments() 828 nu11 = mState->mu11 * s2, in cvGetHuMoments() 829 nu02 = mState->mu02 * s2, in cvGetHuMoments() 830 nu30 = mState->mu30 * s3, in cvGetHuMoments() 831 nu21 = mState->mu21 * s3, nu12 = mState->mu12 * s3, nu03 = mState->mu03 * s3; in cvGetHuMoments()
|
/external/deqp/android/cts/runner/src/com/drawelements/deqp/runner/ |
D | DeqpTestRunner.java | 870 private MachineState mState = MachineState.WAIT; field in DeqpTestRunner.Recovery 897 mState = MachineState.WAIT; in onExecutionProgressed() 905 switch (mState) { in recoverConnectionRefused() 910 mState = MachineState.REBOOT; // the next step is to reboot in recoverConnectionRefused() 923 mState = MachineState.FAIL; // the next step is to fail in recoverConnectionRefused() 945 switch (mState) { in recoverComLinkKilled() 949 mState = MachineState.RECOVER; // the next step is to recover the device in recoverComLinkKilled() 969 mState = MachineState.REBOOT; // the next step is to reboot in recoverComLinkKilled() 986 mState = MachineState.FAIL; // the next step is to fail in recoverComLinkKilled()
|
/external/webrtc/webrtc/examples/androidapp/third_party/autobanh/ |
D | autobanh.jar | META-INF/MANIFEST.MF
de/tavendo/autobahn/ByteBufferInputStream.class
ByteBufferInputStream.java
... |
/external/mdnsresponder/mDNSCore/ |
D | mDNSEmbeddedAPI.h | 1248 mergeState_t mState; // Unicast Record Registrations merge state member
|
D | uDNS.c | 2728 …if (rr->mState == mergeState_DontMerge) {debugf("IsRecordMergeable Dontmerge true %s", ARDisplaySt… in IsRecordMergeable() 2758 rr->mState = mergeState_DontMerge; in RRMergeFailure()
|
D | DNSCommon.c | 1083 rr->mState = mergeState_Zero; in mDNS_SetupResourceRecord()
|
/external/robolectric/v1/lib/main/ |
D | android-support-v4.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/support/
android/ ... |
/external/robolectric/v3/runtime/ |
D | android-all-5.1.1_r9-robolectric-1.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
D | android-all-5.0.0_r2-robolectric-1.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
D | android-all-4.3_r2-robolectric-0.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/accessibilityservice/
android/ ... |
D | android-all-4.4_r1-robolectric-1.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
D | android-all-4.1.2_r1-robolectric-0.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/accessibilityservice/
android/ ... |
D | android-all-4.2.2_r1.2-robolectric-0.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/accessibilityservice/
android/ ... |