HomeSort by relevance Sort by last modified time
    Searched refs:tab (Results 176 - 200 of 937) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/mesa3d/src/mesa/program/
Android.mk 56 program_parse.tab.c \
57 program_parse.tab.h
66 $(intermediates)/program/program_parse.tab.c: $(LOCAL_PATH)/program_parse.y
69 $(intermediates)/program/program_parse.tab.h: $(intermediates)/program/program_parse.tab.c
  /external/autotest/client/cros/enterprise/
enterprise_policy_base.py 261 @param policy_tab: Tab displaying the Policies page.
311 """Get a given policy value by opening a new tab then closing it.
319 tab = self.navigate_to_url(self.CHROME_POLICY_PAGE)
321 values[policy_name] = self._get_policy_value_shown(tab, policy_name)
322 tab.Close()
402 def navigate_to_url(self, url, tab=None):
403 """Navigate tab to the specified |url|. Create new tab if none given.
406 @param tab: browser tab to load (if any)
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_fd.cc 35 atomic_uintptr_t tab[kTableSizeL1]; member in struct:__tsan::FdContext
77 atomic_uintptr_t *pl1 = &fdctx.tab[fd / kTableSizeL2];
133 FdDesc *tab = (FdDesc*)atomic_load(&fdctx.tab[l1], memory_order_relaxed); local
134 if (tab == 0)
137 FdDesc *d = &tab[l2];
145 FdDesc *tab = (FdDesc*)atomic_load(&fdctx.tab[l1], memory_order_relaxed); local
146 if (tab == 0)
148 if (addr >= (uptr)tab && addr < (uptr)(tab + kTableSizeL2))
    [all...]
  /external/autotest/client/site_tests/video_PlaybackPerf/
video_PlaybackPerf.py 75 tab = cr.browser.tabs[0]
76 tab.Navigate(cr.browser.platform.http_server.UrlOf(local_path))
77 tab.WaitForDocumentReadyStateToBeComplete()
78 tab.EvaluateJavaScript("document.getElementsByTagName('video')[0]."
138 tab = cr.browser.tabs[0]
139 decoded_frame_count = tab.EvaluateJavaScript(
142 dropped_frame_count = tab.EvaluateJavaScript(
  /external/libevent/
depcomp 60 tab=' '
280 sed -e 's,^.*\.[a-z]*:['"$tab"' ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile"
323 sed -e "s/^[ $tab][ $tab]*/ /" -e "s,^[^:]*:,$object :," \
326 s/[ '"$tab"'][ '"$tab"']*/ /g
432 sed -e 's,^.*\.[a-z]*:['"$tab"' ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile"
467 s/\(.*\)/'"$tab"'\1 \\/p
471 s/.*/'"$tab"'/
526 sed 's:^['"$tab"' ]*[^:'"$tab"' ][^:][^:]*\:['"$tab"' ]*:'"$object"'\: :' > "$tmpdepfile
    [all...]
  /external/libnfnetlink/build-aux/
depcomp 61 tab=' '
281 sed -e 's,^.*\.[a-z]*:['"$tab"' ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile"
324 sed -e "s/^[ $tab][ $tab]*/ /" -e "s,^[^:]*:,$object :," \
327 s/[ '"$tab"'][ '"$tab"']*/ /g
433 sed -e 's,^.*\.[a-z]*:['"$tab"' ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile"
468 s/\(.*\)/'"$tab"'\1 \\/p
472 s/.*/'"$tab"'/
527 sed 's:^['"$tab"' ]*[^:'"$tab"' ][^:][^:]*\:['"$tab"' ]*:'"$object"'\: :' > "$tmpdepfile
    [all...]
  /libcore/ojluni/src/main/java/java/util/concurrent/
ConcurrentHashMap.java 943 Node<K,V>[] tab; Node<K,V> e, p; int n, eh; K ek; local
1194 Node<K,V>[] tab = table; local
1480 Node<K,V>[] tab = (Node<K,V>[])new Node<?,?>[n]; local
2292 Node<K,V>[] tab; int sc; local
2342 Node<K,V>[] tab, nt; int n, sc; local
2395 Node<K,V>[] tab = table; int n; local
3325 Node<K,V>[] tab; field in class:ConcurrentHashMap.TableStack
3351 Node<K,V>[] tab; \/\/ current table; updated if resized field in class:ConcurrentHashMap.Traverser
4876 Node<K,V>[] tab; \/\/ same as Traverser field in class:ConcurrentHashMap.BulkTask
    [all...]
  /frameworks/base/core/java/android/app/
ActionBar.java 129 * Tab navigation mode. Instead of static title text this mode
614 * Create and return a new {@link Tab}.
615 * This tab will not be included in the action bar until it is added.
623 * @return A new Tab
625 * @see #addTab(Tab)
633 public abstract Tab newTab();
636 * Add a tab for use in tabbed navigation mode. The tab will be added at the end of the list.
637 * If this is the first tab to be added it will become the selected tab
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
ActionBar.java 127 * Tab navigation mode. Instead of static title text this mode
608 * Create and return a new {@link Tab}.
609 * This tab will not be included in the action bar until it is added.
611 * @return A new Tab
613 * @see #addTab(Tab)
621 public abstract Tab newTab();
624 * Add a tab for use in tabbed navigation mode. The tab will be added at the end of the list.
625 * If this is the first tab to be added it will become the selected tab
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ActionBarTabs.java 21 import android.app.ActionBar.Tab;
47 final String text = "Tab " + tabCount;
80 * to it, it will be committed at the end of the full tab switch operation.
81 * This lets tab switches be atomic without the app needing to track
96 public void onTabSelected(Tab tab, FragmentTransaction ft) {
100 public void onTabUnselected(Tab tab, FragmentTransaction ft) {
104 public void onTabReselected(Tab tab, FragmentTransaction ft)
    [all...]
FragmentNestingTabs.java 20 import android.app.ActionBar.Tab;
60 bar.setSelectedNavigationItem(savedInstanceState.getInt("tab", 0));
67 outState.putInt("tab", getActionBar().getSelectedNavigationIndex());
87 // Check to see if we already have a fragment for this tab, probably
89 // initial state is that a tab isn't shown.
98 public void onTabSelected(Tab tab, FragmentTransaction ft) {
107 public void onTabUnselected(Tab tab, FragmentTransaction ft) {
113 public void onTabReselected(Tab tab, FragmentTransaction ft)
    [all...]
FragmentTabs.java 22 import android.app.ActionBar.Tab;
60 bar.setSelectedNavigationItem(savedInstanceState.getInt("tab", 0));
67 outState.putInt("tab", getActionBar().getSelectedNavigationIndex());
87 // Check to see if we already have a fragment for this tab, probably
89 // initial state is that a tab isn't shown.
98 public void onTabSelected(Tab tab, FragmentTransaction ft) {
107 public void onTabUnselected(Tab tab, FragmentTransaction ft) {
113 public void onTabReselected(Tab tab, FragmentTransaction ft)
    [all...]
  /developers/build/prebuilts/gradle/HorizontalPaging/Application/src/main/java/com/example/android/horizontalpaging/
MainActivity.java 55 // state with the tab state. (See mViewPager.setOnPageChangeListener() and onTabSelected().)
71 // When swiping between different sections, select the corresponding tab. We can also use
72 // ActionBar.Tab#select() to do this if we have a reference to the Tab.
83 // For each of the sections in the app, add a tab to the action bar.
85 // Create a tab with text corresponding to the page title defined by the adapter. Also
87 // callback (listener) for when this tab is selected.
97 * Update {@link ViewPager} after a tab has been selected in the ActionBar.
99 * @param tab Tab that was selected
    [all...]
  /developers/samples/android/ui/views/HorizontalPaging/Application/src/main/java/com/example/android/horizontalpaging/
MainActivity.java 55 // state with the tab state. (See mViewPager.setOnPageChangeListener() and onTabSelected().)
71 // When swiping between different sections, select the corresponding tab. We can also use
72 // ActionBar.Tab#select() to do this if we have a reference to the Tab.
83 // For each of the sections in the app, add a tab to the action bar.
85 // Create a tab with text corresponding to the page title defined by the adapter. Also
87 // callback (listener) for when this tab is selected.
97 * Update {@link ViewPager} after a tab has been selected in the ActionBar.
99 * @param tab Tab that was selected
    [all...]
  /development/samples/browseable/HorizontalPaging/src/com.example.android.horizontalpaging/
MainActivity.java 55 // state with the tab state. (See mViewPager.setOnPageChangeListener() and onTabSelected().)
71 // When swiping between different sections, select the corresponding tab. We can also use
72 // ActionBar.Tab#select() to do this if we have a reference to the Tab.
83 // For each of the sections in the app, add a tab to the action bar.
85 // Create a tab with text corresponding to the page title defined by the adapter. Also
87 // callback (listener) for when this tab is selected.
97 * Update {@link ViewPager} after a tab has been selected in the ActionBar.
99 * @param tab Tab that was selected
    [all...]
  /development/samples/training/EffectiveNavigation/src/com/example/android/effectivenavigation/
MainActivity.java 74 // When swiping between different app sections, select the corresponding tab.
75 // We can also use ActionBar.Tab#select() to do this if we have a reference to the
76 // Tab.
81 // For each of the sections in the app, add a tab to the action bar.
83 // Create a tab with text corresponding to the page title defined by the adapter.
85 // listener for when this tab is selected.
94 public void onTabUnselected(ActionBar.Tab tab, FragmentTransaction fragmentTransaction) {
98 public void onTabSelected(ActionBar.Tab tab, FragmentTransaction fragmentTransaction)
    [all...]
  /development/samples/training/TabCompat/src/com/example/android/tabcompat/lib/
TabHelper.java 31 * Call {@link TabHelper#newTab(String)} to create each tab.
35 * Call {@link TabHelper#addTab(CompatTab)} for each tab, and you're done.
60 * Create a new tab.
62 * @param tag A unique tag to associate with the tab and associated fragment
73 public abstract void addTab(CompatTab tab);
CompatTabHoneycomb.java 20 import android.app.ActionBar.Tab;
32 * The native tab object that this {@link CompatTab} acts as a proxy for.
34 ActionBar.Tab mTab;
83 public void onTabReselected(Tab tab, android.app.FragmentTransaction f) {
91 public void onTabSelected(Tab tab, android.app.FragmentTransaction f) {
99 public void onTabUnselected(Tab arg0, android.app.FragmentTransaction f) {
  /external/clang/test/Preprocessor/
traditional-cpp.c 23 /* The lines in this file contain hard tab characters and trailing whitespace;
27 * CHECK: {{^}}tab separated values{{$}}
30 tab separated values
  /external/ppp/pppd/
Makefile.sol2 63 rm -f $(OBJS) pppd *~ core y.tab.c y.tab.h
  /frameworks/base/core/java/com/android/internal/widget/
ScrollingTabContainerView.java 45 * This widget implements the dynamic action bar tab behavior that can change
123 // Recenter the tab display if we're at a new (scrollable) size.
279 private TabView createTabView(Context context, ActionBar.Tab tab, boolean forAdapter) {
280 final TabView tabView = new TabView(context, tab, forAdapter);
296 public void addTab(ActionBar.Tab tab, boolean setSelected) {
297 TabView tabView = createTabView(mContext, tab, false);
311 public void addTab(ActionBar.Tab tab, int position, boolean setSelected)
411 final ActionBar.Tab tab = mTab; local
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
ScrollingTabContainerView.java 50 * This widget implements the dynamic action bar tab behavior that can change across different
133 // Recenter the tab display if we're at a new (scrollable) size.
290 TabView createTabView(ActionBar.Tab tab, boolean forAdapter) {
291 final TabView tabView = new TabView(getContext(), tab, forAdapter);
307 public void addTab(ActionBar.Tab tab, boolean setSelected) {
308 TabView tabView = createTabView(tab, false);
322 public void addTab(ActionBar.Tab tab, int position, boolean setSelected)
447 final ActionBar.Tab tab = mTab; local
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/
DeskClock.java 90 /** Updates the user interface to reflect the selected tab from the backing model. */
124 /** The container that stores the tab headers. */
170 final UiDataModel.Tab tabModel = UiDataModel.getUiDataModel().getTab(i);
173 final TabLayout.Tab tab = mTabLayout.newTab() local
179 tab.setText(labelResId);
180 tab.setCustomView(R.layout.tab_item);
183 final TextView text = (TextView) tab.getCustomView()
188 final Drawable icon = tab.getIcon();
191 tab.setIcon(null)
474 final TabLayout.Tab tab = mTabLayout.getTabAt(i); local
    [all...]
  /external/autotest/client/site_tests/video_VideoSanity/
video_VideoSanity.py 63 tab = cr.browser.tabs.New()
68 tab,
  /external/libpng/contrib/tools/
chkfmt 11 # line length of 80 characters max and no tab characters.
128 tab="`tr -c -d '\t' <"$file"`"
129 if test -n "$tab"
131 echo "$file: file contains tab characters"

Completed in 2341 milliseconds

1 2 3 4 5 6 78 91011>>