Searched defs:tab (Results 1 - 25 of 169) sorted by relevance

1234567

/external/chromium/chrome/browser/renderer_host/
H A Dweb_cache_manager_browsertest.cc22 // user navigates to another tab and back, the browser doesn't crash.
34 TabContents* tab = browser()->GetTabContentsAt(0); local
35 ASSERT_TRUE(tab != NULL);
36 base::KillProcess(tab->GetRenderProcessHost()->GetHandle(),
/external/chromium/chrome/browser/extensions/
H A Dextension_incognito_apitest.cc35 TabContents* tab = otr_browser->GetSelectedTabContents(); local
40 tab->render_view_host(), L"",
73 TabContents* tab = otr_browser->GetSelectedTabContents(); local
78 tab->render_view_host(), L"",
H A Dextension_override_apitest.cc49 TabContents* tab = browser()->GetSelectedTabContents(); local
50 ASSERT_TRUE(tab->controller().GetActiveEntry());
51 EXPECT_TRUE(tab->controller().GetActiveEntry()->url().
61 // Navigate to the new tab page. The overridden new tab page
64 TabContents* tab = browser()->GetSelectedTabContents(); local
65 ASSERT_TRUE(tab->controller().GetActiveEntry());
66 EXPECT_TRUE(tab->controller().GetActiveEntry()->url().
85 // Navigate an incognito tab to the new tab pag
92 TabContents* tab = otr_browser->GetSelectedTabContents(); local
[all...]
H A Dbrowser_action_apitest.cc77 TabContents* tab = browser()->GetSelectedTabContents(); local
80 tab->render_view_host(), L"",
135 // Open a new tab, the title should go back.
139 // Go back to first tab, changed title should reappear.
143 // Reload that tab, default title should come back.
212 // The call to setPopup in background.html set a tab id, so the
213 // current tab's setting should have changed, but the default setting
235 // The call to setPopup in change_popup.html did not use a tab id,
236 // so the default setting should have changed as well as the current tab.
274 << "a specific tab i
[all...]
/external/chromium/chrome/browser/
H A Domnibox_search_hint.h25 explicit OmniboxSearchHint(TabContents* tab);
37 TabContents* tab() { return tab_; } function in class:OmniboxSearchHint
51 // The tab we are associated with.
/external/chromium/chrome/browser/tabs/
H A Dpinned_tab_test_utils.cc11 std::string TabToString(const Tab& tab) { argument
12 return tab.url.spec() + ":" + (tab.is_app ? "app" : "") + ":" +
13 (tab.is_pinned ? "pinned" : "") + ":" + tab.app_id;
/external/chromium/chrome/browser/ui/webui/options/
H A Doptions_ui_uitest.cc28 void AssertIsOptionsPage(TabProxy* tab) { argument
30 ASSERT_TRUE(tab->GetTabTitle(&title));
32 // The only guarantee we can make about the title of a settings tab is that
43 scoped_refptr<TabProxy> tab = browser->GetActiveTab(); local
44 ASSERT_TRUE(tab.get());
46 // Go to the options tab via URL.
48 AssertIsOptionsPage(tab);
60 // Bring up the options tab via command.
65 scoped_refptr<TabProxy> tab = browser->GetActiveTab(); local
66 ASSERT_TRUE(tab
84 scoped_refptr<TabProxy> tab = browser->GetActiveTab(); local
[all...]
/external/chromium/chrome/browser/ui/webui/
H A Dvalue_helper.cc11 const TabRestoreService::Tab& tab,
13 if (tab.navigations.empty())
17 tab.navigations.at(tab.current_navigation_index);
22 dictionary->SetString("type", "tab");
23 dictionary->SetDouble("timestamp", tab.timestamp.ToDoubleT());
10 TabToValue( const TabRestoreService::Tab& tab, DictionaryValue* dictionary) argument
H A Dbookmarks_ui_uitest.cc20 bool WaitForBookmarksUI(TabProxy* tab) { argument
21 return WaitUntilJavaScriptCondition(tab, L"",
33 scoped_refptr<TabProxy> tab = browser->GetActiveTab();
34 EXPECT_TRUE(tab.get());
35 if (!tab.get())
37 bool success = tab->NavigateToURL(GURL(chrome::kChromeUIBookmarksURL));
41 success = WaitForBookmarksUI(tab);
45 return tab;
48 void AssertIsBookmarksPage(TabProxy* tab) { argument
49 // tab
71 scoped_refptr<TabProxy> tab = browser->GetActiveTab(); local
96 scoped_refptr<TabProxy> tab = browser->GetActiveTab(); local
119 scoped_refptr<TabProxy> tab = browser->GetActiveTab(); local
152 scoped_refptr<TabProxy> tab = GetBookmarksUITab(); local
[all...]
H A Dnew_tab_ui_uitest.cc36 // Switch to the "new tab" tab, which should be any new tab after the
41 // Bring up a new tab page.
44 scoped_refptr<TabProxy> tab = window->GetActiveTab(); local
45 ASSERT_TRUE(tab.get());
49 ASSERT_TRUE(WaitUntilJavaScriptCondition(tab, L"",
62 // Bring up a new tab page.
65 scoped_refptr<TabProxy> tab = window->GetActiveTab(); local
66 ASSERT_TRUE(tab
93 scoped_refptr<TabProxy> tab = window->GetActiveTab(); local
128 scoped_refptr<TabProxy> tab = window->GetActiveTab(); local
147 scoped_refptr<TabProxy> tab = window->GetTab(0); local
[all...]
H A Dprint_preview_ui_uitest.cc26 void AssertIsPrintPage(TabProxy* tab) { argument
28 ASSERT_TRUE(tab->GetTabTitle(&title));
41 scoped_refptr<TabProxy> tab = browser->GetActiveTab(); local
42 ASSERT_TRUE(tab.get());
44 // Go to the print preview tab via URL.
46 AssertIsPrintPage(tab);
56 // Make sure there is 1 tab and print is enabled. Create print preview tab.
68 scoped_refptr<TabProxy> tab = browser->GetActiveTab(); local
69 ASSERT_TRUE(tab
[all...]
/external/clang/test/Sema/
H A Dwchar.c19 wchar_t tab[] = L"x"; local
/external/chromium/chrome/browser/ui/login/
H A Dlogin_prompt_win.cc58 TabContents* tab = GetTabContentsForLogin(); variable
59 if (tab)
60 tab->render_view_host()->set_ignore_input_events(false);
/external/chromium/chrome/browser/download/
H A Ddownload_request_infobar_delegate.cc14 TabContents* tab,
16 : ConfirmInfoBarDelegate(tab),
13 DownloadRequestInfoBarDelegate( TabContents* tab, DownloadRequestLimiter::TabDownloadState* host) argument
/external/chromium/chrome/browser/ui/gtk/
H A Dtab_contents_container_gtk.h33 // Make the specified tab visible.
34 void SetTab(TabContentsWrapper* tab);
35 TabContentsWrapper* tab() const { return tab_; } function in class:TabContentsContainerGtk
37 // Gets the tab contents currently being displayed (either |tab_contents_| or
44 // Remove the tab from the hierarchy.
45 void DetachTab(TabContentsWrapper* tab);
69 // Adds |tab| to the container and starts showing it.
72 // Stops showing |tab|.
73 void HideTab(TabContentsWrapper* tab);
78 // Handle focus traversal on the tab content
[all...]
/external/compiler-rt/lib/tsan/unit_tests/
H A Dtsan_sync_test.cc32 SyncTab tab; local
39 SyncVar *v = tab.GetAndLock(thr, pc, addr, true);
46 SyncVar *v = tab.GetAndRemove(thr, pc, addr);
58 SyncVar *v = tab.GetAndRemove(thr, pc, addr);
/external/openssl/crypto/bn/
H A Dbn_kron.c69 /* In 'tab', only odd-indexed entries are relevant:
71 * tab[BN_lsw(n) & 7]
75 static const int tab[8] = {0, 1, 0, -1, 0, -1, 0, 1}; local
124 ret = tab[BN_lsw(A) & 7];
164 ret = ret * tab[BN_lsw(B) & 7];
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/function/
H A Dtostring-1.js46 var tab = " "; variable
48 t1 = new TestFunction( "stub", "value", tab + "return value;" );
50 t2 = new TestFunction( "ToString", "object", tab+"return object + \"\";" );
52 t3 = new TestFunction( "Add", "a, b, c, d, e", tab +"var s = a + b + c + d + e;\n" +
53 tab + "return s;" );
57 t5 = new TestFunction( "anonymous", "", tab+"return \"hello!\";" );
H A Dtostring-2.js50 var tab = " "; variable
53 var equals = new TestFunction( "Equals", "a, b", tab+ "return a == b;" );
59 ( version() <= 120 ) ? tab +"return a == b;" : tab +"return a === b;" );
64 var doesntequal = new TestFunction( "DoesntEqual", "a, b", tab + "return a != b;" );
70 ( version() <= 120 ) ? tab +"return a != b;" : tab +"return a !== b;" );
75 var testor = new TestFunction( "TestOr", "a", tab+"if (a == null || a == void 0) {\n"+
76 tab +tab
[all...]
/external/chromium/chrome/browser/sync/glue/
H A Dforeign_session_tracker.cc51 const SessionTab** tab) {
52 DCHECK(tab);
55 *tab = NULL;
59 // We have no record of this tab.
60 *tab = NULL;
63 *tab = (*foreign_tab_map_[tag])[tab_id];
101 scoped_ptr<SessionTab> tab; local
105 tab.reset(iter->second);
106 if (has_window) // This tab is linked to a window, so it's not an orphan.
107 unmapped_tabs_.erase(tab
48 LookupSessionTab( const std::string& tag, SessionID::id_type tab_id, const SessionTab** tab) argument
[all...]
H A Dsession_model_associator_unittest.cc25 scoped_ptr<SessionTab> tab(new SessionTab());
26 win.tabs.push_back(tab.release());
36 SessionTab tab; local
37 ASSERT_FALSE(SessionModelAssociator::IsValidSessionTab(tab));
42 tab.navigations.push_back(nav);
44 ASSERT_FALSE(SessionModelAssociator::IsValidSessionTab(tab));
49 tab.navigations.push_back(nav2);
50 // Once there's another navigation, the tab is valid.
51 ASSERT_TRUE(SessionModelAssociator::IsValidSessionTab(tab));
74 // be able to delete the session, window, and tab
94 SessionTab tab; local
115 SessionTab* tab = tracker.GetSessionTab(tag1, 0, false); local
[all...]
/external/e2fsprogs/lib/et/
H A Dcom_right.c75 struct error_table tab; member in struct:foobar
92 struct error_table *tab; local
102 et->table = tab = &f->tab;
103 tab->msgs = messages;
104 tab->n_msgs = num_errors;
105 tab->base = base;
/external/valgrind/main/VEX/priv/
H A Dhost_generic_regs.c77 void ppHRegUsage ( HRegUsage* tab )
82 for (i = 0; i < tab->n_used; i++) {
83 switch (tab->mode[i]) {
90 ppHReg(tab->hreg[i]);
101 void addHRegUse ( HRegUsage* tab, HRegMode mode, HReg reg ) argument
105 for (i = 0; i < tab->n_used; i++)
106 if (tab->hreg[i] == reg)
108 if (i == tab->n_used) {
110 vassert(tab->n_used < N_HREG_USAGE);
111 tab
[all...]
/external/chromium/chrome/browser/automation/
H A Dautomation_provider_json.cc79 TabContents** tab,
90 *tab = automation_util::GetTabContentsAt(browser_index, tab_index);
91 if (!*tab) {
92 *error = "Cannot locate tab from given indices";
101 TabContents** tab,
104 GetTabFromJSONArgs(args, tab, error);
77 GetTabFromJSONArgs( DictionaryValue* args, TabContents** tab, std::string* error) argument
98 GetBrowserAndTabFromJSONArgs( DictionaryValue* args, Browser** browser, TabContents** tab, std::string* error) argument
/external/chromium/chrome/browser/debugger/
H A Ddevtools_remote_service.cc87 ListValue* tab = new ListValue(); local
88 tab->Append(Value::CreateIntegerValue(
90 tab->Append(Value::CreateStringValue(entry->url().spec()));
91 data->Append(tab);

Completed in 8318 milliseconds

1234567