Searched refs:footer (Results 1 - 11 of 11) sorted by last modified time

/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/
H A DGlifLayout.java139 final int footer = a.getResourceId(R.styleable.SuwGlifLayout_suwFooter, 0);
140 if (footer != 0) {
141 inflateFooter(footer);
175 * Sets the footer of the layout, which is at the bottom of the content area outside the
176 * scrolling container. The footer can only be inflated once per instance of this layout.
178 * @param footer The layout to be inflated as footer.
179 * @return The root of the inflated footer view.
181 public View inflateFooter(@LayoutRes int footer) { argument
183 footerStub.setLayoutResource(footer);
[all...]
/frameworks/native/docs/
H A DMakefile11 HTML_HEADER=header.html HTML_FOOTER=footer.html HTML_OUTPUT=website doxygen
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSDetail.java120 public void setQsPanel(QSPanel panel, QuickStatusBarHeader header, View footer) { argument
123 mFooter = footer;
/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%08lld)\n",
159 ALOGW("claimed footer siz
[all...]
/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/widget/
H A DListView.java173 * or a footer at the bottom.
438 * @param isSelectable true if the footer view can be selected
461 // In the case of re-adding a footer view, or adding one later on,
493 * Removes a previously-added footer view.
497 * true if the view was removed, false if the view was not a footer view
1751 // header or footer.
1849 // remove any header/footer that has been temp detached and not re-attached
2001 * @return Whether child is a header or footer view.
3689 * Enables or disables the drawing of the divider for footer views.
3703 * @return Whether the drawing of the divider for footer view
3738 setOverscrollFooter(Drawable footer) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_hardware_camera2_legacy_LegacyCameraDevice.cpp331 struct camera3_jpeg_blob footer = { local
336 size_t totalJpegSize = bufferLength + sizeof(footer);
353 memcpy(img + totalSizeBytes - sizeof(footer), &footer, sizeof(footer));
/frameworks/base/core/java/android/os/
H A DRecoverySystem.java223 byte[] footer = new byte[6];
224 raf.readFully(footer);
226 if (footer[2] != (byte)0xff || footer[3] != (byte)0xff) {
227 throw new SignatureException("no signature in file (no footer)");
230 final int commentSize = (footer[4] & 0xff) | ((footer[5] & 0xff) << 8);
231 final int signatureStart = (footer[0] & 0xff) | ((footer[1] & 0xff) << 8);
241 throw new SignatureException("no signature in file (bad footer)");
[all...]
/frameworks/base/core/java/android/service/autofill/
H A DFillResponse.java263 * {@link #setFooter(RemoteViews) footer} are already set for this builder.
478 * Sets a footer to be shown as the last element in the list of datasets.
483 * authentication (as the footer could have been set directly in the main presentation in
489 * @param footer a presentation to represent the footer. This presentation is not clickable
501 public Builder setFooter(@NonNull RemoteViews footer) { argument
504 mFooter = Preconditions.checkNotNull(footer);
536 "must add at least 1 dataset when using header or footer");
660 final RemoteViews footer = parcel.readParcelable(null);
661 if (footer !
[all...]
/frameworks/base/core/java/android/util/apk/
H A DApkSigningBlockUtils.java695 // Read the magic and offset in file from the footer section of the block:
698 ByteBuffer footer = ByteBuffer.allocate(24);
699 footer.order(ByteOrder.LITTLE_ENDIAN);
700 apk.seek(centralDirOffset - footer.capacity());
701 apk.readFully(footer.array(), footer.arrayOffset(), footer.capacity());
702 if ((footer.getLong(8) != APK_SIG_BLOCK_MAGIC_LO)
703 || (footer.getLong(16) != APK_SIG_BLOCK_MAGIC_HI)) {
708 long apkSigBlockSizeInFooter = footer
[all...]
/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);

Completed in 304 milliseconds