/frameworks/base/core/jni/ |
D | android_content_res_Configuration.cpp | 35 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()
|
D | android_util_AssetManager.cpp | 488 jstring locale, jint orientation, jint touchscreen, jint density, in NativeSetConfiguration() argument 501 configuration.touchscreen = static_cast<uint8_t>(touchscreen); in NativeSetConfiguration()
|
/frameworks/base/core/java/android/content/res/ |
D | Configuration.java | 509 public int touchscreen; field in Configuration 918 touchscreen = o.touchscreen; in setTo() 1045 switch (touchscreen) { in toString() 1050 default: sb.append(" touch="); sb.append(touchscreen); break; in toString() 1120 protoOutputStream.write(TOUCHSCREEN, touchscreen); in writeToProto() 1250 touchscreen = protoInputStream.readInt(TOUCHSCREEN); in readFromProto() 1374 touchscreen = TOUCHSCREEN_UNDEFINED; in setToDefaults() 1455 if (delta.touchscreen != TOUCHSCREEN_UNDEFINED in updateFrom() 1456 && touchscreen != delta.touchscreen) { in updateFrom() 1458 touchscreen = delta.touchscreen; in updateFrom() [all …]
|
D | AssetManager.java | 1353 int touchscreen, int density, int keyboard, int keyboardHidden, int navigation, in setConfiguration() argument 1358 nativeSetConfiguration(mObject, mcc, mnc, locale, orientation, touchscreen, density, in setConfiguration() 1420 @Nullable String locale, int orientation, int touchscreen, int density, int keyboard, in nativeSetConfiguration() argument
|
D | ResourcesImpl.java | 468 mConfiguration.touchscreen, in updateConfiguration()
|
/frameworks/base/native/android/ |
D | configuration.cpp | 72 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/ |
D | ConfigDescription.cpp | 409 if (out) out->touchscreen = out->TOUCHSCREEN_ANY; in parseTouchscreen() 412 if (out) out->touchscreen = out->TOUCHSCREEN_NOTOUCH; in parseTouchscreen() 415 if (out) out->touchscreen = out->TOUCHSCREEN_STYLUS; in parseTouchscreen() 418 if (out) out->touchscreen = out->TOUCHSCREEN_FINGER; in parseTouchscreen() 943 if (touchscreen || o.touchscreen) return (!o.touchscreen); in HasHigherPrecedenceThan() 983 !pred(touchscreen, o.touchscreen) || in ConflictsWith()
|
D | ResourceTypes.cpp | 2053 if (touchscreen != o.touchscreen) { in compareLogical() 2054 return touchscreen < o.touchscreen ? -1 : 1; in compareLogical() 2083 if (touchscreen != o.touchscreen) diffs |= CONFIG_TOUCHSCREEN; in diff() 2238 if (touchscreen != o.touchscreen) { in isMoreSpecificThan() 2239 if (!touchscreen) return false; in isMoreSpecificThan() 2240 if (!o.touchscreen) return true; in isMoreSpecificThan() 2593 if ((touchscreen != o.touchscreen) && requested->touchscreen) { in isBetterThan() 2594 return (touchscreen); in isBetterThan() 2812 if (touchscreen != 0 && touchscreen != settings.touchscreen) { in match() 3344 if (touchscreen != TOUCHSCREEN_ANY) { in toString() [all …]
|
/frameworks/base/tools/aapt2/test/ |
D | Builders.h | 239 ConfigDescriptionBuilder& setTouchscreen(uint8_t touchscreen) { in setTouchscreen() argument 240 config_.touchscreen = touchscreen; in setTouchscreen()
|
/frameworks/base/tools/aapt2/ |
D | Configuration.proto | 182 // Whether a touchscreen exists, supports a stylus, or finger. 183 Touchscreen touchscreen = 19; field
|
/frameworks/base/core/tests/coretests/src/android/app/activity/ |
D | ActivityManagerTest.java | 104 assertEquals(config.reqTouchScreen, vconfig.touchscreen); in testGetDeviceConfigurationInfo()
|
/frameworks/base/tools/aapt/ |
D | AaptConfig.cpp | 654 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()
|
D | ResourceTable.cpp | 3170 config.touchscreen, in flatten() 3215 tHeader->config.touchscreen, in flatten() 3950 config->touchscreen, in getEntry()
|
D | Resource.cpp | 141 mParams.density, mParams.touchscreen, mParams.keyboard, in next()
|
/frameworks/base/core/proto/android/content/ |
D | configuration.proto | 38 optional uint32 touchscreen = 7; field
|
/frameworks/native/include/android/ |
D | configuration.h | 566 void AConfiguration_setTouchscreen(AConfiguration* config, int32_t touchscreen);
|
/frameworks/base/tools/aapt2/format/proto/ |
D | ProtoDeserialize.cpp | 262 switch (pb_config.touchscreen()) { in DeserializeConfigFromPb() 264 out_config->touchscreen = ConfigDescription::TOUCHSCREEN_NOTOUCH; in DeserializeConfigFromPb() 268 out_config->touchscreen = ConfigDescription::TOUCHSCREEN_STYLUS; in DeserializeConfigFromPb() 272 out_config->touchscreen = ConfigDescription::TOUCHSCREEN_FINGER; in DeserializeConfigFromPb()
|
D | ProtoSerialize.cpp | 202 switch (config.touchscreen) { in SerializeConfig()
|
/frameworks/base/services/tests/servicestests/src/com/android/server/usage/ |
D | UsageStatsDatabaseTest.java | 192 config3.touchscreen = 6; in populateIntervalStats()
|
/frameworks/base/libs/androidfw/include/androidfw/ |
D | ResourceTypes.h | 1008 uint8_t touchscreen; member
|
/frameworks/base/core/java/android/app/ |
D | ResourcesManager.java | 232 config.touchscreen = Configuration.TOUCHSCREEN_NOTOUCH; in applyNonDefaultDisplayMetricsToConfiguration()
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | DisplayContent.java | 1731 config.touchscreen = Configuration.TOUCHSCREEN_NOTOUCH; in computeScreenConfiguration() 1759 config.touchscreen = Configuration.TOUCHSCREEN_FINGER; in computeScreenConfiguration() 1762 config.touchscreen = Configuration.TOUCHSCREEN_NOTOUCH; in computeScreenConfiguration()
|
D | ActivityTaskManagerService.java | 955 config.reqTouchScreen = globalConfig.touchscreen; in getDeviceConfigurationInfo() 5250 values.touchscreen, in updateGlobalConfigurationLocked() 5469 && config.touchscreen == Configuration.TOUCHSCREEN_NOTOUCH in updateShouldShowDialogsLocked()
|
/frameworks/base/cmds/statsd/src/ |
D | atoms.proto | 1437 // See: https://d.android.com/reference/android/content/res/Configuration.html#touchscreen 1438 optional int32 touchscreen = 16; field 2851 * for touchscreen events. The units are microseconds.
|
/frameworks/opt/setupwizard/tools/docs/ |
D | android-22.txt | 8832 field public static final java.lang.String FEATURE_TOUCHSCREEN = "android.hardware.touchscreen"; 8833 … final java.lang.String FEATURE_TOUCHSCREEN_MULTITOUCH = "android.hardware.touchscreen.multitouch"; 8834 …ang.String FEATURE_TOUCHSCREEN_MULTITOUCH_DISTINCT = "android.hardware.touchscreen.multitouch.dist… 8835 …ang.String FEATURE_TOUCHSCREEN_MULTITOUCH_JAZZHAND = "android.hardware.touchscreen.multitouch.jazz… 9180 field public int touchscreen;
|