Searched defs:tab (Results 101 - 125 of 318) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/skia/tools/
H A Dskdiff_image.cpp279 // Posix says the format is: <filename><tab><date>
280 // It also states that if a filename contains <tab> or <newline>
283 // Svn diff --diff-cmd provides labels of the form: <filename><tab><revision>
293 // <filename><tab><date>
301 // If there is a <tab> after the first <non-white-space>, filename is
302 // [first <non-white-space>, the next run of <white-space> with an embedded <tab>).
316 const char* tab = strchr(baseLabelCstr, '\t'); local
317 if (NULL == tab) {
320 outputFile.set(baseLabelCstr, tab - baseLabelCstr);
/external/chromium_org/third_party/webrtc/examples/android/media_demo/src/org/webrtc/webrtcdemo/
H A DWebRTCDemo.java52 public void onTabSelected(Tab tab, FragmentTransaction ft) { argument
64 public void onTabUnselected(Tab tab, FragmentTransaction ft) { argument
71 public void onTabReselected(Tab tab, FragmentTransaction ft) { argument
72 // User selected the already selected tab. Do nothing.
133 Tab tab = actionBar.newTab()
137 actionBar.addTab(tab);
139 tab = actionBar.newTab()
143 actionBar.addTab(tab);
145 tab = actionBar.newTab()
149 actionBar.addTab(tab);
[all...]
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stackdepotbase.h48 atomic_uintptr_t tab[kTabSize]; // Hash table of Node's. member in class:__sanitizer::StackDepotBase
99 atomic_uintptr_t *p = &tab[h % kTabSize];
144 atomic_uintptr_t *p = &tab[idx];
/external/skia/tools/
H A Dskdiff_image.cpp279 // Posix says the format is: <filename><tab><date>
280 // It also states that if a filename contains <tab> or <newline>
283 // Svn diff --diff-cmd provides labels of the form: <filename><tab><revision>
293 // <filename><tab><date>
301 // If there is a <tab> after the first <non-white-space>, filename is
302 // [first <non-white-space>, the next run of <white-space> with an embedded <tab>).
316 const char* tab = strchr(baseLabelCstr, '\t'); local
317 if (NULL == tab) {
320 outputFile.set(baseLabelCstr, tab - baseLabelCstr);
/external/zlib/src/examples/
H A Denough.c112 struct tab { /* type for been here check */ struct
176 local struct tab *done; /* states already evaluated array */
554 else if (size > ((size_t)0 - 1) / sizeof(struct tab) ||
555 (done = calloc(size, sizeof(struct tab))) == NULL) {
/external/bison/src/
H A Dfiles.c63 If --output=dir/foo.tab.c was specified, DIR_PREFIX is `dir/',
64 ALL_BUT_EXT is `dir/foo.tab', and ALL_BUT_TAB_EXT is `dir/foo'.
67 ALL_BUT_EXT = `foo.tab' and ALL_BUT_TAB_EXT = `foo'.
184 `.tab' or `_tab' if present right before *EXT, or is NULL. *TAB
190 '/tmp/foo.tab.c' -> *BASE = 'foo.tab.c', *TAB = '.tab.c', *EXT =
195 'tab.c' -> *BASE = 'tab.c', *TAB = NULL, *EXT = '.c'
197 '.tab
204 file_name_split(const char *file_name, const char **base, const char **tab, const char **ext) argument
230 const char *base, *tab, *ext; local
[all...]
/external/chromium_org/apps/
H A Dcustom_launcher_page_contents.cc108 content::WebContents* tab,
110 app_delegate_->RunFileChooser(tab, params);
107 RunFileChooser( content::WebContents* tab, const content::FileChooserParams& params) argument
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DEmptyTabObserver.java15 public void onDestroyed(Tab tab) { } argument
18 public void onContentChanged(Tab tab) { } argument
21 public void onLoadUrl(Tab tab, String url, int loadType) { } argument
24 public void onFaviconUpdated(Tab tab) { } argument
27 public void onTitleUpdated(Tab tab) { } argument
30 public void onUrlUpdated(Tab tab) { } argument
33 public void onSSLStateUpdated(Tab tab) { } argument
36 public void onWebContentsSwapped(Tab tab, boolean didStartLoad, boolean didFinishLoad) { } argument
39 public void onContextMenuShown(Tab tab, ContextMenu menu) { } argument
45 public void onLoadStarted(Tab tab) { } argument
48 onLoadStopped(Tab tab) argument
51 onLoadProgressChanged(Tab tab, int progress) argument
54 onUpdateUrl(Tab tab, String url) argument
57 onToggleFullscreenMode(Tab tab, boolean enable) argument
60 onDidFailLoad(Tab tab, boolean isProvisionalLoad, boolean isMainFrame, int errorCode, String description, String failingUrl) argument
64 onDidStartProvisionalLoadForFrame(Tab tab, long frameId, long parentFrameId, boolean isMainFrame, String validatedUrl, boolean isErrorPage, boolean isIframeSrcdoc) argument
69 onDidNavigateMainFrame(Tab tab, String url, String baseUrl, boolean isNavigationToDifferentPage, boolean isFragmentNavigation, int statusCode) argument
[all...]
H A DForeignSessionHelper.java80 * Represents synced foreign tab.
116 ForeignSessionTab tab = new ForeignSessionTab(url, title, timestamp, sessionId);
117 window.tabs.add(tab);
182 * Opens the given foreign tab in a new tab.
183 * @param tab Tab to load the session into.
184 * @param session Session that the target tab belongs to.
185 * @param foreignTab Target tab to open.
187 * @return {@code True} iff the tab is successfully opened.
189 public boolean openForeignSessionTab(Tab tab, ForeignSessio argument
213 nativeOpenForeignSessionTab( long nativeForeignSessionHelper, Tab tab, String sessionTag, int tabId, int disposition) argument
[all...]
H A DShortcutHelper.java56 public ShortcutHelper(Context appContext, Tab tab) { argument
58 mTab = tab;
H A DTabObserver.java18 * @param tab The notifying {@link Tab}.
20 void onDestroyed(Tab tab); argument
23 * Called when the tab content changes (to/from native pages or swapping native WebContents).
24 * @param tab The notifying {@link Tab}.
26 void onContentChanged(Tab tab); argument
30 * @param tab The notifying {@link Tab}.
39 void onLoadUrl(Tab tab, String url, int loadType); argument
43 * @param tab The notifying {@link Tab}.
45 void onFaviconUpdated(Tab tab); argument
49 * @param tab Th
51 onTitleUpdated(Tab tab) argument
57 onUrlUpdated(Tab tab) argument
63 onSSLStateUpdated(Tab tab) argument
72 onWebContentsSwapped(Tab tab, boolean didStartLoad, boolean didFinishLoad) argument
79 onContextMenuShown(Tab tab, ContextMenu menu) argument
92 onLoadStarted(Tab tab) argument
98 onLoadStopped(Tab tab) argument
105 onLoadProgressChanged(Tab tab, int progress) argument
112 onUpdateUrl(Tab tab, String url) argument
119 onToggleFullscreenMode(Tab tab, boolean enable) argument
132 onDidFailLoad( Tab tab, boolean isProvisionalLoad, boolean isMainFrame, int errorCode, String description, String failingUrl) argument
147 onDidStartProvisionalLoadForFrame( Tab tab, long frameId, long parentFrameId, boolean isMainFrame, String validatedUrl, boolean isErrorPage, boolean isIframeSrcdoc) argument
163 onDidNavigateMainFrame(Tab tab, String url, String baseUrl, boolean isNavigationToDifferentPage, boolean isFragmentNavigation, int statusCode) argument
[all...]
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/banners/
H A DAppBannerManager.java72 * Constructs an AppBannerManager for the given tab.
73 * @param tab Tab that the AppBannerManager will be attached to.
75 public AppBannerManager(Tab tab) { argument
77 mTab = tab;
90 public void onWebContentsSwapped(Tab tab, boolean didStartLoad,
96 public void onContentChanged(Tab tab) {
101 public void onDestroyed(Tab tab) {
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/tabmodel/
H A DEmptyTabModel.java47 public boolean closeTab(Tab tab) { argument
72 public int indexOf(Tab tab) { argument
96 public boolean closeTab(Tab tab, boolean animate, boolean uponExit, boolean canUndo) { argument
123 public void addTab(Tab tab, int index, TabLaunchType type) { argument
H A DTabModel.java22 FROM_MENU_OR_OVERVIEW, // Opened from the options menu or the tab stack overview.
25 // relationship like FROM_LINK. FOREGROUND and BACKGROUND indicates whether the current tab
26 // should be automatically switched to the new tab or not.
37 FROM_CLOSE, // Selection of adjacent tab when the active tab is closed in foreground.
38 FROM_EXIT, // Selection of adjacent tab when the active tab is closed upon app exit.
39 FROM_NEW, // Selection of newly created tab (e.g. for a url intent or NTP).
40 FROM_USER // User-originated switch to existing tab or selection of main tab o
54 closeTab(Tab tab) argument
72 closeTab(Tab tab, boolean animate, boolean uponExit, boolean canUndo) argument
142 addTab(Tab tab, int index, TabLaunchType type) argument
[all...]
/external/chromium_org/chrome/browser/android/
H A Ddev_tools_manager_delegate_android.cc138 // The tab has been pushed out of memory, pull it back.
139 TabAndroid* tab = model->GetTabAt(index); variable
140 if (!tab)
143 if (!tab->LoadIfNeeded())
187 TabAndroid* tab = model->GetTabAt(i); local
188 if (tab && tab->GetAndroidId() == tab_id_) {
217 // If there are no tab models we must be running in ChromeShell.
289 TabAndroid* tab = TabAndroid::FromWebContents(web_contents);
290 if (!tab)
306 TabAndroid* tab = model->GetTabAt(i); local
[all...]
/external/chromium_org/chrome/browser/chromeos/input_method/
H A Dtextinput_test_helper.cc186 content::WebContents* tab) {
189 tab,
203 tab->GetRenderViewHost()->ForwardMouseEvent(mouse_event);
206 tab->GetRenderViewHost()->ForwardMouseEvent(mouse_event);
185 ClickElement(const std::string& id, content::WebContents* tab) argument
/external/chromium_org/chrome/browser/extensions/api/declarative_content/
H A Dchrome_content_rules_registry.cc56 content::WebContents* tab = local
58 // GetTabId() returns -1 for non-tab WebContents, which won't be
61 active_rules_.erase(ExtensionTabUtil::GetTabId(tab));
251 content::WebContents* tab; local
253 it->first, browser_context(), true, NULL, NULL, &tab, NULL)) {
255 << " still in active_rules_, but tab has been destroyed";
258 ContentAction::ApplyInfo apply_info = {browser_context(), tab};
/external/chromium_org/chrome/browser/extensions/api/extension_action/
H A Dbrowser_action_apitest.cc322 // Open a new tab, the title should go back.
326 // Go back to first tab, changed title should reappear.
330 // Reload that tab, default title should come back.
395 // The call to setPopup in background.html set a tab id, so the
396 // current tab's setting should have changed, but the default setting
418 // The call to setPopup in change_popup.html did not use a tab id,
419 // so the default setting should have changed as well as the current tab.
458 << "a specific tab id.";
537 // Navigate just to have a tab in this window, otherwise wonky things happen.
590 // Navigate just to have a tab i
717 WebContents* tab = local
[all...]
/external/chromium_org/chrome/browser/extensions/api/sessions/
H A Dsessions_apitest.cc70 sync_pb::SessionTab* tab = tab_base->mutable_tab(); local
71 tab->set_tab_id(tab_id);
72 tab->set_tab_visual_index(1);
73 tab->set_current_navigation_index(0);
74 tab->set_pinned(true);
75 tab->set_extension_app_id("app_id");
76 sync_pb::TabNavigation* navigation = tab->add_navigation();
/external/chromium_org/chrome/browser/extensions/api/web_navigation/
H A Dweb_navigation_apitest.cc344 WebContents* tab = browser()->tab_strip_model()->GetActiveWebContents(); local
345 content::WaitForLoadStop(tab);
412 WebContents* tab = browser()->tab_strip_model()->GetActiveWebContents(); local
413 content::WaitForLoadStop(tab);
425 // This corresponds to "Open link in new tab".
432 TestRenderViewContextMenu menu(tab->GetMainFrame(), params);
446 WebContents* tab = browser()->tab_strip_model()->GetActiveWebContents(); local
447 content::WaitForLoadStop(tab);
459 // There's a link on a.html. Middle-click on it to open it in a new tab.
466 tab
479 WebContents* tab = browser()->tab_strip_model()->GetActiveWebContents(); local
519 WebContents* tab = otr_browser->tab_strip_model()->GetActiveWebContents(); local
613 WebContents* tab = browser()->tab_strip_model()->GetActiveWebContents(); local
[all...]
/external/chromium_org/chrome/browser/extensions/api/webrtc_audio_private/
H A Dwebrtc_audio_private_browsertest.cc47 void WaitUntilAudioIsPlaying(WebContents* tab) { argument
49 // or more AudioOutputController objects for our tab.
52 tab->GetRenderViewHost()->GetAudioOutputControllers(
218 // This exercises the case where you have a tab with no active media
221 WebContents* tab = browser()->tab_strip_model()->GetActiveWebContents(); local
222 int tab_id = ExtensionTabUtil::GetTabId(tab);
241 // This exercises the case where you have a tab with no active media
244 WebContents* tab = browser()->tab_strip_model()->GetActiveWebContents(); local
245 int tab_id = ExtensionTabUtil::GetTabId(tab);
258 EXPECT_EQ(base::StringPrintf("No active stream for tab wit
276 WebContents* tab = browser()->tab_strip_model()->GetActiveWebContents(); local
397 WebContents* tab = browser()->tab_strip_model()->GetActiveWebContents(); local
[all...]
/external/chromium_org/chrome/browser/extensions/
H A Dextension_keybinding_apitest.cc109 WebContents* tab = browser()->tab_strip_model()->GetActiveWebContents(); local
110 ASSERT_TRUE(tab);
112 EXPECT_FALSE(IsGrantedForTab(extension, tab));
119 EXPECT_TRUE(IsGrantedForTab(extension, tab));
124 tab,
137 tab,
181 WebContents* tab = browser()->tab_strip_model()->GetActiveWebContents(); local
184 tab,
212 WebContents* tab = browser()->tab_strip_model()->GetActiveWebContents(); local
213 ASSERT_TRUE(tab);
285 WebContents* tab = browser()->tab_strip_model()->GetActiveWebContents(); local
331 WebContents* tab = browser()->tab_strip_model()->GetActiveWebContents(); local
387 WebContents* tab = browser()->tab_strip_model()->GetActiveWebContents(); local
[all...]
H A Dextension_view_host.cc221 WebContents* tab,
225 FileSelectHelper::RunFileChooser(tab, params);
220 RunFileChooser( WebContents* tab, const content::FileChooserParams& params) argument
H A Dsubscribe_page_action_browsertest.cc74 // sniff the type and display the subscribe page in another tab.
114 WebContents* tab = browser->tab_strip_model()->GetActiveWebContents(); local
116 tab, base::Bind(&content::FrameIsChildOfMainFrame));
118 tab->GetMainFrame(), kScriptFeedTitle, expected_feed_title));
/external/chromium_org/chrome/browser/
H A Dfile_select_helper.cc300 void FileSelectHelper::RunFileChooser(content::WebContents* tab, argument
302 Profile* profile = Profile::FromBrowserContext(tab->GetBrowserContext());
306 file_select_helper->RunFileChooser(tab->GetRenderViewHost(), tab, params);
310 void FileSelectHelper::EnumerateDirectory(content::WebContents* tab, argument
313 Profile* profile = Profile::FromBrowserContext(tab->GetBrowserContext());
318 request_id, tab->GetRenderViewHost(), path);

Completed in 535 milliseconds

1234567891011>>