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

1 2 3 4 5 6 7 8 91011>>

  /sdk/apps/DeviceConfig/res/values-nonav/
strings.xml 3 <string name="navigation">NO NAV</string>
  /sdk/apps/DeviceConfig/res/values-trackball/
strings.xml 3 <string name="navigation">TRACKBALL</string>
  /sdk/apps/DeviceConfig/res/values-wheel/
strings.xml 3 <string name="navigation">WHEEL</string>
  /external/chromium_org/components/sessions/
serialized_navigation_entry_test_helper.cc 36 SerializedNavigationEntry navigation; local
37 navigation.index_ = 0;
38 navigation.referrer_ =
41 navigation.virtual_url_ = GURL(virtual_url);
42 navigation.title_ = UTF8ToUTF16(title);
43 navigation.page_state_ =
45 navigation.timestamp_ = base::Time::Now();
46 navigation.http_status_code_ = 200;
47 return navigation;
53 SerializedNavigationEntry* navigation) {
    [all...]
serialized_navigation_entry_unittest.cc 98 const SerializedNavigationEntry navigation; local
99 EXPECT_EQ(-1, navigation.index());
100 EXPECT_EQ(0, navigation.unique_id());
101 EXPECT_EQ(GURL(), navigation.referrer().url);
102 EXPECT_EQ(blink::WebReferrerPolicyDefault, navigation.referrer().policy);
103 EXPECT_EQ(GURL(), navigation.virtual_url());
104 EXPECT_TRUE(navigation.title().empty());
105 EXPECT_FALSE(navigation.page_state().IsValid());
106 EXPECT_EQ(content::PAGE_TRANSITION_TYPED, navigation.transition_type());
107 EXPECT_FALSE(navigation.has_post_data())
123 const SerializedNavigationEntry& navigation = local
150 const SerializedNavigationEntry& navigation = local
212 const SerializedNavigationEntry& navigation = local
246 const SerializedNavigationEntry& navigation = local
284 const SerializedNavigationEntry& navigation = local
    [all...]
serialized_navigation_entry_test_helper.h 43 SerializedNavigationEntry* navigation);
46 SerializedNavigationEntry* navigation);
49 SerializedNavigationEntry* navigation);
52 SerializedNavigationEntry* navigation);
55 SerializedNavigationEntry* navigation);
  /external/jmonkeyengine/engine/src/desktop/jme3tools/navigation/
InvalidPositionException.java 6 package jme3tools.navigation;
  /sdk/apps/DeviceConfig/res/values-dpad/
strings.xml 3 <string name="navigation">D-PAD</string>
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
NavigationController.java 13 * @return Whether back navigation is possible from the "current entry".
18 * @return Whether forward navigation is possible from the "current entry".
23 * @param offset The offset into the navigation history.
31 * @param offset The offset into the navigation history.
36 * Navigates to the specified index in the navigation entry for this page.
37 * @param index The navigation index to navigate to.
42 * Goes to the navigation entry before the current one.
47 * Goes to the navigation entry following the current one.
NavigationClient.java 14 * Get a directed copy of the navigation history of the view.
17 * @return A directed navigation for the page.
22 * Navigates to the specified index in the navigation entry for this page.
23 * @param index The navigation index to navigate to.
  /external/chromium_org/third_party/WebKit/ManualTests/
navigation-during-onload-triggered-by-back.html 5 <p>Same-document navigation in onload triggered by back navigation.</p>
8 <li>Click <a href="resources/navigation-during-onload-container.html">here</a>.</li>
textarea-iframe-navigation.html 5 <p>Textarea inside iframe -- Navigation</p>
9 <li>Wait for the navigation to happen</li>
  /device/asus/grouper/overlay/frameworks/base/core/res/res/values/
dimens.xml 3 <!-- Navigation bar is taller in portrait. -->
  /device/asus/tilapia/overlay/frameworks/base/core/res/res/values/
dimens.xml 3 <!-- Navigation bar is taller in portrait. -->
  /external/chromium_org/third_party/WebKit/ManualTests/spatial-navigation/
frameset.html 5 <frame src="spatial-navigation-test-cases.html"/>
  /frameworks/base/docs/html/design/patterns/
navigation-drawer.jd 1 page.title=Navigation Drawer
6 <a class="notice-developers" href="{@docRoot}training/implementing-navigation/nav-drawer.html">
9 <p>Creating a Navigation Drawer</p>
14 <p>The navigation drawer is a panel that transitions in from the left edge of the screen and
15 displays the app?s main navigation options.</p>
18 <h4>Displaying the navigation drawer</h4>
20 <p>The user can bring the navigation drawer onto the screen by swiping from the left edge of the
23 <p>As the navigation drawer expands, it overlays the content but not the action bar. When the
26 the navigation drawer. The overflow menu with the standard action items for Settings and Help
31 The user can open the drawer panel by touching the navigation drawer indicator
    [all...]
compatibility.jd 14 <li>Deprecation of navigation hardware keys (Back, Menu, Search, Home) in favor of handling navigation
25 <h4>Phones with virtual navigation controls</h4>
42 <h4>Phones with physical navigation keys</h4>
43 <p>Android phones with traditional navigation hardware keys don't display the virtual navigation bar at
58 <h4>Legacy apps on phones with virtual navigation controls</h4>
59 <p>When you run an app that was built for Android 2.3 or earlier on a phone with virtual navigation
60 controls, an action overflow control appears at the right side of the virtual navigation bar. You
  /frameworks/base/docs/html/training/implementing-navigation/
index.jd 1 page.title=Implementing Effective Navigation
17 <li><a href="{@docRoot}training/design-navigation/index.html">Designing Effective Navigation</a></li>
40 <p>This class demonstrates how to implement the key navigation design patterns detailed in the
41 <a href="{@docRoot}training/design-navigation/index.html">Designing Effective Navigation</a> class.
45 implement navigation patterns with tabs, swipe views, and a navigation drawer. You should also
46 understand how to provide proper <em>Up</em> and <em>Back</em> navigation.</p>
62 <dt><strong><a href="nav-drawer.html">Creating a Navigation Drawer</a></strong></dt
    [all...]
descendant.jd 1 page.title=Implementing Descendant Navigation
2 parent.title=Implementing Effective Navigation
6 previous.title=Implementing Temporal Navigation
22 <li><a href="{@docRoot}training/design-navigation/descendant-lateral.html">Providing Descendant and Lateral Navigation</a></li>
39 <p><em>Descendant navigation</em> is navigation down the application's information hierarchy. This is described in <a href="{@docRoot}training/design-navigation/descendant-lateral.html">Designing Effective Navigation</a> and also covered in <a href="{@docRoot}design/patterns/app-structure.html">Android Design: Application Structure</a>.</p>
41 <p>Descendant navigation is usually implemented using {@link android.content.Intent} objects and {@link android.content.Con (…)
    [all...]
  /external/chromium_org/chrome/browser/google/
google_url_tracker_navigation_helper.h 17 // for various navigation events.
25 // Enables or disables listening for navigation starts. OnNavigationPending
26 // will be called for each navigation start if listening is enabled.
29 // Returns whether or not the observer is currently listening for navigation
33 // Enables or disables listening for navigation commits for the given
35 // navigation commit if listening is enabled.
40 // Returns whether or not the observer is currently listening for navigation
  /external/chromium_org/content/public/browser/
page_navigator.h 7 // perform the navigation.
46 // Any redirect URLs that occurred for this navigation before |url|.
49 // Indicates whether this navigation will be sent using POST.
55 // The post data when the navigation uses POST.
70 // The disposition requested by the navigation source.
73 // The transition type of navigation.
76 // Whether this navigation is initiated by the renderer process.
79 // Reference to the old request id in case this is a navigation that is being
83 // Indicates whether this navigation should replace the current
84 // navigation entry
    [all...]
  /frameworks/base/docs/html/training/design-navigation/
ancestral-temporal.jd 1 page.title=Providing Ancestral and Temporal Navigation
2 parent.title=Designing Effective Navigation
6 previous.title=Providing Descendant and Lateral Navigation
18 <li><a href="#temporal-navigation">Support Temporal Navigation: <em>Back</em></a></li>
19 <li><a href="#ancestral-navigation">Provide Ancestral Navigation: <em>Up</em> and <em>Home</em></a></li>
24 <li><a href="{@docRoot}design/patterns/navigation.html">Android Design: Navigation</a></li>
34 ancestor screens. Additionally, we should ensure that temporal navigation via the <em>Back</em
    [all...]
  /external/chromium_org/components/navigation_interception/android/java/src/org/chromium/components/navigation_interception/
InterceptNavigationDelegate.java 12 * This method is called for every top-level navigation within the associated WebContents.
16 * @param navigationParams parameters describing the navigation.
17 * @return true if the navigation should be ignored.
  /development/samples/training/multiscreen/newsreader/src/com/example/android/newsreader/
CompatActionBarNavHandler.java 25 * Adapter for action bar navigation events.
27 * This class implements an adapter that facilitates handling of action bar navigation events.
29 * Action Bar, and it will relay the navigation events to a configured listener
36 // The listener that we notify of navigation events
42 * @param listener the listener to notify when a navigation event occurs.
51 * This will cause a navigation event to be delivered to the configured listener.
60 * Called by framework when a item on the navigation menu is selected.
62 * This will cause a navigation event to be delivered to the configured listener.
  /external/chromium_org/content/common/
navigation_gesture.h 11 // User initiated navigation/load.
13 // Non-user initiated navigation/load. For example, onload- or

Completed in 1125 milliseconds

1 2 3 4 5 6 7 8 91011>>