/external/chromium/chrome/browser/ui/views/tabs/ |
D | tab.cc | 63 Tab::TabImage Tab::tab_alpha_ = {0}; 64 Tab::TabImage Tab::tab_active_ = {0}; 65 Tab::TabImage Tab::tab_inactive_ = {0}; 93 const char Tab::kViewClassName[] = "browser/tabs/Tab"; 98 Tab::Tab(TabController* controller) in Tab() function in Tab 106 Tab::~Tab() { in ~Tab() 109 void Tab::StartMiniTabTitleAnimation() { in StartMiniTabTitleAnimation() 132 void Tab::StopMiniTabTitleAnimation() { in StopMiniTabTitleAnimation() 138 gfx::Size Tab::GetMinimumUnselectedSize() { in GetMinimumUnselectedSize() 150 gfx::Size Tab::GetMinimumSelectedSize() { in GetMinimumSelectedSize() [all …]
|
D | tab_strip.cc | 121 current_unselected_width_(Tab::GetStandardSize().width()), in TabStrip() 122 current_selected_width_(Tab::GetStandardSize().width()), in TabStrip() 246 Tab* tab = GetTabAtModelIndex(model_index); in TabTitleChangedNotLoading() 261 Tab* tab = new Tab(NULL); in CreateTabForDragging() 273 Tab* active_tab = NULL; in PaintChildren() 274 std::vector<Tab*> tabs_dragging; in PaintChildren() 275 std::vector<Tab*> selected_tabs; in PaintChildren() 282 Tab* tab = GetTabAtTabDataIndex(i); in PaintChildren() 355 return gfx::Size(0, Tab::GetMinimumUnselectedSize().height()); in GetPreferredSize() 402 if (v && v != this && v->GetClassName() != Tab::kViewClassName) in GetEventHandlerForPoint() [all …]
|
D | tab.h | 27 class Tab : public BaseTab { 32 explicit Tab(TabController* controller); 33 virtual ~Tab(); 142 DISALLOW_COPY_AND_ASSIGN(Tab);
|
D | tab_strip.h | 18 class Tab; variable 150 Tab* GetTabAtTabDataIndex(int tab_data_index) const; 159 Tab* GetTabAtModelIndex(int model_index) const; 224 int GetAvailableWidthForTabs(Tab* last_tab) const; 228 bool IsPointInTab(Tab* tab, const gfx::Point& point_in_tabstrip_coords);
|
/external/chromium/chrome/browser/sessions/ |
D | tab_restore_service.h | 74 struct Tab : public Entry { struct 75 Tab(); 76 virtual ~Tab(); 109 std::vector<Tab> tabs; argument 198 void PopulateTab(Tab* tab, 226 void ScheduleCommandsForTab(const Tab& tab, int selected_index); 247 int GetSelectedNavigationIndexToPersist(const Tab& tab); 266 TabRestoreServiceDelegate* RestoreTab(const Tab& tab, 273 bool ValidateTab(Tab* tab);
|
D | tab_restore_service.cc | 143 std::vector<TabRestoreService::Tab>::iterator j = window->tabs.begin(); in RemoveEntryByID() 155 void RecordAppLaunch(Profile* profile, const TabRestoreService::Tab& tab) { in RecordAppLaunch() 168 TabRestoreService::Tab::Tab() in Tab() function in TabRestoreService::Tab 176 TabRestoreService::Tab::~Tab() { in ~Tab() 226 scoped_ptr<Tab> local_tab(new Tab()); in CreateHistoricalTab() 243 window->tabs.push_back(Tab()); in BrowserClosing() 262 AddEntry(new Tab(window->tabs[0]), true, true); in BrowserClosing() 338 Tab* tab = static_cast<Tab*>(entry); in RestoreEntryById() 351 const Tab& tab = window->tabs[tab_i]; in RestoreEntryById() 373 for (std::vector<Tab>::iterator tab_i = window->tabs.begin(); in RestoreEntryById() [all …]
|
D | tab_restore_service_browsertest.cc | 134 TabRestoreService::Tab* tab = static_cast<TabRestoreService::Tab*>(entry); in TEST_F() 156 tab = static_cast<TabRestoreService::Tab*>(entry); in TEST_F() 190 TabRestoreService::Tab* tab = static_cast<TabRestoreService::Tab*>(entry); in TEST_F() 215 TabRestoreService::Tab* tab = static_cast<TabRestoreService::Tab*>(entry); in TEST_F() 229 tab = static_cast<TabRestoreService::Tab*>(entry); in TEST_F() 259 const TabRestoreService::Tab* restored_tab = in TEST_F() 260 static_cast<const TabRestoreService::Tab*>(restored_entry); in TEST_F() 366 TabRestoreService::Tab* tab = static_cast<TabRestoreService::Tab*>(entry); in TEST_F() 407 TabRestoreService::Tab* tab = static_cast<TabRestoreService::Tab*>(entry); in TEST_F() 465 TabRestoreService::Tab* tab = static_cast<TabRestoreService::Tab*>(entry); in TEST_F() [all …]
|
D | session_restore_browsertest.cc | 143 std::vector<TabRestoreService::Tab>::const_iterator it = window->tabs.begin(); in IN_PROC_BROWSER_TEST_F() 145 const TabRestoreService::Tab& tab = *it; in IN_PROC_BROWSER_TEST_F() 178 const TabRestoreService::Tab* tab = in IN_PROC_BROWSER_TEST_F() 179 static_cast<TabRestoreService::Tab*>(service->entries().front()); in IN_PROC_BROWSER_TEST_F()
|
/external/chromium/chrome/browser/resources/gpu_internals/ |
D | tab_control.js | 36 var Tab = cr.ui.define('div'); 37 Tab.prototype = { class 48 cr.defineProperty(Tab, 'label', cr.PropertyKind.ATTR); 54 cr.defineProperty(Tab, 'selected', cr.PropertyKind.BOOL_ATTR); 144 if (!(tab instanceof Tab)) 247 Tab: Tab,
|
D | info_view.js | 17 var InfoView = cr.ui.define(gpu.Tab); 20 __proto__: gpu.Tab.prototype, 23 gpu.Tab.prototype.decorate.apply(this); class in gpu
|
D | profiling_view.js | 16 ProfilingView = cr.ui.define(gpu.Tab); 19 __proto__: gpu.Tab.prototype,
|
/external/chromium/chrome/browser/tabs/ |
D | pinned_tab_test_utils.cc | 7 typedef BrowserInit::LaunchWithProfile::Tab Tab; typedef 11 std::string TabToString(const Tab& tab) { in TabToString() 20 const std::vector<BrowserInit::LaunchWithProfile::Tab>& values) { in TabsToString()
|
D | pinned_tab_codec.cc | 20 typedef BrowserInit::LaunchWithProfile::Tab Tab; typedef 76 static bool DecodeTab(const DictionaryValue& value, Tab* tab) { in DecodeTab() 115 std::vector<Tab> PinnedTabCodec::ReadPinnedTabs(Profile* profile) { in ReadPinnedTabs() 116 std::vector<Tab> results; in ReadPinnedTabs() 129 Tab tab; in ReadPinnedTabs()
|
D | pinned_tab_test_utils.h | 21 const std::vector<BrowserInit::LaunchWithProfile::Tab>& values);
|
D | pinned_tab_codec.h | 33 static std::vector<BrowserInit::LaunchWithProfile::Tab> ReadPinnedTabs(
|
/external/chromium/chrome/browser/resources/shared/js/cr/ui/ |
D | tabs.js | 37 TAB: Tab, 166 var Tab = cr.ui.define('tab'); 167 Tab.prototype = { class 181 cr.defineProperty(Tab, 'selected', cr.PropertyKind.BOOL_ATTR); 216 Tab: Tab,
|
/external/chromium/chrome/browser/ui/ |
D | browser_init.h | 79 struct Tab { struct 80 Tab(); 81 ~Tab(); 127 const std::vector<Tab>& tabs); 171 std::vector<Tab>* tabs);
|
D | browser_init.cc | 436 std::vector<BrowserInit::LaunchWithProfile::Tab>* tabs) { in UrlsToTabs() 438 BrowserInit::LaunchWithProfile::Tab tab; in UrlsToTabs() 482 const std::vector<BrowserInit::LaunchWithProfile::Tab>& autolaunch_tabs) { in RecordAppLaunches() 613 BrowserInit::LaunchWithProfile::Tab::Tab() : is_app(false), is_pinned(true) {} in Tab() function in BrowserInit::LaunchWithProfile::Tab 615 BrowserInit::LaunchWithProfile::Tab::~Tab() {} in ~Tab() 912 std::vector<Tab> tabs = PinnedTabCodec::ReadPinnedTabs(profile_); in ProcessStartupURLs() 941 std::vector<Tab>* tabs) { in AddUniqueURLs() 952 BrowserInit::LaunchWithProfile::Tab tab; in AddUniqueURLs() 964 std::vector<Tab> tabs; in OpenURLsInBrowser() 972 const std::vector<Tab>& tabs) { in OpenTabsInBrowser()
|
/external/markdown/tests/markdown-test/ |
D | ordered-and-unordered-list.txt | 100 * Tab 101 * Tab 102 * Tab
|
/external/markdown/MarkdownTest/Tests_2004/ |
D | Ordered and unordered lists.text | 100 * Tab 101 * Tab 102 * Tab
|
/external/markdown/MarkdownTest/Tests_2007/ |
D | Ordered and unordered lists.text | 100 * Tab 101 * Tab 102 * Tab
|
/external/chromium/chrome/browser/ui/webui/ |
D | value_helper.h | 16 static bool TabToValue(const TabRestoreService::Tab& tab,
|
/external/chromium/chrome/common/extensions/docs/examples/api/tabs/pin/ |
D | README | 1 Demo Chrome Extension that uses the Tab Pinning API. Enables a new keyboard
|
/external/chromium/chrome/browser/ui/cocoa/ |
D | history_menu_bridge_unittest.mm | 92 MockTRS::Tab CreateSessionTab(const GURL& url, const string16& title) { 93 MockTRS::Tab tab; 215 MockTRS::Tab tab1 = CreateSessionTab(GURL("http://google.com"), 220 MockTRS::Tab tab2 = CreateSessionTab(GURL("http://apple.com"), 251 MockTRS::Tab tab1 = CreateSessionTab(GURL("http://google.com"), 266 MockTRS::Tab tab2 = CreateSessionTab(GURL("http://apple.com"),
|
D | history_menu_bridge.mm | 178 std::vector<TabRestoreService::Tab>& tabs = entry_win->tabs; 210 std::vector<TabRestoreService::Tab>::const_iterator it; 212 TabRestoreService::Tab tab = *it; 242 TabRestoreService::Tab* tab = 243 static_cast<TabRestoreService::Tab*>(entry); 402 const TabRestoreService::Tab& entry) { 416 // Tab navigations don't come with icons, so we always have to request them.
|