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

<<11121314151617181920>>

  /external/skia/src/xml/
SkXMLWriter.cpp 191 static void tab(SkWStream& stream, int level) { function
221 tab(fStream, fElems.count() + 1);
229 tab(fStream, fElems.count());
248 tab(fStream, level);
  /external/zlib/src/examples/
enough.c 112 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) {
  /prebuilts/go/darwin-x86/src/cmd/addr2line/
main.go 65 tab, err := f.PCLineTable()
84 file, line, fn := tab.PCToLine(pc)
  /prebuilts/go/linux-x86/src/cmd/addr2line/
main.go 65 tab, err := f.PCLineTable()
84 file, line, fn := tab.PCToLine(pc)
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ActionBarDisplayOptions.java 21 import android.app.ActionBar.Tab;
63 bar.addTab(bar.newTab().setText("Tab 1").setTabListener(this));
64 bar.addTab(bar.newTab().setText("Tab 2").setTabListener(this));
65 bar.addTab(bar.newTab().setText("Tab 3").setTabListener(this));
141 public void onTabSelected(Tab tab, FragmentTransaction ft) {
145 public void onTabUnselected(Tab tab, FragmentTransaction ft) {
149 public void onTabReselected(Tab tab, FragmentTransaction ft)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
ContentBrowserActivity.java 20 import android.app.ActionBar.Tab;
178 bar.addTab(bar.newTab().setText("Tab 1").setTabListener(this));
179 bar.addTab(bar.newTab().setText("Tab 2").setTabListener(this));
180 bar.addTab(bar.newTab().setText("Tab 3").setTabListener(this));
254 public void onTabSelected(Tab tab, FragmentTransaction ft) {
258 public void onTabUnselected(Tab tab, FragmentTransaction ft) {
262 public void onTabReselected(Tab tab, FragmentTransaction ft)
    [all...]
ContentBrowserNavActivity.java 20 import android.app.ActionBar.Tab;
180 bar.addTab(bar.newTab().setText("Tab 1").setTabListener(this));
181 bar.addTab(bar.newTab().setText("Tab 2").setTabListener(this));
182 bar.addTab(bar.newTab().setText("Tab 3").setTabListener(this));
256 public void onTabSelected(Tab tab, FragmentTransaction ft) {
260 public void onTabUnselected(Tab tab, FragmentTransaction ft) {
264 public void onTabReselected(Tab tab, FragmentTransaction ft)
    [all...]
VideoPlayerActivity.java 20 import android.app.ActionBar.Tab;
202 bar.addTab(bar.newTab().setText("Tab 1").setTabListener(this));
203 bar.addTab(bar.newTab().setText("Tab 2").setTabListener(this));
204 bar.addTab(bar.newTab().setText("Tab 3").setTabListener(this));
271 public void onTabSelected(Tab tab, FragmentTransaction ft) {
275 public void onTabUnselected(Tab tab, FragmentTransaction ft) {
279 public void onTabReselected(Tab tab, FragmentTransaction ft)
    [all...]
  /external/fio/
Makefile 196 FIO_OBJS += lex.yy.o y.tab.o
197 GFIO_OBJS += lex.yy.o y.tab.o
334 lex.yy.o: lex.yy.c y.tab.h
337 y.tab.o: y.tab.c y.tab.h
340 y.tab.c: exp/expression-parser.y
343 y.tab.h: y.tab.c
350 $(QUIET_LINK)$(CC) $(LDFLAGS) $(CFLAGS) $< y.tab.o lex.yy.o -o $@ $(LIBS
    [all...]
  /external/skia/tools/skdiff/
skdiff_image.cpp 275 // Posix says the format is: <filename><tab><date>
276 // It also states that if a filename contains <tab> or <newline>
279 // Svn diff --diff-cmd provides labels of the form: <filename><tab><revision>
289 // <filename><tab><date>
297 // If there is a <tab> after the first <non-white-space>, filename is
298 // [first <non-white-space>, the next run of <white-space> with an embedded <tab>).
312 const char* tab = strchr(baseLabelCstr, '\t'); local
313 if (nullptr == tab) {
316 outputFile.set(baseLabelCstr, tab - baseLabelCstr);
  /packages/apps/Settings/src/com/android/settings/
TrustedCredentialsSettings.java 97 private enum Tab {
118 private Tab(String tag, int label, int view, int progress, int contentView, boolean withSwitch) {
215 addTab(Tab.SYSTEM);
216 // TODO add Install button on Tab.USER to go to CertInstaller like KeyChainActivity
217 addTab(Tab.USER);
220 mTabHost.setCurrentTabByTag(Tab.USER.mTag);
266 private void addTab(Tab tab) {
267 TabHost.TabSpec systemSpec = mTabHost.newTabSpec(tab.mTag)
268 .setIndicator(getActivity().getString(tab.mLabel)
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
alg.go 142 tab := a.tab
143 if tab == nil {
146 t := tab._type
232 xtab := x.tab
233 if xtab != y.tab {
trace.go 693 tab [1 << 13]traceStackPtr
716 func (tab *traceStackTable) put(pcs []uintptr) uint32 {
722 if id := tab.find(pcs, hash); id != 0 {
726 lock(&tab.lock)
727 if id := tab.find(pcs, hash); id != 0 {
728 unlock(&tab.lock)
732 tab.seq++
733 stk := tab.newStack(len(pcs))
735 stk.id = tab.seq
741 part := int(hash % uintptr(len(tab.tab))
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
alg.go 142 tab := a.tab
143 if tab == nil {
146 t := tab._type
232 xtab := x.tab
233 if xtab != y.tab {
trace.go 693 tab [1 << 13]traceStackPtr
716 func (tab *traceStackTable) put(pcs []uintptr) uint32 {
722 if id := tab.find(pcs, hash); id != 0 {
726 lock(&tab.lock)
727 if id := tab.find(pcs, hash); id != 0 {
728 unlock(&tab.lock)
732 tab.seq++
733 stk := tab.newStack(len(pcs))
735 stk.id = tab.seq
741 part := int(hash % uintptr(len(tab.tab))
    [all...]
  /prebuilts/go/darwin-x86/src/text/tabwriter/
tabwriter.go 34 // A Writer is a filter that inserts padding around tab-delimited
42 // Tab-terminated cells in contiguous lines constitute a column. The
46 // tabwidth must be specified. Column cells must be tab-terminated, not
47 // tab-separated: non-tab terminated trailing text at the end of a line
49 // For instance, in this example (where | stands for a horizontal tab):
58 // terminating tab, nor would the column be contiguous).
83 // all columns in the current line (effectively calling Flush). Tab-
127 // (the cell starts after a tab or line break)
141 // [---processed---tab------------<tag>...</tag>...
    [all...]
  /prebuilts/go/linux-x86/src/text/tabwriter/
tabwriter.go 34 // A Writer is a filter that inserts padding around tab-delimited
42 // Tab-terminated cells in contiguous lines constitute a column. The
46 // tabwidth must be specified. Column cells must be tab-terminated, not
47 // tab-separated: non-tab terminated trailing text at the end of a line
49 // For instance, in this example (where | stands for a horizontal tab):
58 // terminating tab, nor would the column be contiguous).
83 // all columns in the current line (effectively calling Flush). Tab-
127 // (the cell starts after a tab or line break)
141 // [---processed---tab------------<tag>...</tag>...
    [all...]
  /external/opencv/cv/src/
cvpyramids.cpp     [all...]
cvcolor.cpp 587 int* tab = (int*)cvStackAlloc( 256*3*sizeof(tab[0]) ); local
592 tab[i] = b;
593 tab[i+256] = g;
594 tab[i+512] = r;
606 int t0 = tab[src[0]] + tab[src[1] + 256] + tab[src[2] + 512];
1324 float tab[4]; local
    [all...]
  /external/e2fsprogs/lib/ext2fs/
crc32c.c 78 const uint32_t (*tab)[256])
95 const uint32_t *t0 = tab[0], *t1 = tab[1], *t2 = tab[2], *t3 = tab[3];
96 const uint32_t *t4 = tab[4], *t5 = tab[5], *t6 = tab[6], *t7 = tab[7];
148 size_t len, const uint32_t (*tab)[256]
    [all...]
  /external/doclava/res/assets/templates-sdk/components/
masthead.cs 28 <a href="<?cs var:toroot ?>ndk/guides/index.html" class="dac-header-tab"
37 <a href="<?cs var:toroot ?>ndk/reference/index.html" class="dac-header-tab"
46 <a href="<?cs var:toroot ?>ndk/samples/index.html" class="dac-header-tab"
50 <a href="<?cs var:toroot ?>ndk/downloads/index.html" class="dac-header-tab"
56 # For the reference only docs, include just one tab
60 <li><a href="<?cs var:toroot ?>reference/packages.html" class="dac-header-tab"><?cs
76 <a class="dac-header-tab" href="<?cs var:toroot ?>design/index.html"
85 <a class="dac-header-tab" href="<?cs var:toroot ?>develop/index.html"
94 <a class="dac-header-tab" href="<?cs var:toroot ?>distribute/index.html"
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
vfscanf.c 880 __sccl(char *tab, const u_char *fmt)
884 _DIAGASSERT(tab != NULL);
894 /* XXX: Will not work if sizeof(tab*) > sizeof(char) */
895 (void)memset(tab, v, 256);
909 tab[c] = (char)v; /* take character c */
946 tab[++c] = (char)v;
952 tab[i] = (char)v;
  /external/bison/src/
tables.c 32 #include "muscle-tab.h"
734 | Remap the negative infinite in TAB from NINF to the greatest |
742 table_ninf_remap (base_number tab[], int size, base_number ninf)
748 if (tab[i] < res && tab[i] != ninf)
749 res = tab[i];
754 if (tab[i] == ninf)
755 tab[i] = res;
  /frameworks/base/services/autofill/java/com/android/server/autofill/
RemoteFillService.java 189 String tab = " "; local
191 pw.append(prefix).append(tab).append("userId=")
193 pw.append(prefix).append(tab).append("componentName=")
195 pw.append(prefix).append(tab).append("destroyed=")
197 pw.append(prefix).append(tab).append("bound=")
199 pw.append(prefix).append(tab).append("hasPendingRequest=")
  /prebuilts/go/darwin-x86/src/net/internal/socktest/
switch.go 47 tab := make(Sockets, len(sw.sotab))
49 tab[i] = s
52 return tab

Completed in 1560 milliseconds

<<11121314151617181920>>