HomeSort by relevance Sort by last modified time
    Searched refs:navigation (Results 1 - 25 of 38) sorted by null

1 2

  /cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/
DeviceInfoActivity.java 71 String navigation = null; local
72 if (con.navigation == Configuration.NAVIGATION_UNDEFINED) {
73 navigation = "undefined";
74 } else if (con.navigation == Configuration.NAVIGATION_NONAV) {
75 navigation = "nonav";
76 } else if (con.navigation == Configuration.NAVIGATION_DPAD) {
77 navigation = "drap";
78 } else if (con.navigation == Configuration.NAVIGATION_TRACKBALL) {
79 navigation = "trackball";
80 } else if (con.navigation == Configuration.NAVIGATION_WHEEL)
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/mac/
NavigationController.m 67 - (void)evaluateWebScript:(NSString *)script afterBackForwardNavigation:(NSString *)navigation
72 if (![navigation isKindOfClass:[NSString class]])
73 navigation = @"about:blank";
76 [self setPendingRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:navigation]]];
  /frameworks/base/core/java/android/content/res/
Configuration.java 152 * The kind of navigation method available on the device.
156 public int navigation; field in class:Configuration
163 * A flag indicating whether any 5-way or DPAD navigation available.
164 * This will be set on a device with a mechanism to hide the navigation
238 navigation = o.navigation;
265 sb.append(navigation);
294 navigation = NAVIGATION_UNDEFINED;
360 if (delta.navigation != NAVIGATION_UNDEFINED
361 && navigation != delta.navigation)
    [all...]
AssetManager.java 653 int keyboardHidden, int navigation, int screenWidth, int screenHeight,
  /development/samples/BrowserPlugin/jni/
Android.mk 37 navigation/NavigationPlugin.cpp \
49 $(LOCAL_PATH)/navigation \
  /frameworks/base/tools/localize/
Configuration.cpp 27 n = navigation.compare(that.navigation);
Configuration.h 16 string navigation; member in struct:Configuration
  /frameworks/base/core/jni/
android_content_res_Configuration.cpp 39 jfieldID navigation; member in struct:android::__anon8659
52 out->navigation = env->GetIntField(clazz, gConfigurationClassInfo.navigation);
105 GET_FIELD_ID(gConfigurationClassInfo.navigation, gConfigurationClassInfo.clazz,
106 "navigation", "I");
android_util_AssetManager.cpp 533 jint navigation,
555 config.navigation = (uint8_t)navigation;
    [all...]
  /cts/tests/tests/content/src/android/content/res/cts/
ConfigurationTest.java 51 mConfig.navigation = Configuration.NAVIGATION_NONAV;
89 cfg1.navigation = 2;
90 cfg2.navigation = 3;
92 cfg1.navigation = 3;
93 cfg2.navigation = 2;
236 config.navigation = 1;
369 config.navigation = Configuration.NAVIGATION_DPAD;
398 assertEquals(config.navigation, parcel.readInt());
ResourcesTest.java 168 final int touchscreen, final int keyboard, final int keysHidden, final int navigation,
181 config.navigation = navigation;
ConfigTest.java 42 NAVIGATION,
93 mConfig.navigation = Configuration.NAVIGATION_TRACKBALL;
119 case NAVIGATION:
120 mConfig.navigation = value;
261 config.setProperty(Properties.NAVIGATION, Configuration.NAVIGATION_NONAV);
268 config.setProperty(Properties.NAVIGATION, Configuration.NAVIGATION_DPAD);
275 config.setProperty(Properties.NAVIGATION, Configuration.NAVIGATION_WHEEL);
498 * touchscreen, hidden, keyboard, navigation, width-height
582 config.setProperty(Properties.NAVIGATION,
591 config.setProperty(Properties.NAVIGATION,
    [all...]
  /frameworks/base/core/tests/coretests/src/android/app/activity/
ActivityManagerTest.java 104 assertEquals(config.reqNavigation, vconfig.navigation);
105 if (vconfig.navigation == Configuration.NAVIGATION_NONAV) {
  /development/apps/Development/src/com/android/development/
ConfigurationViewer.java 47 + "navigation=" + c.navigation + "\n"
  /frameworks/base/native/android/
configuration.cpp 79 return config->navigation;
150 void AConfiguration_setNavigation(AConfiguration* config, int32_t navigation) {
151 config->navigation = navigation;
  /frameworks/base/include/utils/
ResourceTypes.h 891 uint8_t navigation; member in struct:android::ResTable_config::__anon8822::__anon8823
    [all...]
  /frameworks/base/tools/aapt/
AaptAssets.cpp 208 // navigation hidden
215 // navigation
218 *value = config.navigation;
448 // navigation hidden
470 //printf("not navigation: %s\n", part.string());
514 this->navigation = nav;
553 s += navigation;
617 if (this->navigation != "") {
619 s += navigation;
1025 if (out) out->navigation = out->NAVIGATION_ANY
    [all...]
AaptAssets.h 82 String8 navigation; member in struct:AaptGroupEntry
  /development/ndk/platforms/android-9/include/android/
configuration.h 214 * Set the current navigation in the configuration.
216 void AConfiguration_setNavigation(AConfiguration* config, int32_t navigation);
  /frameworks/base/native/include/android/
configuration.h 214 * Set the current navigation in the configuration.
216 void AConfiguration_setNavigation(AConfiguration* config, int32_t navigation);
  /build/tools/droiddoc/templates/
macros.cs 205 <?cs # A list of links to classes, for use in the side navigation of classes when viewing a package (panel nav) ?><?cs
218 <?cs # A list of links to classes, for use in the side navigation of classes when viewing a class (panel nav) ?><?cs
231 <?cs # A list of links to packages, for use in the side navigation of packages (panel nav) ?><?cs
  /frameworks/base/include/ui/
Input.h 146 int32_t navigation; member in struct:android::InputConfiguration
  /frameworks/base/services/jni/
com_android_server_InputManager.cpp 146 jfieldID navigation; member in struct:android::__anon9349
    [all...]
  /build/tools/droiddoc/templates-sdk/
customization.cs 141 <?cs # The default side navigation for the reference docs ?><?cs
193 $("<a href='#' id='nav-swap' onclick='swapNav();return false;' style='font-size:10px;line-height:9px;margin-left:1em;text-decoration:none;'><span id='tree-link'>Use Tree Navigation</span><span id='panel-link' style='display:none'>Use Panel Navigation</span></a>").appendTo("#side-nav");
  /frameworks/base/libs/ui/tests/
InputReader_test.cpp 866 ASSERT_EQ(InputConfiguration::NAVIGATION_NONAV, config.navigation);
878 ASSERT_EQ(InputConfiguration::NAVIGATION_NONAV, config.navigation);
890 ASSERT_EQ(InputConfiguration::NAVIGATION_NONAV, config.navigation);
902 ASSERT_EQ(InputConfiguration::NAVIGATION_TRACKBALL, config.navigation);
914 ASSERT_EQ(InputConfiguration::NAVIGATION_DPAD, config.navigation);
    [all...]

Completed in 490 milliseconds

1 2