/frameworks/base/core/tests/coretests/src/android/widget/listview/ |
D | ListWithHeaders.java | 48 Button footer = new Button(this); in onCreate() local 49 footer.setText("Footer View"); in onCreate() 50 listView.addFooterView(footer); in onCreate()
|
/frameworks/base/core/java/android/util/apk/ |
D | VerityBuilder.java | 151 ByteBuffer footer = ByteBuffer.allocate(CHUNK_SIZE_BYTES).order(ByteOrder.LITTLE_ENDIAN); in generateApkVerityRootHash() local 152 generateApkVerityFooter(apk, signatureInfo, footer); in generateApkVerityRootHash() 153 footer.flip(); in generateApkVerityRootHash() 156 md.update(footer); in generateApkVerityRootHash() 178 ByteBuffer footer = slice(result.verityData, result.merkleTreeSize, in generateApkVerity() local 180 generateApkVerityFooter(apk, signatureInfo, footer); in generateApkVerity() 182 footer.putInt(footer.position() + 4); in generateApkVerity() 183 result.verityData.limit(result.merkleTreeSize + footer.position()); in generateApkVerity()
|
D | ApkSigningBlockUtils.java | 678 ByteBuffer footer = ByteBuffer.allocate(24); in findApkSigningBlock() local 679 footer.order(ByteOrder.LITTLE_ENDIAN); in findApkSigningBlock() 680 apk.seek(centralDirOffset - footer.capacity()); in findApkSigningBlock() 681 apk.readFully(footer.array(), footer.arrayOffset(), footer.capacity()); in findApkSigningBlock() 682 if ((footer.getLong(8) != APK_SIG_BLOCK_MAGIC_LO) in findApkSigningBlock() 683 || (footer.getLong(16) != APK_SIG_BLOCK_MAGIC_HI)) { in findApkSigningBlock() 688 long apkSigBlockSizeInFooter = footer.getLong(0); in findApkSigningBlock() 689 if ((apkSigBlockSizeInFooter < footer.capacity()) in findApkSigningBlock()
|
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/ |
D | GlifLayout.java | 135 final int footer = a.getResourceId(R.styleable.SuwGlifLayout_suwFooter, 0); in init() local 136 if (footer != 0) { in init() 137 inflateFooter(footer); in init() 177 public View inflateFooter(@LayoutRes int footer) { in inflateFooter() argument 179 footerStub.setLayoutResource(footer); in inflateFooter()
|
/frameworks/base/services/core/jni/ |
D | com_android_server_security_VerityUtils.cpp | 221 fsverity_footer* footer = reinterpret_cast<fsverity_footer*>(raii.getRaw()); in constructFsverityFooter() local 223 footer->desc_reverse_offset = offsetToDescriptorHead + sizeof(fsverity_footer); in constructFsverityFooter() 224 memcpy(footer->magic, FS_VERITY_MAGIC, sizeof(footer->magic)); in constructFsverityFooter()
|
/frameworks/base/libs/androidfw/ |
D | ObbFile.cpp | 136 char footer[kFooterTagSize]; in parseObbFile() local 137 actual = TEMP_FAILURE_RETRY(read(fd, footer, kFooterTagSize)); in parseObbFile() 143 unsigned int fileSig = get4LE((unsigned char*)footer + sizeof(int32_t)); in parseObbFile() 150 footerSize = get4LE((unsigned char*)footer); in parseObbFile()
|
/frameworks/base/core/java/android/service/autofill/ |
D | FillResponse.java | 518 public Builder setFooter(@NonNull RemoteViews footer) { in setFooter() argument 521 mFooter = Preconditions.checkNotNull(footer); in setFooter() 701 final RemoteViews footer = parcel.readParcelable(null); 702 if (footer != null) { 703 builder.setFooter(footer);
|
/frameworks/base/core/java/android/os/ |
D | RecoverySystem.java | 221 byte[] footer = new byte[6]; in verifyPackage() 222 raf.readFully(footer); in verifyPackage() 224 if (footer[2] != (byte)0xff || footer[3] != (byte)0xff) { in verifyPackage() 228 final int commentSize = (footer[4] & 0xff) | ((footer[5] & 0xff) << 8); in verifyPackage() 229 final int signatureStart = (footer[0] & 0xff) | ((footer[1] & 0xff) << 8); in verifyPackage()
|
/frameworks/native/docs/ |
D | Makefile | 11 HTML_HEADER=header.html HTML_FOOTER=footer.html HTML_OUTPUT=website doxygen
|
D | Doxyfile | 940 # header.html footer.html stylesheet.css YourConfigFile" and then modify 947 # The HTML_FOOTER tag can be used to specify a personal HTML footer for 949 # standard footer. 1006 # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML 1379 # The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for 1380 # the generated latex document. The footer should contain everything after 1382 # standard footer. Notice: only use this tag if you know what you are doing!
|
/frameworks/base/core/jni/ |
D | android_hardware_camera2_legacy_LegacyCameraDevice.cpp | 331 struct camera3_jpeg_blob footer = { in produceFrame() local 336 size_t totalJpegSize = bufferLength + sizeof(footer); in produceFrame() 353 memcpy(img + totalSizeBytes - sizeof(footer), &footer, sizeof(footer)); in produceFrame()
|
/frameworks/av/media/img_utils/src/ |
D | TiffIfd.cpp | 124 uint32_t footer = (mNextIfd != NULL) ? offset + getSize() : 0; in writeData() local 125 BAIL_ON_FAIL(out->write(&footer, 0, 1), ret); in writeData()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ |
D | QSDetail.java | 120 public void setQsPanel(QSPanel panel, QuickStatusBarHeader header, View footer) { in setQsPanel() argument 123 mFooter = footer; in setQsPanel()
|
/frameworks/native/vulkan/api/templates/ |
D | asciidoc.tmpl | 146 Emits an AsciiDoc source footer.
|
/frameworks/base/media/native/midi/include/ |
D | Doxyfile.orig | 1162 # The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each 1164 # footer. See HTML_HEADER for more information on how to generate a default 1165 # footer and what special commands can be used inside the footer. See also 1166 # section "Doxygen usage" for information on how to generate the default footer 1237 # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML 1742 # The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for the 1743 # generated LaTeX document. The footer should contain everything after the last 1744 # chapter. If it is left blank doxygen will generate a standard footer. See 1745 # LATEX_HEADER for more information on how to generate a default footer and what 1746 # special commands can be used inside the footer. [all …]
|
D | Doxyfile | 1162 # The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each 1164 # footer. See HTML_HEADER for more information on how to generate a default 1165 # footer and what special commands can be used inside the footer. See also 1166 # section "Doxygen usage" for information on how to generate the default footer 1237 # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML 1742 # The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for the 1743 # generated LaTeX document. The footer should contain everything after the last 1744 # chapter. If it is left blank doxygen will generate a standard footer. See 1745 # LATEX_HEADER for more information on how to generate a default footer and what 1746 # special commands can be used inside the footer. [all …]
|
/frameworks/av/media/codec2/docs/ |
D | doxygen.config | 1112 # The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each 1114 # footer. See HTML_HEADER for more information on how to generate a default 1115 # footer and what special commands can be used inside the footer. See also 1116 # section "Doxygen usage" for information on how to generate the default footer 1187 # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML 1692 # The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for the 1693 # generated LaTeX document. The footer should contain everything after the last 1694 # chapter. If it is left blank doxygen will generate a standard footer. See 1695 # LATEX_HEADER for more information on how to generate a default footer and what 1696 # special commands can be used inside the footer. [all …]
|
/frameworks/av/media/libaaudio/ |
D | Doxyfile | 1049 # The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each 1051 # footer. See HTML_HEADER for more information on how to generate a default 1052 # footer and what special commands can be used inside the footer. See also 1053 # section "Doxygen usage" for information on how to generate the default footer 1122 # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML 1622 # The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for the 1623 # generated LaTeX document. The footer should contain everything after the last 1624 # chapter. If it is left blank doxygen will generate a standard footer. 1626 # Note: Only use a user-defined footer if you know what you are doing!
|
D | Doxyfile.orig | 1040 # The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each 1042 # footer. See HTML_HEADER for more information on how to generate a default 1043 # footer and what special commands can be used inside the footer. See also 1044 # section "Doxygen usage" for information on how to generate the default footer 1113 # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML 1613 # The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for the 1614 # generated LaTeX document. The footer should contain everything after the last 1615 # chapter. If it is left blank doxygen will generate a standard footer. 1617 # Note: Only use a user-defined footer if you know what you are doing!
|
/frameworks/base/core/java/android/widget/ |
D | ListView.java | 3765 public void setOverscrollFooter(Drawable footer) { 3766 mOverScrollFooter = footer;
|
/frameworks/wilhelm/doc/ |
D | Doxyfile | 797 # The HTML_FOOTER tag can be used to specify a personal HTML footer for 799 # standard footer. 837 # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML
|
/frameworks/base/core/proto/android/app/ |
D | settings_enums.proto | 2252 // OPEN: Settings > Sound > Do Not Disturb > Click footer link if custom settings applied
|
/frameworks/base/proto/src/metrics_constants/ |
D | metrics_constants.proto | 6817 // OPEN: Settings > Sound > Do Not Disturb > Click footer link if custom settings applied
|