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

1 2 3 4 5 6 7 8 9

  /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_ = base::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_test_helper.h 42 SerializedNavigationEntry* navigation);
45 SerializedNavigationEntry* navigation);
48 SerializedNavigationEntry* navigation);
51 SerializedNavigationEntry* navigation);
54 SerializedNavigationEntry* navigation);
serialized_navigation_entry_unittest.cc 108 const SerializedNavigationEntry navigation; local
109 EXPECT_EQ(-1, navigation.index());
110 EXPECT_EQ(0, navigation.unique_id());
111 EXPECT_EQ(GURL(), navigation.referrer().url);
112 EXPECT_EQ(blink::WebReferrerPolicyDefault, navigation.referrer().policy);
113 EXPECT_EQ(GURL(), navigation.virtual_url());
114 EXPECT_TRUE(navigation.title().empty());
115 EXPECT_FALSE(navigation.page_state().IsValid());
116 EXPECT_EQ(ui::PAGE_TRANSITION_TYPED, navigation.transition_type());
117 EXPECT_FALSE(navigation.has_post_data())
134 const SerializedNavigationEntry& navigation = local
165 const SerializedNavigationEntry& navigation = local
229 const SerializedNavigationEntry& navigation = local
267 const SerializedNavigationEntry& navigation = local
305 const SerializedNavigationEntry& navigation = local
340 const SerializedNavigationEntry& navigation = local
364 const SerializedNavigationEntry& navigation = local
    [all...]
serialized_navigation_entry.cc 39 SerializedNavigationEntry navigation; local
40 navigation.index_ = index;
41 navigation.unique_id_ = entry.GetUniqueID();
42 navigation.referrer_ = entry.GetReferrer();
43 navigation.virtual_url_ = entry.GetVirtualURL();
44 navigation.title_ = entry.GetTitle();
45 navigation.page_state_ = entry.GetPageState();
46 navigation.transition_type_ = entry.GetTransitionType();
47 navigation.has_post_data_ = entry.GetHasPostData();
48 navigation.post_id_ = entry.GetPostID()
68 SerializedNavigationEntry navigation; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
screencastView.css 35 .screencast-navigation {
42 .screencast-navigation button {
57 .screencast-navigation button:hover {
61 .screencast-navigation button:active {
65 .screencast-navigation button[disabled] {
69 .screencast-navigation button.back {
73 .screencast-navigation button.forward {
77 .screencast-navigation button.reload {
81 .screencast-navigation input {
89 .screencast-navigation input:focus
    [all...]
  /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...]
  /external/chromium_org/chrome/browser/resources/uber/
uber.css 11 #navigation {
14 /* This is a hack to prevent the navigation bar from occluding pointer events
26 #navigation.background {
30 #navigation.changing-content {
  /external/chromium_org/chrome/browser/sessions/
session_types_unittest.cc 36 sync_pb::TabNavigation* navigation = sync_data.add_navigation(); local
37 navigation->set_virtual_url("http://foo/" + base::IntToString(i));
38 navigation->set_referrer("referrer");
39 navigation->set_title("title");
40 navigation->set_page_transition(sync_pb::SyncEnums_PageTransition_TYPED);
104 sync_data.navigation(i).virtual_url());
106 sync_data.navigation(i).title());
base_session_service.h 91 // Creates a SessionCommand that represents a navigation.
95 const sessions::SerializedNavigationEntry& navigation);
122 sessions::SerializedNavigationEntry* navigation,
162 // Max number of navigation entries in each direction we'll persist.
base_session_service.cc 144 const sessions::SerializedNavigationEntry& navigation) {
152 navigation.WriteToPickle(max_state_size, &pickle);
217 sessions::SerializedNavigationEntry* navigation,
225 navigation->ReadFromPickle(&iterator);
  /external/chromium_org/chrome/browser/extensions/
extension_url_rewrite_browsertest.cc 59 // correspond to |url|, while the real URL of the navigation entry uses the
104 NavigationEntry* navigation = GetNavigationEntry(); local
105 EXPECT_EQ(bookmarks_url, navigation->GetVirtualURL().GetWithEmptyPath());
106 EXPECT_TRUE(navigation->GetURL().SchemeIs(extensions::kExtensionScheme));
  /external/chromium_org/chrome/browser/resources/local_ntp/
window_disposition_util.js 20 * Gets the desired navigation behavior from a event. This function works both
23 * @return {WindowOpenDisposition} The desired navigation behavior.
  /external/chromium_org/chrome/browser/sync/glue/
session_sync_test_helper.cc 107 sync_pb::TabNavigation* navigation = tab->add_navigation(); local
108 navigation->set_virtual_url(kVirtualUrl);
109 navigation->set_referrer(kReferrer);
110 navigation->set_title(kTitle);
111 navigation->set_page_transition(sync_pb::SyncEnums_PageTransition_TYPED);
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
nav_math_description.js 6 * @fileoverview A subclass of the navigation description container
18 * Class specialising navigation descriptions for mathematics.
command_store.js 192 category: 'navigation'},
197 category: 'navigation'},
201 category: 'navigation'},
205 category: 'navigation'},
209 category: 'navigation'},
213 category: 'navigation'},
216 category: 'navigation'},
219 category: 'navigation'},
225 category: 'navigation'},
230 category: 'navigation'},
    [all...]
  /frameworks/base/core/jni/
android_content_res_Configuration.cpp 37 jfieldID navigation; member in struct:android::__anon39234
53 out->navigation = env->GetIntField(clazz, gConfigurationClassInfo.navigation);
102 GET_FIELD_ID(gConfigurationClassInfo.navigation, clazz,
103 "navigation", "I");
  /external/chromium_org/chrome/browser/ui/webui/options/
browser_options_browsertest.js 29 expectFalse($('navigation').classList.contains('background'));
53 if ($('navigation').classList.contains('background')) {
62 assertTrue($('navigation').classList.contains('background'));
  /frameworks/base/core/java/android/content/res/
Configuration.java 358 /** Constant for {@link #navigation}: a value indicating that no value has been set. */
360 /** Constant for {@link #navigation}, value corresponding to the
364 /** Constant for {@link #navigation}, value corresponding to the
368 /** Constant for {@link #navigation}, value corresponding to the
372 /** Constant for {@link #navigation}, value corresponding to the
378 * The kind of navigation method available on the device.
382 public int navigation; field in class:Configuration
396 * A flag indicating whether any 5-way or DPAD navigation available.
397 * This will be set on a device with a mechanism to hide the navigation
587 /** @hide Native-specific bit mask for NAVIGATION config; DO NOT USE UNLESS YOU ARE SURE. *
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/api/webNavigation/basic/
background.js 25 // Reset the navigation state on startup. We only want to collect data within a
  /external/chromium_org/third_party/WebKit/Source/core/timing/
Performance.idl 32 // See: http://www.w3.org/TR/navigation-timing/
36 readonly attribute PerformanceNavigation navigation;
Performance.h 73 PerformanceNavigation* navigation() const;
  /external/chromium_org/third_party/WebKit/Source/web/
WebPerformance.cpp 55 switch (m_private->navigation()->type()) {
91 return m_private->navigation()->redirectCount();
  /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 */

Completed in 745 milliseconds

1 2 3 4 5 6 7 8 9