/aosp12/frameworks/base/core/jni/ |
H A 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()
|
H A D | android_util_AssetManager.cpp | 321 jstring locale, jint orientation, jint touchscreen, jint density, in NativeSetConfiguration() argument 334 configuration.touchscreen = static_cast<uint8_t>(touchscreen); in NativeSetConfiguration()
|
/aosp12/frameworks/base/core/java/android/content/res/ |
H A D | Configuration.java | 537 public int touchscreen; field in Configuration 963 touchscreen = o.touchscreen; in setTo() 1091 switch (touchscreen) { in toString() 1513 && touchscreen != delta.touchscreen) { in updateFrom() 1515 touchscreen = delta.touchscreen; in updateFrom() 1687 touchscreen = delta.touchscreen; in setTo() 1812 && touchscreen != delta.touchscreen) { in diff() 1966 dest.writeInt(touchscreen); in writeToParcel() 2085 n = this.touchscreen - that.touchscreen; in compareTo() 2647 if (base.touchscreen != change.touchscreen) { in generateDelta() [all …]
|
H A D | AssetManager.java | 1439 int touchscreen, int density, int keyboard, int keyboardHidden, int navigation, in setConfiguration() argument 1444 nativeSetConfiguration(mObject, mcc, mnc, locale, orientation, touchscreen, density, in setConfiguration() 1525 @Nullable String locale, int orientation, int touchscreen, int density, int keyboard, in nativeSetConfiguration() argument
|
/aosp12/frameworks/base/native/android/ |
H A 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()
|
/aosp12/frameworks/base/libs/androidfw/ |
H A 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() 946 if (touchscreen || o.touchscreen) return (!o.touchscreen); in HasHigherPrecedenceThan() 986 !pred(touchscreen, o.touchscreen) || in ConflictsWith()
|
H A D | ResourceTypes.cpp | 2168 if (touchscreen != o.touchscreen) { in compareLogical() 2169 return touchscreen < o.touchscreen ? -1 : 1; in compareLogical() 2198 if (touchscreen != o.touchscreen) diffs |= CONFIG_TOUCHSCREEN; in diff() 2353 if (touchscreen != o.touchscreen) { in isMoreSpecificThan() 2354 if (!touchscreen) return false; in isMoreSpecificThan() 2355 if (!o.touchscreen) return true; in isMoreSpecificThan() 2708 if ((touchscreen != o.touchscreen) && requested->touchscreen) { in isBetterThan() 2709 return (touchscreen); in isBetterThan() 2927 if (touchscreen != 0 && touchscreen != settings.touchscreen) { in match() 3459 if (touchscreen != TOUCHSCREEN_ANY) { in toString() [all …]
|
/aosp12/frameworks/base/tools/aapt2/test/ |
H A D | Builders.h | 239 ConfigDescriptionBuilder& setTouchscreen(uint8_t touchscreen) { in setTouchscreen() argument 240 config_.touchscreen = touchscreen; in setTouchscreen()
|
/aosp12/frameworks/base/tools/aapt2/ |
H A D | Configuration.proto | 181 // Whether a touchscreen exists, supports a stylus, or finger. 182 Touchscreen touchscreen = 19;
|
/aosp12/frameworks/base/tools/aapt/ |
H A 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()
|
/aosp12/frameworks/base/core/proto/android/content/ |
H A D | configuration.proto | 38 optional uint32 touchscreen = 7; field
|
/aosp12/frameworks/native/include/android/ |
H A D | configuration.h | 566 void AConfiguration_setTouchscreen(AConfiguration* config, int32_t touchscreen);
|
/aosp12/frameworks/base/tools/aapt2/format/proto/ |
H A D | ProtoDeserialize.cpp | 264 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()
|
H A D | ProtoSerialize.cpp | 204 switch (config.touchscreen) { in SerializeConfig()
|
/aosp12/frameworks/base/core/tests/coretests/src/android/app/activity/ |
H A D | ActivityManagerTest.java | 112 assertEquals(config.reqTouchScreen, vconfig.touchscreen); in testGetDeviceConfigurationInfo()
|
/aosp12/hardware/interfaces/power/1.0/ |
H A D | IPower.hal | 27 * display and touchscreen enabled) or non-interactive state (the
|
H A D | types.hal | 32 * User is interacting with the device, for example, touchscreen
|
/aosp12/system/sepolicy/prebuilts/api/31.0/public/ |
H A D | shell.te | 227 # originate from the touchscreen etc.
|
/aosp12/system/sepolicy/prebuilts/api/32.0/public/ |
H A D | shell.te | 227 # originate from the touchscreen etc.
|
/aosp12/system/sepolicy/public/ |
H A D | shell.te | 227 # originate from the touchscreen etc.
|
/aosp12/system/sepolicy/prebuilts/api/29.0/public/ |
H A D | shell.te | 250 # originate from the touchscreen etc.
|
/aosp12/system/sepolicy/prebuilts/api/30.0/public/ |
H A D | shell.te | 260 # originate from the touchscreen etc.
|
/aosp12/packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/ |
H A D | ScrollController.java | 738 if (mContext.getResources().getConfiguration().touchscreen in getMode()
|
/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/usage/ |
H A D | UsageStatsDatabaseTest.java | 205 config3.touchscreen = 6; in populateIntervalStats()
|
/aosp12/frameworks/base/libs/androidfw/include/androidfw/ |
H A D | ResourceTypes.h | 1034 uint8_t touchscreen; member
|