HomeSort by relevance Sort by last modified time
    Searched defs:tab (Results 51 - 75 of 186) sorted by null

1 23 4 5 6 7 8

  /external/chromium/chrome/browser/ui/webui/
foreign_session_handler.cc 28 // Invalid value, used to note that we don't have a tab or window number.
156 // Extract tab id.
161 LOG(ERROR) << "Failed to extract tab SessionID.";
170 const SessionTab* tab; local
171 if (!associator->GetForeignTab(session_string_value, tab_id, &tab)) {
172 LOG(ERROR) << "Failed to load foreign tab.";
175 SessionRestore::RestoreForeignSessionTab(web_ui_->GetProfile(), *tab);
197 const SessionTab& tab,
199 if (tab.navigations.empty())
201 int selected_index = tab.current_navigation_index
    [all...]
  /external/e2fsprogs/e2fsck/
crc32.c 87 const __u32 *tab = crc32table_le; local
90 # define DO_CRC(x) crc = tab[ ((crc >> 24) ^ (x)) & 255] ^ (crc<<8)
92 # define DO_CRC(x) crc = tab[ (crc ^ (x)) & 255 ] ^ (crc>>8)
187 const __u32 *tab = crc32table_be; local
190 # define DO_CRC(x) crc = tab[ ((crc >> 24) ^ (x)) & 255] ^ (crc<<8)
192 # define DO_CRC(x) crc = tab[ (crc ^ (x)) & 255 ] ^ (crc>>8)
  /external/oprofile/module/x86/
op_nmi.c 313 ctl_table * tab; local
322 if (!(tab = kmalloc(sizeof(ctl_table)*7, GFP_KERNEL)))
325 next->child = tab;
327 memset(tab, 0, sizeof(ctl_table)*7);
328 tab[0] = ((ctl_table) { 1, "enabled", &sysctl_parms.ctr[i].enabled, sizeof(int), 0644, NULL, lproc_dointvec, NULL, });
329 tab[1] = ((ctl_table) { 1, "event", &sysctl_parms.ctr[i].event, sizeof(int), 0644, NULL, lproc_dointvec, NULL, });
330 tab[2] = ((ctl_table) { 1, "count", &sysctl_parms.ctr[i].count, sizeof(int), 0644, NULL, lproc_dointvec, NULL, });
331 tab[3] = ((ctl_table) { 1, "unit_mask", &sysctl_parms.ctr[i].unit_mask, sizeof(int), 0644, NULL, lproc_dointvec, NULL, });
332 tab[4] = ((ctl_table) { 1, "kernel", &sysctl_parms.ctr[i].kernel, sizeof(int), 0644, NULL, lproc_dointvec, NULL, });
333 tab[5] = ((ctl_table) { 1, "user", &sysctl_parms.ctr[i].user, sizeof(int), 0644, NULL, lproc_dointvec, (…)
    [all...]
  /external/zlib/examples/
enough.c 109 struct tab { /* type for been here check */ struct
173 local struct tab *done; /* states already evaluated array */
551 else if (size > ((size_t)0 - 1) / sizeof(struct tab) ||
552 (done = calloc(size, sizeof(struct tab))) == NULL) {
  /frameworks/compile/linkloader/
main.cpp 114 static func_entry_t const tab[] = { local
127 static size_t const tab_size = sizeof(tab) / sizeof(func_entry_t);
134 if (name_len == tab[i].name_len && strcmp(name, tab[i].name) == 0) {
135 return tab[i].addr;
  /packages/apps/Browser/src/com/android/browser/
NavTabView.java 33 private Tab mTab;
110 protected void setWebView(Tab tab) {
111 mTab = tab;
113 Bitmap image = tab.getScreenshot();
116 if (tab != null) {
117 mImage.setContentDescription(tab.getTitle());
TabControl.java 32 // next Tab ID, starting at 1
39 void onThumbnailUpdated(Tab t);
45 private ArrayList<Tab> mTabs;
47 private ArrayList<Tab> mTabQueue;
61 mTabs = new ArrayList<Tab>(mMaxTabs);
62 mTabQueue = new ArrayList<Tab>(mMaxTabs);
70 * Return the current tab's main WebView. This will always return the main
71 * WebView for a given tab and not a subwindow.
72 * @return The current tab's WebView.
75 Tab t = getTab(mCurrentTab)
439 final Tab tab = tabMap.get(id); local
    [all...]
  /development/samples/HoneycombGallery/src/com/example/android/hcgallery/
TitlesFragment.java 237 public void onTabSelected(ActionBar.Tab tab, FragmentTransaction ft) {
240 titleFrag.populateTitles(tab.getPosition());
249 public void onTabUnselected(ActionBar.Tab tab, FragmentTransaction ft) {
252 public void onTabReselected(ActionBar.Tab tab, FragmentTransaction ft) {
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Strip.java 230 int tab = ws.indexOf('\t'); local
232 space>=0 || tab>=0 )
  /external/chromium/chrome/browser/automation/
automation_provider_win.cc 89 // some code (tab dragging, for instance) queries the actual cursor location
312 NavigationController* tab = tab_tracker_->GetResource(handle); local
314 tab->tab_contents()->GetNativeView());
352 NavigationController* tab = tab_tracker_->GetResource(tab_handle); local
353 if (!tab) {
358 TabContents* tab_contents = tab->tab_contents();
412 "AutomationProvider::OnBrowserMoved called with invalid tab handle.";
433 NavigationController* tab = tab_tracker_->GetResource(handle); local
434 tab->LoadURL(url, referrer, PageTransition::TYPED);
445 NavigationController* tab = tab_tracker_->GetResource(handle) local
461 NavigationController* tab = tab_tracker_->GetResource(handle); local
    [all...]
  /external/chromium/chrome/browser/
browser_focus_uitest.cc 142 TestInterstitialPage(TabContents* tab, bool new_navigation, const GURL& url)
143 : InterstitialPage(tab, new_navigation, url) {
157 // Exposing render_view_host() and tab() to be public; they are declared as
163 virtual TabContents* tab() { function in class:__anon2923::TestInterstitialPage
164 return InterstitialPage::tab();
175 Source<TabContents>(tab()),
214 // The focus should be on the Tab contents.
281 // Alternate focus for the tab.
290 // Activate the tab.
301 // Now come back to the tab and check the right view is focused
    [all...]
  /external/chromium/chrome/browser/debugger/
devtools_window.cc 161 // and the Inspect Element shortcut is pressed in the inspected tab.
249 int* tab) {
256 *tab = tab_index;
265 int tab; local
266 return FindInspectedBrowserAndTabIndex(&browser, &tab) ?
272 int tab; local
273 if (!FindInspectedBrowserAndTabIndex(&browser, &tab))
  /external/chromium/chrome/browser/extensions/
extension_browsertests_misc.cc 81 // Tests that we can load extension pages into the tab area and they can call
336 // sniff the type and display the subscribe page in another tab.
366 bool ValidatePageElement(TabContents* tab,
374 tab->render_view_host(),
406 TabContents* tab = browser->GetSelectedTabContents(); local
407 ASSERT_TRUE(ValidatePageElement(tab,
411 ASSERT_TRUE(ValidatePageElement(tab,
415 ASSERT_TRUE(ValidatePageElement(tab,
419 ASSERT_TRUE(ValidatePageElement(tab,
623 // Now the active tab in last active window should be the new tab
713 TabContents* tab = browser()->GetSelectedTabContents(); local
778 TabContents* tab = browser()->GetSelectedTabContents(); local
    [all...]
extension_web_ui.cc 351 TabContents* tab = (*iterator)->tab_contents(); local
352 if (tab->profile() != profile)
355 GURL url = tab->GetURL();
361 tab->controller().LoadURL(url, url, PageTransition::RELOAD);
  /external/chromium/chrome/browser/instant/
instant_browsertest.cc 97 TabContentsWrapper* tab = use_current ? local
99 ASSERT_TRUE(tab);
100 preview_ = tab->tab_contents();
297 void WaitForMessageToBeProcessedByRenderer(TabContentsWrapper* tab) {
299 CheckBoolValueFromJavascript(true, "true", tab->tab_contents()));
544 // When the response comes back that the page doesn't support instant the tab
594 // When the response comes back that the page doesn't support instant the tab
641 // When instant sees the 403, it should close the tab.
647 // Try loading another url on the server. Instant shouldn't create a new tab
    [all...]
  /external/chromium/chrome/browser/ssl/
ssl_browser_tests.cc 36 void CheckAuthenticatedState(TabContents* tab,
38 NavigationEntry* entry = tab->controller().GetActiveEntry();
48 void CheckUnauthenticatedState(TabContents* tab) {
49 NavigationEntry* entry = tab->controller().GetActiveEntry();
58 void CheckAuthenticationBrokenState(TabContents* tab,
62 NavigationEntry* entry = tab->controller().GetActiveEntry();
76 void CheckWorkerLoadResult(TabContents* tab, bool expectLoaded) {
87 tab->render_view_host(), std::wstring(),
102 tab->render_view_host(), std::wstring(),
108 void ProceedThroughInterstitial(TabContents* tab) {
247 TabContents* tab = browser()->GetSelectedTabContents(); local
277 TabContents* tab = browser()->GetSelectedTabContents(); local
320 TabContents* tab = browser()->GetSelectedTabContents(); local
347 TabContents* tab = browser()->GetSelectedTabContents(); local
374 TabContents* tab = browser()->GetSelectedTabContents(); local
478 TabContents* tab = browser()->GetSelectedTabContents(); local
520 TabContents* tab = browser()->GetSelectedTabContents(); local
625 TabContents* tab = browser()->GetSelectedTabContents(); local
651 TabContents* tab = browser()->GetSelectedTabContents(); local
674 TabContents* tab = browser()->GetSelectedTabContents(); local
704 TabContents* tab = browser()->GetSelectedTabContents(); local
774 TabContents* tab = browser()->GetSelectedTabContents(); local
795 TabContents* tab = browser()->GetSelectedTabContents(); local
811 TabContents* tab = browser()->GetSelectedTabContents(); local
828 TabContents* tab = browser()->GetSelectedTabContents(); local
891 TabContents* tab = browser()->GetSelectedTabContents(); local
965 TabContents* tab = browser()->GetSelectedTabContents(); local
1009 TabContents* tab = browser()->GetSelectedTabContents(); local
1060 TabContents* tab = browser()->GetSelectedTabContents(); local
1076 TabContents* tab = browser()->GetSelectedTabContents(); local
    [all...]
  /external/chromium/chrome/browser/sync/
profile_sync_service_session_unittest.cc 230 ASSERT_EQ(2, iter->second.tab()->controller().entry_count());
231 ASSERT_EQ(GURL("http://foo/1"), iter->second.tab()->controller().
233 ASSERT_EQ(GURL("http://foo/2"), iter->second.tab()->controller().
236 ASSERT_EQ(2, iter->second.tab()->controller().entry_count());
237 ASSERT_EQ(GURL("http://bar/1"), iter->second.tab()->controller().
239 ASSERT_EQ(GURL("http://bar/2"), iter->second.tab()->controller().
272 sync_pb::SessionTab* tab = tab_specifics.mutable_tab(); local
273 tab->set_tab_visual_index(13);
274 tab->set_current_navigation_index(3);
275 tab->set_pinned(true)
    [all...]
  /external/chromium/chrome/browser/ui/find_bar/
find_bar_host_browsertest.cc 121 int FindInPageWchar(TabContentsWrapper* tab,
127 tab, WideToUTF16(std::wstring(search_str)),
141 TabContentsWrapper* tab = browser()->GetSelectedTabContentsWrapper(); local
142 EXPECT_EQ(18, FindInPageWchar(tab, L"g",
145 EXPECT_EQ(11, FindInPageWchar(tab, L"go",
148 EXPECT_EQ(04, FindInPageWchar(tab, L"goo",
151 EXPECT_EQ(03, FindInPageWchar(tab, L"goog",
154 EXPECT_EQ(02, FindInPageWchar(tab, L"googl",
157 EXPECT_EQ(01, FindInPageWchar(tab, L"google",
160 EXPECT_EQ(00, FindInPageWchar(tab, L"google!"
287 TabContentsWrapper* tab = browser()->GetSelectedTabContentsWrapper(); local
325 TabContentsWrapper* tab = browser()->GetSelectedTabContentsWrapper(); local
363 TabContentsWrapper* tab = browser()->GetSelectedTabContentsWrapper(); local
414 TabContentsWrapper* tab = browser()->GetSelectedTabContentsWrapper(); local
443 TabContentsWrapper* tab = browser()->GetSelectedTabContentsWrapper(); local
466 TabContentsWrapper* tab = browser()->GetSelectedTabContentsWrapper(); local
658 TabContentsWrapper* tab = browser()->GetSelectedTabContentsWrapper(); local
704 TabContentsWrapper* tab = browser()->GetSelectedTabContentsWrapper(); local
804 TabContentsWrapper* tab = browser()->GetSelectedTabContentsWrapper(); local
1080 TabContentsWrapper* tab = browser()->GetSelectedTabContentsWrapper(); local
    [all...]
  /external/chromium/chrome/browser/ui/touch/tabs/
touch_tab_strip.cc 108 BaseTab* tab = base_tab_at_tab_index(tab_data_index); local
110 tab->SetBounds(0, ideal_bounds(tab_data_index).y(), 0,
114 tab->SetBounds(last_tab->bounds().right(),
124 TouchTab* tab = GetTabAtTabDataIndex(i); local
125 if (!tab->closing() && !tab->dragging())
126 bounds_animator().AnimateViewTo(tab, ideal_bounds(i));
139 TouchTab* tab = GetTabAtTabDataIndex(i); local
140 if (!tab->closing()) {
142 if (tab->IsSelected())
225 TouchTab* tab = static_cast<TouchTab*>(GetTabAtLocal(point)); local
294 TouchTab* tab = GetTabAtTabDataIndex(i); local
    [all...]
  /external/chromium/chrome/browser/ui/views/tabs/
browser_tab_strip_controller.cc 37 TabContextMenuContents(BaseTab* tab,
42 controller->tabstrip_->GetModelIndexOfBaseTab(tab))),
43 tab_(tab),
112 // The tab we're showing a menu for.
160 BaseTab* tab) const {
161 int model_index = tabstrip_->GetModelIndexOfBaseTab(tab);
168 BaseTab* tab) const {
169 int model_index = tabstrip_->GetModelIndexOfBaseTab(tab);
176 BaseTab* tab) {
177 int model_index = tabstrip_->GetModelIndexOfBaseTab(tab);
252 BaseTab* tab = tabstrip_->base_tab_at_tab_index(tab_index); local
    [all...]
  /external/opencv/cv/src/
cvthresh.cpp 49 uchar tab[256]; local
55 tab[i] = 0;
57 tab[i] = maxval;
61 tab[i] = maxval;
63 tab[i] = 0;
67 tab[i] = (uchar)i;
69 tab[i] = thresh;
73 tab[i] = 0;
75 tab[i] = (uchar)i;
79 tab[i] = (uchar)i
    [all...]
cvutils.cpp 208 int* idst = (int*)dst, *tab; local
224 tab = (int*)cvStackAlloc( tab_size*sizeof(tab[0]) );
230 tab[i + k] = k + left;
238 tab[i + k] = j + k + left;
248 tab[i + k] = j + k + left;
264 k = tab[j];
269 k = tab[j];
286 k = tab[j];
291 k = tab[j]
    [all...]
  /external/opencv/cvaux/src/
cvhmmobs.cpp 180 work_t *tab = tab_y + 2; local
185 k0 = ((work_t) is) * tab[-1];
201 buf[0] = DESCALE( is * tab[-2], PASS1_SHIFT );
211 s += temp1[k] * tab[k];
217 tab += m1;
226 s += temp0[k] * tab[k];
229 tab += m1;
244 work_t *tab = tab_x + 2; local
252 k0 = (work_t) (s * tab[-1]);
268 *obs++ = (float) DESCALE( s * tab[-2], PASS2_SHIFT )
377 work_t *tab = tab_y + 2; local
441 work_t *tab = tab_x + 2; local
    [all...]
  /external/oprofile/module/ia64/
op_pmu.c 584 ctl_table * tab; local
592 if (!(tab = kmalloc(sizeof(ctl_table)*7, GFP_KERNEL)))
595 next->child = tab;
597 memset(tab, 0, sizeof(ctl_table)*7);
598 tab[0] = ((ctl_table) { 1, "enabled", &sysctl_parms.ctr[i].enabled, sizeof(int), 0600, NULL, lproc_dointvec, NULL, });
599 tab[1] = ((ctl_table) { 1, "event", &sysctl_parms.ctr[i].event, sizeof(int), 0600, NULL, lproc_dointvec, NULL, });
600 tab[2] = ((ctl_table) { 1, "count", &sysctl_parms.ctr[i].count, sizeof(int), 0600, NULL, lproc_dointvec, NULL, });
601 tab[3] = ((ctl_table) { 1, "unit_mask", &sysctl_parms.ctr[i].unit_mask, sizeof(int), 0600, NULL, lproc_dointvec, NULL, });
602 tab[4] = ((ctl_table) { 1, "kernel", &sysctl_parms.ctr[i].kernel, sizeof(int), 0600, NULL, lproc_dointvec, NULL, });
603 tab[5] = ((ctl_table) { 1, "user", &sysctl_parms.ctr[i].user, sizeof(int), 0600, NULL, lproc_dointvec, (…)
    [all...]
  /external/skia/src/utils/
SkDumpCanvas.cpp 421 SkString msg, tab; local
425 tab.append("\t");
427 msg.printf("%s%s", tab.c_str(), str);

Completed in 1917 milliseconds

1 23 4 5 6 7 8