Searched refs:tab (Results 351 - 375 of 721) sorted by relevance

<<11121314151617181920>>

/external/libpng/
H A Ddepcomp99 sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile"
108 tab=' '
547 s/\(.*\)/'"$tab"'\1 \\/p
551 s/.*/'"$tab"'/
607 sed "s|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile"
758 sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile"
759 echo "$tab" >> "$depfile"
/external/pcre/dist/
H A Ddepcomp99 sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile"
108 tab=' '
547 s/\(.*\)/'"$tab"'\1 \\/p
551 s/.*/'"$tab"'/
607 sed "s|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile"
758 sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile"
759 echo "$tab" >> "$depfile"
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/decoder/
H A Ddetokenize.c140 const uint8_t* tab; local
145 for (tab = kCat3456[cat]; *tab; ++tab)
147 v += v + VP8GetBit(br, *tab);
/external/chromium_org/tools/perf/measurements/
H A Dsmooth_gesture_util_unittest.py126 def WillRunActions(self, _page, tab):
129 tab.browser.platform.tracing_controller.Start(
132 def DidRunActions(self, _page, tab):
134 tab.browser.platform.tracing_controller.Stop()))
135 tab_ids.append(tab.id)
H A Dsmoothness_unittest.py69 tab = FakeTab()
71 measurement.WillStartBrowser(tab.browser.platform)
72 measurement.WillNavigateToPage(test_page, tab)
73 measurement.WillRunActions(test_page, tab)
81 tracing_controller = tab.browser.platform.tracing_controller
/external/chromium_org/tools/telemetry/telemetry/core/
H A Dbrowser_unittest.py48 tab = self._browser.tabs[0]
49 tab.Navigate(self.UrlOfUnittestFile('blank.html'))
56 tab = self._browser.tabs[0]
57 tab.Navigate(self.UrlOfUnittestFile('blank.html'))
58 tab.Close()
63 # Should be only one tab at this stage, so that must be the foreground tab
67 # New tab shouls be foreground tab
69 # Make sure that activating the background tab make
[all...]
H A Dutil.py108 def CloseConnections(tab):
111 tab.ExecuteJavaScript("""window.chrome && chrome.benchmarking &&
/external/libvpx/libvpx/vp8/decoder/
H A Ddetokenize.c140 const uint8_t* tab; local
145 for (tab = kCat3456[cat]; *tab; ++tab)
147 v += v + VP8GetBit(br, *tab);
/external/chromium_org/chrome/browser/android/
H A Drecently_closed_tabs_bridge.cc27 const TabRestoreService::Tab* tab = local
30 tab->navigations.at(tab->current_navigation_index);
97 // Find and remove the corresponding tab entry from TabRestoreService.
98 // We take ownership of the returned tab.
/external/chromium_org/chrome/browser/ui/cocoa/tabs/
H A Dtab_strip_controller.h31 // The interface for the tab strip controller's delegate.
50 // A class that handles managing the tab strip in a browser window. It uses
56 // http://www.chromium.org/developers/design-documents/tab-strip-mac
75 // Delegate that is informed about tab state changes.
78 // YES if the new tab button is currently displaying the hover image (if the
83 // for the toolbar and associated tab contents) given an index. Call
91 // An array of TabControllers which manage the actual tab views. See note
99 // These values are only used during a drag, and override tab positioning.
102 NSRect droppedTabFrame_; // Initial frame of a dropped tab, for animation.
108 // If YES, do not show the new tab butto
[all...]
/external/chromium_org/chrome/browser/ui/views/location_bar/
H A Dstar_view_browsertest.cc96 // First switch to a new tab and back, to also test a scenario where we
105 content::WebContents* tab = local
107 content::TitleWatcher title_watcher(tab, expected_title);
116 HWND hwnd = tab->GetNativeView()->GetHost()->GetAcceleratedWidget();
/external/chromium_org/chrome/browser/ui/views/tabs/
H A Dmedia_indicator_button.cc7 #include "chrome/browser/ui/views/tabs/tab.h"
157 Tab* const tab = static_cast<Tab*>(parent()); local
158 tab->controller()->ToggleTabAudioMute(tab);
/external/chromium_org/tools/perf/metrics/
H A Dpower.py69 def Start(self, _, tab):
70 self._browser = tab.browser
83 def Stop(self, _, tab):
/external/chromium_org/tools/perf/profile_creators/
H A Dextensions_profile_creator.py204 def ValidateAndMeasurePage(self, _, tab, results):
210 # we are left with one open tab, wait for that to finish loading.
220 # Phase 2: Wait for tab to finish loading.
221 for i in xrange(len(tab.browser.tabs)):
222 t = tab.browser.tabs[i]
/external/chromium_org/chrome/browser/apps/
H A Dapp_url_redirector_browsertest.cc29 // - navigates the current tab to the HTML page |lancher_page| (ditto);
39 // that it didn't, and that the navigation has opened in a new tab instead.
45 // - opens the page |xhr_opening_page| in the current tab;
48 // - waits until |xhr_opening_page| gets a response back and changes the tab's
73 // that it didn't, and that the navigation has opened in a new tab instead.
90 // - navigates the current tab to the HTML page |matching_target_page| with
161 content::WebContents* tab = local
163 content::TitleWatcher title_watcher(tab, success_title);
188 content::WebContents* tab = local
190 content::TitleWatcher title_watcher(tab, success_titl
294 content::WebContents* tab = local
[all...]
/external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
H A Dchrome_browser_backend.py283 tab = self.tab_list_backend.Get(i, None)
284 if tab:
285 success = tab.EvaluateJavaScript(
286 "console.time('" + tab.id + "');" +
287 "console.timeEnd('" + tab.id + "');" +
291 tab_ids_list.append(tab.id)
/external/chromium_org/chrome/browser/extensions/api/sessions/
H A Dsessions_api.h37 scoped_ptr<api::tabs::Tab> CreateTabModel(const TabRestoreService::Tab& tab,
55 const SessionTab& tab,
/external/chromium_org/chrome/browser/safe_browsing/
H A Dclient_side_detection_host.h35 // The caller keeps ownership of the tab object and is responsible for
37 static ClientSideDetectionHost* Create(content::WebContents* tab);
67 explicit ClientSideDetectionHost(content::WebContents* tab);
175 // Unique page ID of the most recent unsafe site that was loaded in this tab
/external/chromium_org/chrome/browser/ui/extensions/
H A Dapplication_launch.cc213 // There's no current tab in this browser window, so add a new one.
250 // Pinning may have moved the tab.
271 // set the app to open as a regular or pinned tab, what should happen?
272 // Today we open the tab, but stay in full screen mode. Should we leave
292 WebContents* tab = NULL; local
321 tab = OpenApplicationWindow(params);
324 tab = OpenApplicationTab(params);
331 return tab;
361 // is to launch as a regular tab.
384 // is set, launch as a regular tab
427 WebContents* tab = OpenApplicationWindow(launch_params); local
[all...]
/external/chromium_org/chrome/browser/ui/fullscreen/
H A Dfullscreen_controller.cc101 // During tab capture of fullscreen-within-tab views, the browser window
116 // For now, avoid breaking when initiating full screen tab mode while in
118 // TODO(robertshield): Find a way to reconcile tab-initiated fullscreen
146 // fullscreen to tab fullscreen will need to show different content.
175 // If currently there is a tab in "tab fullscreen" mode and fullscreen
178 // case, all we have to do is notifying the tab that it has exited "tab
235 // (i.e. not the user), or if we're in tab fullscree
514 WebContents* tab = fullscreened_tab_ ? fullscreened_tab_ : mouse_lock_tab_; local
663 SetFullscreenedTab(WebContents* tab) argument
668 SetMouseLockTab(WebContents* tab) argument
[all...]
H A Dfullscreen_controller.h26 // There are two different kinds of fullscreen mode - "tab fullscreen" and
30 // into fullscreen mode from the UI. The difference is that tab fullscreen has
31 // implications for how the contents of the tab render (eg: a video element may
32 // grow to consume the whole tab), whereas browser fullscreen mode doesn't.
33 // Therefore if a user forces an exit from tab fullscreen, we need to notify the
34 // tab so it can stop rendering in its fullscreen mode.
41 // All fullscreen widgets are displayed within the tab contents area, and
42 // FullscreenController will expand the browser window so that the tab contents
43 // area fills the entire screen. However, special behavior applies when a tab is
49 // when a user has switched to another tab)
[all...]
/external/chromium_org/chrome/browser/ui/toolbar/
H A Drecent_tabs_builder_test_helper.cc23 const char kTabTitleFormat[] = "session=%d;window=%d;tab=%d";
293 sync_pb::SessionTab* tab = tab_base->mutable_tab(); local
294 tab->set_window_id(window_id);
295 tab->set_tab_id(tab_id);
296 tab->set_tab_visual_index(1);
297 tab->set_current_navigation_index(0);
298 tab->set_pinned(true);
299 tab->set_extension_app_id("app_id");
300 sync_pb::TabNavigation* navigation = tab->add_navigation();
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/imageinfo/
H A Dinfo.js43 chrome.tabs.getCurrent(function (tab) {
45 chrome.windows.update(tab.windowId, {
/external/clang/test/CodeGen/
H A Dexprs.c112 struct S *tab[];
116 foo(((void)1, x->c).tab[0]);
/external/e2fsprogs/lib/ss/
H A DMakefile.in70 MKCMDSOBJS= mk_cmds.o utils.o options.o ct.tab.o cmd_tbl.lex.o
74 MKCMDSCSRCS= mk_cmds.c utils.c options.c ct.tab.c cmd_tbl.lex.c
108 ct.tab.c ct.tab.h: ct.y
109 $(RM) -f ct.tab.* y.*
111 $(MV) -f y.tab.c ct.tab.c
112 $(MV) -f y.tab.h ct.tab.h

Completed in 1163 milliseconds

<<11121314151617181920>>