HomeSort by relevance Sort by last modified time
    Searched refs:mccStr (Results 1 - 4 of 4) sorted by null

  /cts/tests/tests/telephony/src/android/telephony/cts/
CellInfoTest.java 284 // getMcc() returns Integer.MAX_VALUE if mccStr is null.
289 // getMnc() returns Integer.MAX_VALUE if mccStr is null.
334 String mccStr = lte.getMccString();
335 // mccStr is set as NULL if empty, unknown or invalid.
336 assertTrue("getMccString() out of range [0, 999], mcc=" + mccStr,
337 mccStr == null || mccStr.matches("^[0-9]{3}$"));
434 // getMcc() returns Integer.MAX_VALUE if mccStr is null.
439 // getMnc() returns Integer.MAX_VALUE if mccStr is null.
457 String mccStr = wcdma.getMccString()
    [all...]
  /frameworks/base/telephony/java/android/telephony/
CellIdentityWcdma.java 87 * @param mccStr 3-digit Mobile Country Code in string format
95 String mccStr, String mncStr, String alphal, String alphas) {
96 super(TAG, TYPE_WCDMA, mccStr, mncStr, alphal, alphas);
CellIdentityGsm.java 86 * @param mccStr 3-digit Mobile Country Code in string format
93 public CellIdentityGsm(int lac, int cid, int arfcn, int bsic, String mccStr,
95 super(TAG, TYPE_GSM, mccStr, mncStr, alphal, alphas);
CellIdentityLte.java 93 * @param mccStr 3-digit Mobile Country Code in string format
100 public CellIdentityLte(int ci, int pci, int tac, int earfcn, int bandwidth, String mccStr,
102 super(TAG, TYPE_LTE, mccStr, mncStr, alphal, alphas);

Completed in 67 milliseconds