Home | History | Annotate | Download | only in res

Lines Matching defs:touchscreen

35 import static android.content.ConfigurationProto.TOUCHSCREEN;
481 /** Constant for {@link #touchscreen}: a value indicating that no value has been set. */
483 /** Constant for {@link #touchscreen}, value corresponding to the
489 /** Constant for {@link #touchscreen}, value corresponding to the
498 public int touchscreen;
826 /** @hide Native-specific bit mask for TOUCHSCREEN config; DO NOT USE UNLESS YOU ARE SURE. */
904 touchscreen = o.touchscreen;
1031 switch (touchscreen) {
1036 default: sb.append(" touch="); sb.append(touchscreen); break;
1099 protoOutputStream.write(TOUCHSCREEN, touchscreen);
1181 touchscreen = TOUCHSCREEN_UNDEFINED;
1261 if (delta.touchscreen != TOUCHSCREEN_UNDEFINED
1262 && touchscreen != delta.touchscreen) {
1264 touchscreen = delta.touchscreen;
1472 if ((compareUndefined || delta.touchscreen != TOUCHSCREEN_UNDEFINED)
1473 && touchscreen != delta.touchscreen) {
1623 dest.writeInt(touchscreen);
1654 touchscreen = source.readInt();
1731 n = this.touchscreen - that.touchscreen;
1788 result = 31 * result + touchscreen;
2172 switch (config.touchscreen) {
2288 if (base.touchscreen != change.touchscreen) {
2289 delta.touchscreen = change.touchscreen;
2416 configOut.touchscreen = XmlUtils.readIntAttribute(parser, XML_ATTR_TOUCHSCREEN,
2473 if (config.touchscreen != TOUCHSCREEN_UNDEFINED) {
2474 XmlUtils.writeIntAttribute(xml, XML_ATTR_TOUCHSCREEN, config.touchscreen);