Home | History | Annotate | Download | only in res

Lines Matching refs:mnc

71      * IMSI MNC (Mobile Network Code), corresponding to
72 * <a href="{@docRoot}guide/topics/resources/providing-resources.html#MccQualifier">mnc</a>
73 * resource qualifier. 0 if undefined. Note that the actual MNC may be 0; in order to check
76 public int mnc;
79 * Constant used to to represent MNC (Mobile Network Code) zero.
80 * 0 cannot be used, since it is used to represent an undefined MNC.
696 /** @hide Native-specific bit mask for MNC config; DO NOT USE UNLESS YOU ARE SURE. */
754 mnc = o.mnc;
789 if (mnc != 0) {
790 sb.append(mnc);
791 sb.append("mnc");
793 sb.append("?mnc");
922 mcc = mnc = 0;
964 if (delta.mnc != 0 && mnc != delta.mnc) {
966 mnc = delta.mnc;
1128 if (delta.mnc != 0 && mnc != delta.mnc) {
1256 dest.writeInt(mnc);
1293 mnc = source.readInt();
1349 n = this.mnc - that.mnc;
1425 result = 31 * result + mnc;
1599 if (config.mnc != 0) {
1600 parts.add("mnc" + config.mnc);
1840 if (base.mnc != change.mnc) {
1841 delta.mnc = change.mnc;
1923 private static final String XML_ATTR_MNC = "mnc";
1952 configOut.mnc = XmlUtils.readIntAttribute(parser, XML_ATTR_MNC, 0);
2003 if (config.mnc != 0) {
2004 XmlUtils.writeIntAttribute(xml, XML_ATTR_MNC, config.mnc);