Home | History | Annotate | Download | only in res

Lines Matching defs:navigation

537     /** Constant for {@link #navigation}: a value indicating that no value has been set. */
539 /** Constant for {@link #navigation}, value corresponding to the
543 /** Constant for {@link #navigation}, value corresponding to the
547 /** Constant for {@link #navigation}, value corresponding to the
551 /** Constant for {@link #navigation}, value corresponding to the
557 * The kind of navigation method available on the device.
561 public int navigation;
575 * A flag indicating whether any 5-way or DPAD navigation available.
576 * This will be set on a device with a mechanism to hide the navigation
810 /** @hide Native-specific bit mask for NAVIGATION config; DO NOT USE UNLESS YOU ARE SURE. */
885 navigation = o.navigation;
1035 switch (navigation) {
1041 default: sb.append(" nav="); sb.append(navigation); break;
1075 navigation = NAVIGATION_UNDEFINED;
1171 if (delta.navigation != NAVIGATION_UNDEFINED
1172 && navigation != delta.navigation) {
1174 navigation = delta.navigation;
1380 if ((compareUndefined || delta.navigation != NAVIGATION_UNDEFINED)
1381 && navigation != delta.navigation) {
1527 dest.writeInt(navigation);
1563 navigation = source.readInt();
1644 n = this.navigation - that.navigation;
1710 result = 31 * result + navigation;
2152 switch (config.navigation) {
2216 if (base.navigation != change.navigation) {
2217 delta.navigation = change.navigation;
2337 configOut.navigation = XmlUtils.readIntAttribute(parser, XML_ATTR_NAVIGATION,
2399 if (config.navigation != NAVIGATION_UNDEFINED) {
2400 XmlUtils.writeIntAttribute(xml, XML_ATTR_NAVIGATION, config.navigation);