Searched refs:tabs (Results 1 - 25 of 144) sorted by relevance

123456

/external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome/
H A Dtab_list_backend_unittest.py11 @decorators.Enabled('has tabs')
13 tabs = set(tab.id for tab in self.tabs)
15 new_tab_id = self.tabs.New().id
16 self.assertNotIn(new_tab_id, tabs)
17 tabs.add(new_tab_id)
18 new_tabs = set(tab.id for tab in self.tabs)
19 self.assertEqual(tabs, new_tabs)
21 @decorators.Enabled('has tabs')
23 # Ensure that there are two tabs
[all...]
/external/ImageMagick/www/api/MagickCore/
H A Dtabs.css0 /* tabs styles, based on http://www.alistapart.com/articles/slidingdoors */
3 DIV.tabs
11 DIV.tabs UL
18 DIV.tabs LI, DIV.tabs FORM
25 DIV.tabs FORM
30 DIV.tabs A
40 DIV.tabs A:hover
45 DIV.tabs A:link, DIV.tabs
[all...]
/external/ImageMagick/www/api/MagickWand/
H A Dtabs.css0 /* tabs styles, based on http://www.alistapart.com/articles/slidingdoors */
3 DIV.tabs
11 DIV.tabs UL
18 DIV.tabs LI, DIV.tabs FORM
25 DIV.tabs FORM
30 DIV.tabs A
40 DIV.tabs A:hover
45 DIV.tabs A:link, DIV.tabs
[all...]
/external/chromium-trace/catapult/telemetry/telemetry/testing/
H A Dtab_test_case.py19 while len(self._browser.tabs) < 1:
20 self._browser.tabs.New()
21 while len(self._browser.tabs) > 1:
22 self._browser.tabs[0].Close()
23 self._tab = self._browser.tabs[0]
42 if not self._browser.tabs:
45 self._tab = self._browser.tabs[0]
48 def tabs(self): member in class:TabTestCase
49 return self._browser.tabs
/external/chromium-trace/catapult/telemetry/telemetry/page/
H A Dcache_temperature.py33 self.browser.tabs[0].ExecuteJavaScript(
36 self.browser.tabs[0].ExecuteJavaScript(
45 self.browser.tabs[0].ExecuteJavaScript(
48 self.browser.tabs[0].ExecuteJavaScript(
63 tab = browser.tabs[0]
67 any_tab = browser.tabs[0]
80 tab = browser.tabs[0]
86 tab = browser.tabs[0]
H A Dlegacy_page_test.py73 """Returns True if the test opens multiple tabs.
78 (e.g., how many tabs are open, etc.) is unknown after crashes.
90 """When set to True, all tabs are closed before running the test for the
148 create a new tab for every page, return browser.tabs.New()."""
150 return browser.tabs[0]
155 browser.tabs.New()
158 browser.tabs[0].WaitForDocumentReadyStateToBeComplete()
159 return browser.tabs[0]
/external/toybox/toys/posix/
H A Dexpand.c1 /* expand.c - expands tabs to space
15 Expand tabs to spaces according to tabstops.
29 struct arg_list *tabs;
93 struct arg_list *tabs; local
96 for (tabs = TT.tabs; tabs; tabs = tabs->next) {
97 char *s = tabs
[all...]
/external/autotest/client/site_tests/graphics_Stress/
H A Dgraphics_Stress.py59 tab = cr.browser.tabs[-1]
68 tabs = []
70 cr.browser.tabs[0].WaitForDocumentReadyStateToBeComplete()
75 tab = cr.browser.tabs[0]
81 tab = cr.browser.tabs.New()
88 tabs.append(tab)
89 return tabs
106 """ Open 50 tabs of WebGL SpiritBox, and let them run for a while. """
108 tabs = self.open_urls(cr, [WEBGL_SPIRITBOX_URL] * 50,
111 for tab in tabs
[all...]
/external/chromium-trace/catapult/telemetry/telemetry/internal/browser/
H A Dbrowser_info.py31 if len(self._browser.tabs) == 0 and self._browser.supports_tab_control:
32 self._browser.tabs.New()
33 tab = self._browser.tabs[0]
36 elif len(self._browser.tabs) > 0:
37 tab = self._browser.tabs[0]
H A Dbrowser_unittest.py33 self.assertEquals(1, len(self._browser.tabs))
36 assert self._browser.tabs[0].url
38 @decorators.Enabled('has tabs')
40 existing_tab = self._browser.tabs[0]
41 self.assertEquals(1, len(self._browser.tabs))
44 new_tab = self._browser.tabs.New()
45 self.assertEquals(2, len(self._browser.tabs))
50 self.assertEquals(1, len(self._browser.tabs))
54 self._browser.tabs[0].Navigate(self.UrlOfUnittestFile('blank.html'))
55 self._browser.tabs[
[all...]
/external/skia/src/core/
H A DSkStringUtils.cpp42 SkString tabs; local
44 tabs.append("\t");
52 result.append(tabs);
59 result.append(tabs);
/external/autotest/client/site_tests/power_LoadTest/extension/
H A Dtest.js46 chrome.tabs.update(cycle.id, {'url': url, 'selected': true});
67 if (task.type == 'window' && task.tabs) {
70 chrome.tabs.getSelected(win.id, function(tab) {
71 chrome.tabs.update(tab.id, {'url': task.tabs[0], 'selected': true});
72 for (var i = 1; i < task.tabs.length; i++) {
73 chrome.tabs.create({'windowId': win.id, url: task.tabs[i]});
81 chrome.tabs.getSelected(win.id, function(tab) {
/external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome_inspector/
H A Ddevtools_client_backend_unittest.py29 @decorators.Enabled('has tabs')
32 self._browser.tabs.New()
36 tabs1 = list(self._browser.tabs)
41 tabs2 = list(self._browser.tabs)
45 self._browser.tabs.New()
49 tabs3 = list(self._browser.tabs)
55 self._browser.tabs[1].Close()
59 tabs4 = list(self._browser.tabs)
H A Dinspector_memory_unittest.py11 @decorators.Enabled('has tabs')
15 self._tab = self._browser.tabs.New()
/external/autotest/client/site_tests/video_MultiplePlayback/
H A Dvideo_MultiplePlayback.py54 tab1 = browser.tabs.New()
62 tab2 = browser.tabs.New()
74 tab3 = browser.tabs.New()
/external/autotest/client/site_tests/audio_ActiveStreamStress/
H A Daudio_ActiveStreamStress.py17 _MAX_OPENED_TAB = 20 # Max number of tabs open and playing audio.
19 # close all except last 5 tabs.
20 _MAX_TABS_TO_OPEN = 10 # Max number of tabs can be opened in one iteration.
44 self.push_new_stream(self._cr.browser.tabs[0])
53 # a = random(10) tabs(streams) are created and
54 # b = random(a) tabs are closed. If the next iteration finds that,
55 # total number of opened tabs are more than _MAX_OPENED_TAB,
56 # test will close (total opened tabs - 5) tabs.
57 # This will balance number of opened tabs an
[all...]
/external/libvpx/libvpx/tools/
H A Dvpx-astyle.sh7 --indent-preprocessor --convert-tabs --indent-labels \
/external/selinux/policycoreutils/gui/
H A Dsystem-config-selinux.py82 self.tabs = []
121 self.tabs.append(page)
130 self.tabs[self.notebook.get_current_page()].deleteDialog()
133 self.tabs[self.notebook.get_current_page()].addDialog()
136 self.tabs[self.notebook.get_current_page()].propertiesDialog()
139 self.tabs[self.notebook.get_current_page()].on_local_clicked(button)
158 self.use_menus(self.tabs[rows[0][0]].use_menus())
161 self.use_menus(self.tabs[0].use_menus())
175 for page in self.tabs:
/external/autotest/client/site_tests/platform_ChromeCgroups/
H A Dplatform_ChromeCgroups.py47 # Open up two tabs in the same window. One should be in the foreground
49 tab1 = cr.browser.tabs[0]
52 tab2 = cr.browser.tabs.New()
/external/autotest/client/site_tests/platform_MemoryPressure/
H A Dplatform_MemoryPressure.py23 # Open tabs until a tab discard notification arrives, or a time limit
28 tab = cr.browser.tabs.New()
36 if n_tabs > len(cr.browser.tabs):
40 logging.info("tab discard after %d tabs", n_tabs)
42 msg = "FAIL: no tab discard after opening %d tabs in %ds" % \
/external/autotest/client/site_tests/power_FlashVideoSuspend/
H A Dpower_FlashVideoSuspend.py23 tab = cr.browser.tabs[0]
26 self.suspend_with_youtube(cr.browser.tabs[0], video_url)
/external/autotest/client/site_tests/video_ChromeHWDecodeUsed/
H A Dvideo_ChromeHWDecodeUsed.py32 tab1 = cr.browser.tabs[0]
42 tab = cr.browser.tabs[0]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
H A DComponentResultsView.java91 ConfigTab[] tabs; field in class:ComponentResultsView
155 // Create tabs
172 this.tabs = new ConfigTab[length];
174 this.tabs[i] = new ConfigTab(configNames[i], configDescriptions[i]);
176 for (int i=0; i<this.tabs.length; i++) {
178 item.setText (this.tabs[i].getTabText ());
179 item.setControl (this.tabs[i].createTabFolderPage(this.componentResultsElement, this.tabFolder, this.fullLineSelection.isChecked()));
180 item.setData (this.tabs[i]);
191 int length = this.tabs==null ? 0 : this.tabs
[all...]
/external/autotest/client/common_lib/cros/
H A Dchrome.py205 tabs = [] # Wrapper for pass by reference.
207 lambda: tabs.append(cr.browser.tabs.New())):
210 tabs[0].Close()
/external/autotest/client/cros/video/
H A Dhistogram_verifier.py27 tab = cr.browser.tabs.New()

Completed in 738 milliseconds

123456