HomeSort by relevance Sort by last modified time
    Searched defs:allCellInfo (Results 1 - 13 of 13) sorted by null

  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowTelephonyManagerTest.java 85 List<CellInfo> allCellInfo = Collections.singletonList(mock(CellInfo.class));
86 shadowTelephonyManager.setAllCellInfo(allCellInfo);
87 assertEquals(allCellInfo, telephonyManager.getAllCellInfo());
88 verify(listener).onCellInfoChanged(allCellInfo);
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowTelephonyManager.java 46 private List<CellInfo> allCellInfo = Collections.emptyList();
226 return allCellInfo;
229 public void setAllCellInfo(List<CellInfo> allCellInfo) {
230 this.allCellInfo = allCellInfo;
234 listener.onCellInfoChanged(allCellInfo);
267 listener.onCellInfoChanged(allCellInfo);
  /cts/tests/tests/carrierapi/src/android/carrierapi/cts/
NetworkScanApiTest.java 222 List<CellInfo> allCellInfo = mTelephonyManager.getAllCellInfo();
223 if (allCellInfo == null) {
226 if (allCellInfo.size() == 0) {
232 for (int i = 0; i < allCellInfo.size(); i++) {
233 RadioAccessSpecifier ras = getRadioAccessSpecifier(allCellInfo.get(i));
  /cts/tests/tests/telephony/src/android/telephony/cts/
CellInfoTest.java 136 List<CellInfo> allCellInfo = mTelephonyManager.getAllCellInfo();
137 assertNotNull("TelephonyManager.getAllCellInfo() returned NULL!", allCellInfo);
139 allCellInfo.size() > 0);
142 for (CellInfo cellInfo : allCellInfo) {
  /prebuilts/misc/common/robolectric/3.1.1/lib/
shadows-core-v17-3.1.1.jar 
shadows-core-v18-3.1.1.jar 
shadows-core-v19-3.1.1.jar 
shadows-core-v21-3.1.1.jar 
shadows-core-v22-3.1.1.jar 
shadows-core-v23-3.1.1.jar 
  /prebuilts/misc/common/robolectric/3.4.2/lib/
framework-3.4.2.jar 
  /prebuilts/misc/common/robolectric/3.5.1/lib/
shadows-framework-3.5.1.jar 
  /prebuilts/misc/common/robolectric/3.6.1/lib/
shadows-framework-3.6.1.jar 

Completed in 95 milliseconds