Searched refs:footer (Results 1 - 8 of 8) 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[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/packages/SystemUI/src/com/android/systemui/qs/
H A DQSPanel.java477 View footer = mFooter.getView();
478 footer.layout(0, getMeasuredHeight() - footer.getMeasuredHeight(),
479 footer.getMeasuredWidth(), getMeasuredHeight());
/frameworks/base/core/jni/
H A Dandroid_hardware_camera2_legacy_LegacyCameraDevice.cpp317 struct camera3_jpeg_blob footer = { local
322 size_t totalJpegSize = bufferLength + sizeof(footer);
339 memcpy(img + totalSizeBytes - sizeof(footer), &footer, sizeof(footer));
/frameworks/av/media/img_utils/src/
H A DTiffIfd.cpp123 // Writer IFD footer (4 bytes, offset to next IFD).
124 uint32_t footer = (mNextIfd != NULL) ? offset + getSize() : 0; local
125 BAIL_ON_FAIL(out->write(&footer, 0, 1), ret);
/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.java97 * or a footer at the bottom.
357 * @param isSelectable true if the footer view can be selected
373 // In the case of re-adding a footer view, or adding one later on,
405 * Removes a previously-added footer view.
409 * true if the view was removed, false if the view was not a footer view
1613 // header or footer.
1811 * @return Whether child is a header or footer view.
3490 * Enables or disables the drawing of the divider for footer views.
3504 * @return Whether the drawing of the divider for footer views is enabled
3537 * @param footer Th
3539 setOverscrollFooter(Drawable footer) argument
[all...]

Completed in 264 milliseconds