Home | History | Annotate | Download | only in carrier

Lines Matching defs:hex

76         String hex = IccUtils.bytesToHexString(mccMnc);
77 mMcc = new String(new char[] {hex.charAt(1), hex.charAt(0), hex.charAt(3)});
78 if (hex.charAt(2) == 'F') {
79 mMnc = new String(new char[] {hex.charAt(5), hex.charAt(4)});
81 mMnc = new String(new char[] {hex.charAt(5), hex.charAt(4), hex.charAt(2)});