/external/libvpx/libvpx/vp8/decoder/ |
detokenize.c | 140 const uint8_t* tab; local 145 for (tab = kCat3456[cat]; *tab; ++tab) 147 v += v + VP8GetBit(br, *tab);
|
/frameworks/rs/driver/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;
|
/cts/tests/uiautomator/test-apps/CtsUiAutomatorApp/src/com/android/cts/uiautomator/ |
Test4DetailFragment.java | 85 // tab. We can also use ActionBar.Tab#select() to do this if we have a 86 // reference to the Tab. 94 // For each of the sections in the app, add a tab to the action bar. 96 // Create a tab with text corresponding to the page title defined by 98 // the TabListener interface, as the listener for when this tab is 107 public void onTabUnselected(ActionBar.Tab tab, FragmentTransaction fragmentTransaction) { 111 public void onTabSelected(ActionBar.Tab tab, FragmentTransaction fragmentTransaction) [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
ActionBarDisplayOptions.java | 21 import android.app.ActionBar.Tab; 58 bar.addTab(bar.newTab().setText("Tab 1").setTabListener(this)); 59 bar.addTab(bar.newTab().setText("Tab 2").setTabListener(this)); 60 bar.addTab(bar.newTab().setText("Tab 3").setTabListener(this)); 134 public void onTabSelected(Tab tab, FragmentTransaction ft) { 137 public void onTabUnselected(Tab tab, FragmentTransaction ft) { 140 public void onTabReselected(Tab tab, FragmentTransaction ft) [all...] |
/development/samples/Support7Demos/src/com/example/android/supportv7/app/ |
ActionBarDisplayOptions.java | 21 import android.support.v7.app.ActionBar.Tab; 59 bar.addTab(bar.newTab().setText("Tab 1").setTabListener(this)); 60 bar.addTab(bar.newTab().setText("Tab 2").setTabListener(this)); 61 bar.addTab(bar.newTab().setText("Tab 3").setTabListener(this)); 134 public void onTabSelected(Tab tab, FragmentTransaction ft) { 138 public void onTabUnselected(Tab tab, FragmentTransaction ft) { 142 public void onTabReselected(Tab tab, FragmentTransaction ft) [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/ |
regress-85721.js | 109 $space = '\040'; $tab = '\t'; 148 '[' + $space + $tab + ']*' + // # Nab whitespace. 149 '(?:' + $comment + '[' + $space + $tab + ']*)*'; // # If comment found, allow more spaces. 224 $phrase_ctrl = '\000-\010\012-\037'; // # like ctrl, but without tab 227 //# Since the class is negated, this matches the same as atom-char plus space and tab
|
/ndk/sources/host-tools/nawk-20071023/ |
tran.c | 153 ap->tab = tp; 169 for (cp = tp->tab[i]; cp != NULL; cp = temp) { 177 tp->tab[i] = 0; 181 free(tp->tab); 193 for (p = tp->tab[h]; p != NULL; prev = p, p = p->cnext) 196 tp->tab[h] = p->cnext; 231 p->cnext = tp->tab[h]; 232 tp->tab[h] = p; 257 for (cp = tp->tab[i]; cp; cp = op) { 264 free(tp->tab); [all...] |
/external/chromium/chrome/browser/ui/gtk/tabs/ |
tab_gtk.cc | 37 explicit ContextMenuController(TabGtk* tab) 38 : tab_(tab), 39 model_(this, tab->delegate()->IsTabPinned(tab)) { 97 // The Tab the context menu was brought up for. Set to NULL when the menu 109 explicit TabGtkObserverHelper(TabGtk* tab) 110 : tab_(tab) { 177 // able to drag foreground tabs, so we don't start dragging the tab if 213 // Middle mouse up means close the tab, but only if the mouse is over it 221 // some state before closing the tab to avoid a crash. Once the drag ha [all...] |
/external/chromium/chrome/browser/resources/options/ |
content_settings.css | 56 #plugins-tab {
|
/external/chromium/chrome/browser/ui/cocoa/tabs/ |
tab_strip_controller.h | 36 // The interface for the tab strip controller's delegate. 57 // A class that handles managing the tab strip in a browser window. It uses 63 // http://www.chromium.org/developers/design-documents/tab-strip-mac 86 // Delegate that is informed about tab state changes. 89 // YES if the new tab button is currently displaying the hover image (if the 94 // for the toolbar and associated tab contents) given an index. Call 102 // An array of TabControllers which manage the actual tab views. See note 110 // These values are only used during a drag, and override tab positioning. 111 TabView* placeholderTab_; // weak. Tab being dragged 113 CGFloat placeholderStretchiness_; // Vertical force shown by streching tab [all...] |
/external/clang/test/CodeGen/ |
exprs.c | 112 struct S *tab[]; 116 foo(((void)1, x->c).tab[0]);
|
/external/e2fsprogs/lib/ss/ |
Makefile.in | 74 MKCMDSOBJS= mk_cmds.o utils.o options.o ct.tab.o cmd_tbl.lex.o 78 MKCMDSCSRCS= mk_cmds.c utils.c options.c ct.tab.c cmd_tbl.lex.c 112 ct.tab.c ct.tab.h: ct.y 113 $(RM) -f ct.tab.* y.* 115 $(MV) -f y.tab.c ct.tab.c 116 $(MV) -f y.tab.h ct.tab.h
|
/external/valgrind/main/VEX/priv/ |
host_generic_regs.h | 168 static inline void initHRegUsage ( HRegUsage* tab ) { 169 tab->n_used = 0;
|
/packages/apps/Browser/src/com/android/browser/ |
DeviceAccountLogin.java | 32 private final Tab mTab; 50 public DeviceAccountLogin(Activity activity, WebView view, Tab tab, 54 mTab = tab;
|
SnapshotBar.java | 186 public void onTabDataChanged(Tab tab) { 187 if (!tab.isSnapshot()) return; 188 SnapshotTab snapshot = (SnapshotTab) tab; 196 setFavicon(tab.getFavicon());
|
/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/bison/doc/ |
bison.x | 28 .BR parse.tab.cxx , 31 .B y.tab.c 35 .BR parse.tab.c .
|
/external/chromium/chrome/browser/autocomplete/ |
autocomplete_edit_view.h | 40 // For use when switching tabs, this saves the current state onto the tab so 42 virtual void SaveStateToTab(TabContents* tab) = 0;
|
/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...] |
/external/chromium/chrome/browser/sync/glue/ |
foreign_session_tracker.h | 42 // Attempts to look up the foreign tab associated with the given tag and tab 45 // - Sets tab to point to the SessionTab, and returns true. 47 // - Returns false, tab is set to NULL. 50 const SessionTab** tab); 90 // Datatypes for accessing foreign tab data. 95 // Per foreign client mapping of their tab id's to their SessionTab objects.
|
/external/icu4c/tools/tzcode/ |
tzselect.ksh | 49 TZ_COUNTRY_TABLE=$TZDIR/iso3166.tab 50 TZ_ZONE_TABLE=$TZDIR/zone.tab
|
/external/chromium/chrome/browser/geolocation/ |
geolocation_permission_context_unittest.cc | 77 int process_id_for_tab(int tab) { 78 return extra_tabs_[tab]->render_view_host()->process()->id(); 81 int render_id_for_tab(int tab) { 82 return extra_tabs_[tab]->render_view_host()->routing_id(); 87 void CheckPermissionMessageSentForTab(int tab, int bridge_id, bool allowed); 127 int tab, 131 extra_tabs_[tab]->render_view_host()->process()), bridge_id, allowed); 355 // Accept the first tab. 365 // Now the infobar for the tab with the same origin should have gone. 371 // But the other tab should still have the info bar.. [all...] |
/external/chromium/chrome/browser/ui/webui/ |
bug_report_ui.cc | 114 // Returns the index of the feedback tab if already open, -1 otherwise 118 TabContents* tab = browser->GetTabContentsAt(i); local 119 if (tab && tab->GetURL().GetWithEmptyPath() == bug_report_url) 152 // Do not refresh screenshot, do not create a new tab 190 explicit BugReportHandler(TabContents* tab); 435 BugReportHandler::BugReportHandler(TabContents* tab) 436 : tab_(tab), 694 // function, close our feedback tab anyway, we have no more use for it. 735 BugReportUI::BugReportUI(TabContents* tab) : HtmlDialogUI(tab) [all...] |
/external/opencv/cv/src/ |
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...] |
cvhistogram.cpp | 794 icvCalcHistLookupTables8u( const CvHistogram* hist, int dims, int* size, int* tab ) 822 tab[i*(hi - lo) + j - lo] = idx; 844 tab[i*(hi - lo) + j - lo] = write_idx; 856 tab[i*(hi - lo) + j - lo] = ICV_HIST_DUMMY_IDX; 874 int* tab; local 882 tab = (int*)cvStackAlloc( dims*256*sizeof(int)); 883 status = icvCalcHistLookupTables8u( hist, dims, histsize, tab ); 940 int idx = tab[i]; 957 int idx = tab[v0] + tab[256+v1] 1557 int* tab = 0; local [all...] |