/frameworks/base/core/java/android/content/res/ |
D | Configuration.java | 104 public int touchscreen; field in Configuration 234 touchscreen = o.touchscreen; in setTo() 257 sb.append(touchscreen); in toString() 290 touchscreen = TOUCHSCREEN_UNDEFINED; in setToDefaults() 340 if (delta.touchscreen != TOUCHSCREEN_UNDEFINED in updateFrom() 341 && touchscreen != delta.touchscreen) { in updateFrom() 343 touchscreen = delta.touchscreen; in updateFrom() 440 if (delta.touchscreen != TOUCHSCREEN_UNDEFINED in diff() 441 && touchscreen != delta.touchscreen) { in diff() 548 dest.writeInt(touchscreen); in writeToParcel() [all …]
|
D | AssetManager.java | 652 int orientation, int touchscreen, int density, int keyboard, in setConfiguration() argument
|
D | Resources.java | 1298 mConfiguration.touchscreen, in updateConfiguration()
|
/frameworks/base/core/jni/ |
D | android_content_res_Configuration.cpp | 35 jfieldID touchscreen; member 50 out->touchscreen = env->GetIntField(clazz, gConfigurationClassInfo.touchscreen); in android_Configuration_getFromJava() 97 GET_FIELD_ID(gConfigurationClassInfo.touchscreen, gConfigurationClassInfo.clazz, in register_android_content_res_Configuration()
|
D | android_util_AssetManager.cpp | 531 jint touchscreen, jint density, in android_content_AssetManager_setConfiguration() argument 551 config.touchscreen = (uint8_t)touchscreen; in android_content_AssetManager_setConfiguration()
|
/frameworks/base/native/android/ |
D | configuration.cpp | 67 return config->touchscreen; in AConfiguration_getTouchscreen() 138 void AConfiguration_setTouchscreen(AConfiguration* config, int32_t touchscreen) { in AConfiguration_setTouchscreen() argument 139 config->touchscreen = touchscreen; in AConfiguration_setTouchscreen()
|
/frameworks/base/tools/localize/ |
D | Configuration.cpp | 21 n = touchscreen.compare(that.touchscreen); in Compare()
|
D | Configuration.h | 14 string touchscreen; member
|
/frameworks/base/include/utils/ |
D | ResourceTypes.h | 851 uint8_t touchscreen; member 1055 if (touchscreen != o.touchscreen) diffs |= CONFIG_TOUCHSCREEN; in diff() 1127 if (touchscreen != o.touchscreen) { in isMoreSpecificThan() 1128 if (!touchscreen) return false; in isMoreSpecificThan() 1129 if (!o.touchscreen) return true; in isMoreSpecificThan() 1295 if ((touchscreen != o.touchscreen) && requested->touchscreen) { in isBetterThan() 1296 return (touchscreen); in isBetterThan() 1435 if (settings.touchscreen != 0 && touchscreen != 0 in match() 1436 && touchscreen != settings.touchscreen) { in match() 1513 orientation, touchscreen, density, keyboard, navigation, inputFlags, in toString()
|
/frameworks/base/tools/aapt/ |
D | AaptAssets.cpp | 190 *value = config.touchscreen; in parseNamePart() 510 this->touchscreen = touch; in initFromDirName() 545 s += touchscreen; in toString() 601 if (this->touchscreen != "") { in toDirName() 603 s += touchscreen; in toDirName() 934 if (out) out->touchscreen = out->TOUCHSCREEN_ANY; in getTouchscreenName() 937 if (out) out->touchscreen = out->TOUCHSCREEN_NOTOUCH; in getTouchscreenName() 940 if (out) out->touchscreen = out->TOUCHSCREEN_STYLUS; in getTouchscreenName() 943 if (out) out->touchscreen = out->TOUCHSCREEN_FINGER; in getTouchscreenName() 1121 if (v == 0) v = touchscreen.compare(o.touchscreen); in compare() [all …]
|
D | AaptAssets.h | 78 String8 touchscreen; member
|
D | ResourceTable.cpp | 2593 if (!match(AXIS_TOUCHSCREEN, config.touchscreen)) { in match() 2803 config.touchscreen, in flatten() 2841 tHeader->config.touchscreen, in flatten() 3437 config->touchscreen, in getEntry()
|
D | Resource.cpp | 111 mParams.density, mParams.touchscreen, mParams.keyboard, in next()
|
/frameworks/base/core/tests/coretests/src/android/app/activity/ |
D | ActivityManagerTest.java | 103 assertEquals(config.reqTouchScreen, vconfig.touchscreen); in testGetDeviceConfigurationInfo()
|
/frameworks/base/native/include/android/ |
D | configuration.h | 186 void AConfiguration_setTouchscreen(AConfiguration* config, int32_t touchscreen);
|
/frameworks/base/docs/html/guide/topics/manifest/ |
D | uses-feature-element.jd | 493 uses-feature:'android.hardware.touchscreen' 648 <td><code>android.hardware.touchscreen</code></td> 649 <td>The application uses touchscreen capabilities on the device.</td> 653 <td><code>android.hardware.touchscreen.multitouch</code></td> 657 subfeature implicitly declares the <code>android.hardware.touchscreen</code> 661 <td><code>android.hardware.touchscreen.multitouch.distinct</code></td> 667 <code>android.hardware.touchscreen.multitouch</code> parent feature. </td> 670 <td><code>android.hardware.touchscreen.multitouch.jazzhand</code></td>
|
D | activity-element.jd | 10 "touchscreen", "keyboard", "keyboardHidden", 189 <td>"{@code touchscreen}"</td> 190 <td>The touchscreen has changed. (This should never normally happen.)</td>
|
/frameworks/base/services/jni/ |
D | com_android_server_InputManager.cpp | 144 jfieldID touchscreen; member 1269 env->SetIntField(configObj, gConfigurationClassInfo.touchscreen, config.touchScreen); in android_server_InputManager_nativeGetInputConfiguration() 1553 GET_FIELD_ID(gConfigurationClassInfo.touchscreen, gConfigurationClassInfo.clazz, in register_android_server_InputManager()
|
/frameworks/base/docs/html/guide/topics/resources/ |
D | providing-resources.jd | 484 <li>{@code notouch}: Device does not have a touchscreen.</li> 485 <li>{@code stylus}: Device has a resistive touchscreen that's suited for use with a 487 <li>{@code finger}: Device has a touchscreen.</li> 489 <p>Also see the {@link android.content.res.Configuration#touchscreen} configuration field, 490 which indicates the type of touchscreen on the device.</p> 573 touchscreen.</li> 960 choice on the list includes three qualifiers that exactly match the device (orientation, touchscreen
|
D | localization.jd | 108 specify — screen orientation, touchscreen type, and so on — see <a
|
/frameworks/base/libs/utils/ |
D | ResourceTypes.cpp | 2349 params->touchscreen, in setParameters() 3673 thisConfig.touchscreen, in getEntry() 3674 config ? config->touchscreen : 0, in getEntry() 3975 thisConfig.touchscreen, in parsePackage() 4235 if (type->config.touchscreen != 0) { in print() 4236 printf(" touch=%d", type->config.touchscreen); in print() 4237 switch (type->config.touchscreen) { in print()
|
/frameworks/base/docs/html/guide/tutorials/notepad/ |
D | notepad-ex2.jd | 70 on the UI component (press and hold the touchscreen or highlight and hold down the selection key fo…
|
/frameworks/base/docs/html/resources/tutorials/notepad/ |
D | notepad-ex2.jd | 70 on the UI component (press and hold the touchscreen or highlight and hold down the selection key fo…
|
/frameworks/base/docs/html/sdk/ |
D | android-2.3.jd | 754 android.hardware.touchscreen.multitouch.jazzhand} — The application uses
|
/frameworks/base/docs/html/guide/developing/tools/ |
D | emulator.jd | 209 pointer to "touch" the touchscreen and your keyboard keys to
|