Home
last modified time | relevance | path

Searched refs:touchscreen (Results 1 – 25 of 31) sorted by relevance

12

/frameworks/base/core/jni/
Dandroid_content_res_Configuration.cpp35 jfieldID touchscreen; member
53 out->touchscreen = env->GetIntField(clazz, gConfigurationClassInfo.touchscreen); in android_Configuration_getFromJava()
83 gConfigurationClassInfo.touchscreen = GetFieldIDOrDie(env, clazz, "touchscreen", "I"); in register_android_content_res_Configuration()
Dandroid_util_AssetManager.cpp356 jint touchscreen, jint density, jint keyboard, in NativeSetConfiguration() argument
377 configuration.touchscreen = static_cast<uint8_t>(touchscreen); in NativeSetConfiguration()
/frameworks/native/services/inputflinger/docs/
Dinput_coordinates.md23 If the user interacts with the highlighted pixel, the touchscreen would report
56 When the device is rotated and the same place on the touchscreen is touched, the
76 touchscreen.
94 It should be impossible for a touchscreen to generate points outside the bounds
95 of the display, because we assume that the area of the touchscreen maps directly
/frameworks/base/core/java/android/content/res/
DConfiguration.java587 public int touchscreen; field in Configuration
1097 touchscreen = o.touchscreen; in setTo()
1233 switch (touchscreen) { in toString()
1238 default: sb.append(" touch="); sb.append(touchscreen); break; in toString()
1314 protoOutputStream.write(TOUCHSCREEN, touchscreen); in dumpDebug()
1446 touchscreen = protoInputStream.readInt(TOUCHSCREEN); in readFromProto()
1576 touchscreen = TOUCHSCREEN_UNDEFINED; in setToDefaults()
1659 if (delta.touchscreen != TOUCHSCREEN_UNDEFINED in updateFrom()
1660 && touchscreen != delta.touchscreen) { in updateFrom()
1662 touchscreen = delta.touchscreen; in updateFrom()
[all …]
DAssetManager.java1554 int touchscreen, int density, int keyboard, int keyboardHidden, int navigation, in setConfiguration() argument
1559 setConfiguration(mcc, mnc, null, new String[]{locale}, orientation, touchscreen, in setConfiguration()
1564 setConfiguration(mcc, mnc, null, null, orientation, touchscreen, density, in setConfiguration()
1577 int orientation, int touchscreen, int density, int keyboard, int keyboardHidden, in setConfiguration() argument
1582 touchscreen, density, keyboard, keyboardHidden, navigation, screenWidth, in setConfiguration()
1593 int orientation, int touchscreen, int density, int keyboard, int keyboardHidden, in setConfigurationInternal() argument
1600 touchscreen, density, keyboard, keyboardHidden, navigation, screenWidth, in setConfigurationInternal()
1691 int touchscreen, int density, int keyboard, int keyboardHidden, int navigation, in nativeSetConfiguration() argument
DResourcesImpl.java552 mConfiguration.touchscreen, in updateConfigurationImpl()
/frameworks/base/native/android/
Dconfiguration.cpp72 return config->touchscreen; in AConfiguration_getTouchscreen()
164 void AConfiguration_setTouchscreen(AConfiguration* config, int32_t touchscreen) { in AConfiguration_setTouchscreen() argument
165 config->touchscreen = touchscreen; in AConfiguration_setTouchscreen()
/frameworks/base/libs/androidfw/
DConfigDescription.cpp427 if (out) out->touchscreen = out->TOUCHSCREEN_ANY; in parseTouchscreen()
430 if (out) out->touchscreen = out->TOUCHSCREEN_NOTOUCH; in parseTouchscreen()
433 if (out) out->touchscreen = out->TOUCHSCREEN_STYLUS; in parseTouchscreen()
436 if (out) out->touchscreen = out->TOUCHSCREEN_FINGER; in parseTouchscreen()
974 if (touchscreen || o.touchscreen) return (!o.touchscreen); in HasHigherPrecedenceThan()
1015 !pred(touchscreen, o.touchscreen) || in ConflictsWith()
DResourceTypes.cpp2257 if (touchscreen != o.touchscreen) { in compareLogical()
2258 return touchscreen < o.touchscreen ? -1 : 1; in compareLogical()
2287 if (touchscreen != o.touchscreen) diffs |= CONFIG_TOUCHSCREEN; in diff()
2450 if (touchscreen != o.touchscreen) { in isMoreSpecificThan()
2451 if (!touchscreen) return false; in isMoreSpecificThan()
2452 if (!o.touchscreen) return true; in isMoreSpecificThan()
2826 if ((touchscreen != o.touchscreen) && requested->touchscreen) { in isBetterThan()
2827 return (touchscreen); in isBetterThan()
3049 if (touchscreen != 0 && touchscreen != settings.touchscreen) { in match()
3590 if (touchscreen != TOUCHSCREEN_ANY) { in toString()
[all …]
/frameworks/proto_logging/stats/express/catalog/
Dvirtual_devices.cfg51 display_name: "Virtual touchscreen created count"
52 description: "Number of times a VirtualDevice adds touchscreen input support."
/frameworks/base/tools/aapt2/test/
DBuilders.h236 ConfigDescriptionBuilder& setTouchscreen(uint8_t touchscreen) { in setTouchscreen() argument
237 config_.touchscreen = touchscreen; in setTouchscreen()
/frameworks/base/tools/aapt2/
DConfiguration.proto188 // Whether a touchscreen exists, supports a stylus, or finger.
189 Touchscreen touchscreen = 19; field
/frameworks/base/tools/aapt/
DAaptConfig.cpp654 if (out) out->touchscreen = out->TOUCHSCREEN_ANY; in parseTouchscreen()
657 if (out) out->touchscreen = out->TOUCHSCREEN_NOTOUCH; in parseTouchscreen()
660 if (out) out->touchscreen = out->TOUCHSCREEN_STYLUS; in parseTouchscreen()
663 if (out) out->touchscreen = out->TOUCHSCREEN_FINGER; in parseTouchscreen()
DResourceTable.cpp3163 config.touchscreen, in flatten()
3208 tHeader->config.touchscreen, in flatten()
3943 config->touchscreen, in getEntry()
/frameworks/proto_logging/stats/enums/input/
Denums.proto206 // with touch information from the built-in touchscreen.
210 // A touchscreen, where touches are mapped directly to the display.
/frameworks/base/core/proto/android/content/
Dconfiguration.proto38 optional uint32 touchscreen = 7; field
/frameworks/native/include/android/
Dconfiguration.h592 void AConfiguration_setTouchscreen(AConfiguration* config, int32_t touchscreen);
/frameworks/base/core/tests/coretests/src/android/app/activity/
DActivityManagerTest.java112 assertEquals(config.reqTouchScreen, vconfig.touchscreen); in testGetDeviceConfigurationInfo()
/frameworks/base/tools/aapt2/format/proto/
DProtoDeserialize.cpp264 switch (pb_config.touchscreen()) { in DeserializeConfigFromPb()
266 out_config->touchscreen = ConfigDescription::TOUCHSCREEN_NOTOUCH; in DeserializeConfigFromPb()
270 out_config->touchscreen = ConfigDescription::TOUCHSCREEN_STYLUS; in DeserializeConfigFromPb()
274 out_config->touchscreen = ConfigDescription::TOUCHSCREEN_FINGER; in DeserializeConfigFromPb()
DProtoSerialize.cpp207 switch (config.touchscreen) { in SerializeConfig()
/frameworks/proto_logging/stats/atoms/input/
Dinput_atoms.proto61 * and the standard deviation of the time spent processing touchscreen events
/frameworks/base/services/tests/servicestests/src/com/android/server/usage/
DUsageStatsDatabaseTest.java220 config3.touchscreen = 6; in populateIntervalStats()
/frameworks/base/libs/androidfw/include/androidfw/
DResourceTypes.h1044 uint8_t touchscreen; member
/frameworks/base/core/java/android/app/
DResourcesManager.java463 config.touchscreen = Configuration.TOUCHSCREEN_NOTOUCH; in applyDisplayMetricsToConfiguration()
/frameworks/base/services/core/java/com/android/server/wm/
DDisplayContent.java2501 config.touchscreen = Configuration.TOUCHSCREEN_NOTOUCH; in computeScreenConfiguration()
2527 config.touchscreen = Configuration.TOUCHSCREEN_FINGER; in computeScreenConfiguration()
2530 config.touchscreen = Configuration.TOUCHSCREEN_NOTOUCH; in computeScreenConfiguration()

12