Searched refs:footer (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/widget/listview/
H A DListWithHeaders.java49 Button footer = new Button(this);
50 footer.setText("Footer View");
51 listView.addFooterView(footer);
/frameworks/base/core/java/android/os/
H A DRecoverySystem.java163 byte[] footer = new byte[6];
164 raf.readFully(footer);
166 if (footer[2] != (byte)0xff || footer[3] != (byte)0xff) {
167 throw new SignatureException("no signature in file (no footer)");
170 int commentSize = (footer[4] & 0xff) | ((footer[5] & 0xff) << 8);
171 int signatureStart = (footer[0] & 0xff) | ((footer[1] & 0xff) << 8);
181 throw new SignatureException("no signature in file (bad footer)");
[all...]
/frameworks/base/libs/androidfw/
H A DObbFile.cpp40 * 32-bit footer size (4 bytes)
41 * 32-bit footer marker (4 bytes)
136 char *footer = new char[kFooterTagSize]; local
137 actual = TEMP_FAILURE_RETRY(read(fd, footer, kFooterTagSize));
139 ALOGW("couldn't read footer signature: %s\n", strerror(errno));
143 unsigned int fileSig = get4LE((unsigned char*)footer + sizeof(int32_t));
145 ALOGW("footer didn't match magic string (expected 0x%08x; got 0x%08x)\n",
150 footerSize = get4LE((unsigned char*)footer);
153 ALOGW("claimed footer size is too large (0x%08zx; file size is 0x%08llx)\n",
159 ALOGW("claimed footer siz
[all...]
/frameworks/base/docs/html/reference/renderscript/
H A Ddoxygen.css237 address.footer {
242 img.footer {
335 hr.footer {
733 .navpath li.footer
/frameworks/base/core/java/android/widget/
H A DListView.java93 * or a footer at the bottom.
247 * the supplied cursor with one that will also account for header and footer
280 * the supplied cursor with one that will also account for header and footer
333 * the supplied cursor with one that will also account for header and footer
338 * @param isSelectable true if the footer view can be selected
344 // relying on being able to add a footer and then calling setAdapter to
353 // in the case of re-adding a footer view, or adding one later on,
365 * cursor with one that will also account for header and footer views.
380 * Removes a previously-added footer view.
384 * true if the view was removed, false if the view was not a footer vie
3411 setOverscrollFooter(Drawable footer) argument
[all...]

Completed in 134 milliseconds