Home
last modified time | relevance | path

Searched refs:CALL_STATE_RINGING (Results 1 – 5 of 5) sorted by relevance

/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowTelephonyManagerTest.java15 import static android.telephony.TelephonyManager.CALL_STATE_RINGING;
210 shadowOf(telephonyManager).setCallState(CALL_STATE_RINGING, "911"); in shouldGiveCallState()
211 assertEquals(CALL_STATE_RINGING, telephonyManager.getCallState()); in shouldGiveCallState()
212 verify(listener).onCallStateChanged(CALL_STATE_RINGING, "911"); in shouldGiveCallState()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowTelephonyManager.java15 import static android.telephony.TelephonyManager.CALL_STATE_RINGING;
145 if (callState != CALL_STATE_RINGING) { in setCallState()
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/
DTelephonyConstants.java57 public static final String CALL_STATE_RINGING = "RINGING"; field in TelephonyConstants
DTelephonyUtils.java133 case TelephonyManager.CALL_STATE_RINGING: in getTelephonyCallStateString()
DInCallServiceImpl.java1277 return TelephonyConstants.CALL_STATE_RINGING; in getCallStateString()