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

1 2 3 4 5 6 7 8 91011

  /packages/services/Car/car-lib/src/android/car/navigation/
CarNavigationInstrumentCluster.aidl 16 package android.car.navigation;
CarNavigationInstrumentCluster.java 16 package android.car.navigation;
27 * Holds options related to navigation for the car's instrument cluster.
33 /** Navigation Next Turn messages contain an image, as well as an enum. */
35 /** Navigation Next Turn messages contain only an enum. */
  /cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/
DeviceInfoActivity.java 147 String navigation = null; local
148 if (con.navigation == Configuration.NAVIGATION_UNDEFINED) {
149 navigation = "undefined";
150 } else if (con.navigation == Configuration.NAVIGATION_NONAV) {
151 navigation = "nonav";
152 } else if (con.navigation == Configuration.NAVIGATION_DPAD) {
153 navigation = "drap";
154 } else if (con.navigation == Configuration.NAVIGATION_TRACKBALL) {
155 navigation = "trackball";
156 } else if (con.navigation == Configuration.NAVIGATION_WHEEL)
    [all...]
  /packages/services/Car/car-lib/src/android/car/cluster/renderer/
IInstrumentClusterNavigation.aidl 19 import android.car.navigation.CarNavigationInstrumentCluster;
22 * Binder API for Instrument Cluster Navigation.
InstrumentClusterRenderer.java 21 import android.car.navigation.CarNavigationInstrumentCluster;
NavigationRenderer.java 20 import android.car.navigation.CarNavigationInstrumentCluster;
24 * Contains methods specified for Navigation App renderer in instrument cluster.
33 * Returns properties of instrument cluster for navigation.
  /cts/common/device-side/device-info/src/com/android/compatibility/common/deviceinfo/
ConfigurationDeviceInfo.java 31 store.addResult("navigation", con.navigation);
  /frameworks/support/samples/SupportDesignDemos/src/com/example/android/support/design/widget/
NavigationViewUsageBase.java 41 NavigationView navigation = findViewById(R.id.navigation); local
42 navigation.setNavigationItemSelectedListener(getNavigationItemSelectedListener());
43 navigation.inflateHeaderView(R.layout.design_navigation_header);
  /packages/services/Car/car-support-lib/src/android/support/car/navigation/
CarNavigationStatusManagerEmbedded.java 16 package android.support.car.navigation;
26 private final android.car.navigation.CarNavigationStatusManager mManager;
29 mManager = (android.car.navigation.CarNavigationStatusManager) manager;
33 * @param status new instrument cluster navigation status.
101 android.car.navigation.CarNavigationInstrumentCluster ic) {
CarNavigationInstrumentCluster.java 16 package android.support.car.navigation;
27 * Holds options related to navigation for the car's instrument cluster.
31 /** Navigation Next Turn messages contain an image, as well as an enum. */
33 /** Navigation Next Turn messages contain only an enum. */
CarNavigationStatusManager.java 16 package android.support.car.navigation;
26 * APIs for providing navigation status to the instrument cluster. For cars that have a navigation
27 * display built into the instrument cluster, a navigation application should also provide
30 * Navigation applications should first call
35 * After navigation focus is granted, applications should call {@code
50 * Listener for navigation related events. Callbacks are called in the Looper context.
54 * Instrument Cluster started in navigation mode.
58 * navigation instrument cluster.
71 /* Navigation statuses *
    [all...]
  /frameworks/base/core/proto/android/content/
configuration.proto 38 uint32 navigation = 9;
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/page/
ReportPage.java 103 final HTMLElement navigation = body.div(Styles.BREADCRUMB); local
104 navigation.attr("id", "breadcrumb");
105 infoLinks(navigation.span(Styles.INFO));
106 breadcrumb(navigation, folder);
  /frameworks/base/core/jni/
android_content_res_Configuration.cpp 39 jfieldID navigation; member in struct:android::__anon38797
55 out->navigation = env->GetIntField(clazz, gConfigurationClassInfo.navigation);
88 gConfigurationClassInfo.navigation = GetFieldIDOrDie(env, clazz, "navigation", "I");
  /packages/services/Car/tests/android_support_car_api_test/src/com/android/support/car/apitest/
CarNavigationStatusManagerTest.java 24 import android.support.car.navigation.CarNavigationInstrumentCluster;
25 import android.support.car.navigation.CarNavigationStatusManager;
31 * Unit tests for {@link android.support.car.navigation.CarNavigationStatusManager}
  /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"
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
Token.js 14 /** imaginary tree navigation type; traverse "get child" link */
16 /** imaginary tree navigation type; finish with a child list */
  /frameworks/base/native/android/
configuration.cpp 79 return config->navigation;
171 void AConfiguration_setNavigation(AConfiguration* config, int32_t navigation) {
172 config->navigation = navigation;
  /packages/services/Car/car-cluster-logging-renderer/src/android/car/cluster/loggingrenderer/
LoggingClusterRenderingService.java 20 import android.car.navigation.CarNavigationInstrumentCluster;
  /packages/services/Car/tests/android_car_api_test/src/android/car/apitest/
CarNavigationManagerTest.java 21 import android.car.navigation.CarNavigationStatusManager;
49 + "car navigation manager was not created succesfully.");
  /frameworks/base/core/java/android/content/res/
Configuration.java 539 /** Constant for {@link #navigation}: a value indicating that no value has been set. */
541 /** Constant for {@link #navigation}, value corresponding to the
545 /** Constant for {@link #navigation}, value corresponding to the
549 /** Constant for {@link #navigation}, value corresponding to the
553 /** Constant for {@link #navigation}, value corresponding to the
559 * The kind of navigation method available on the device.
563 public int navigation; field in class:Configuration
577 * A flag indicating whether any 5-way or DPAD navigation available.
578 * This will be set on a device with a mechanism to hide the navigation
    [all...]
  /packages/services/Car/car-support-lib/src/android/support/car/
CarServiceLoaderEmbedded.java 27 import android.support.car.navigation.CarNavigationStatusManagerEmbedded;
  /frameworks/base/tools/aapt2/
ConfigDescription.cpp 498 if (out) out->navigation = out->NAVIGATION_ANY;
501 if (out) out->navigation = out->NAVIGATION_NONAV;
504 if (out) out->navigation = out->NAVIGATION_DPAD;
507 if (out) out->navigation = out->NAVIGATION_TRACKBALL;
510 if (out) out->navigation = out->NAVIGATION_WHEEL;
937 if (navigation || o.navigation) return (!o.navigation);
974 !pred(keyboard, o.keyboard) || !pred(navigation, o.navigation);
    [all...]
  /cts/tests/tests/content/src/android/content/res/cts/
ConfigurationTest.java 49 mConfig.navigation = Configuration.NAVIGATION_NONAV;
77 cfg1.navigation = 2;
78 cfg2.navigation = 3;
80 cfg1.navigation = 3;
81 cfg2.navigation = 2;
255 config.navigation = 1;
353 assertEquals(Configuration.NAVIGATION_UNDEFINED, config.navigation);
380 assertEquals(Configuration.NAVIGATION_UNDEFINED, config.navigation);
728 config.navigation = Configuration.NAVIGATION_DPAD;

Completed in 774 milliseconds

1 2 3 4 5 6 7 8 91011