Home
last modified time | relevance | path

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

12

/frameworks/base/core/java/android/content/res/
DConfiguration.java104 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 …]
DAssetManager.java652 int orientation, int touchscreen, int density, int keyboard, in setConfiguration() argument
DResources.java1298 mConfiguration.touchscreen, in updateConfiguration()
/frameworks/base/core/jni/
Dandroid_content_res_Configuration.cpp35 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()
Dandroid_util_AssetManager.cpp531 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/
Dconfiguration.cpp67 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/
DConfiguration.cpp21 n = touchscreen.compare(that.touchscreen); in Compare()
DConfiguration.h14 string touchscreen; member
/frameworks/base/include/utils/
DResourceTypes.h851 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/
DAaptAssets.cpp190 *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 …]
DAaptAssets.h78 String8 touchscreen; member
DResourceTable.cpp2593 if (!match(AXIS_TOUCHSCREEN, config.touchscreen)) { in match()
2803 config.touchscreen, in flatten()
2841 tHeader->config.touchscreen, in flatten()
3437 config->touchscreen, in getEntry()
DResource.cpp111 mParams.density, mParams.touchscreen, mParams.keyboard, in next()
/frameworks/base/core/tests/coretests/src/android/app/activity/
DActivityManagerTest.java103 assertEquals(config.reqTouchScreen, vconfig.touchscreen); in testGetDeviceConfigurationInfo()
/frameworks/base/native/include/android/
Dconfiguration.h186 void AConfiguration_setTouchscreen(AConfiguration* config, int32_t touchscreen);
/frameworks/base/docs/html/guide/topics/manifest/
Duses-feature-element.jd493 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>
Dactivity-element.jd10 "touchscreen", "keyboard", "keyboardHidden",
189 <td>"{@code touchscreen}"</td>
190 <td>The touchscreen has changed. (This should never normally happen.)</td>
/frameworks/base/services/jni/
Dcom_android_server_InputManager.cpp144 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/
Dproviding-resources.jd484 <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
Dlocalization.jd108 specify &#8212; screen orientation, touchscreen type, and so on &#8212; see <a
/frameworks/base/libs/utils/
DResourceTypes.cpp2349 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/
Dnotepad-ex2.jd70 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/
Dnotepad-ex2.jd70 on the UI component (press and hold the touchscreen or highlight and hold down the selection key fo…
/frameworks/base/docs/html/sdk/
Dandroid-2.3.jd754 android.hardware.touchscreen.multitouch.jazzhand} &mdash; The application uses
/frameworks/base/docs/html/guide/developing/tools/
Demulator.jd209 pointer to &quot;touch&quot; the touchscreen and your keyboard keys to

12