Home
last modified time | relevance | path

Searched full:footer (Results 1 – 25 of 4173) sorted by relevance

12345678910>>...167

/external/python/bumble/docs/mkdocs/theme/partials/
Dfooter.html5 <footer class="md-footer">
7 <div class="md-footer-nav">
8 <nav class="md-footer-nav__inner md-grid">
10 …"{{ page.previous_page.title | striptags }}" class="md-flex md-footer-nav__link md-footer-nav__lin…
12 <i class="md-icon md-icon--arrow-back md-footer-nav__button"></i>
14 <div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title">
16 <span class="md-footer-nav__direction">
17 {{ lang.t("footer.previous") }}
25 …tle="{{ page.next_page.title | striptags }}" class="md-flex md-footer-nav__link md-footer-nav__lin…
26 <div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title">
[all …]
/external/setupcompat/main/java/com/google/android/setupcompat/template/
DFooterButton.java40 * Definition of a footer button. Clients can use this class to customize attributes like text,
72 * Allows client customize text, click listener and theme for footer button before Button has been
95 /** Returns the text that this footer button is displaying. */
101 * Registers a callback to be invoked when this view of footer button is clicked.
109 /** Returns an {@link OnClickListener} of this footer button. */
115 * Registers a callback to be invoked when footer button disabled and touch event has reacted.
123 /** Returns the type of this footer button icon. */
129 /** Returns the theme of this footer button. */
136 * Sets the enabled state of this footer button.
147 /** Returns the enabled status for this footer button. */
[all …]
/external/doclava/res/assets/templates-sdk/
Dfooter.cs1 <?cs # page footer content ?>
3 <div class="dac-footer<?cs if:fullpage ?> dac-landing<?cs /if ?>">
4 <div class="cols dac-footer-main">
6 …<a class="dac-footer-getnews" id="newsletter" data-modal-toggle="newsletter" href="javascript:;">G…
9 <div class="col-1of2 dac-footer-reachout">
10 <div class="dac-footer-contact">
11 <a class="dac-footer-contact-link" href="http://android-developers.blogspot.com/">Blog</a>
12 <a class="dac-footer-contact-link" href="/support.html">Support</a>
14 <div class="dac-footer-social">
15 …<a class="dac-button-social dac-youtube dac-footer-social-link" href="https://www.youtube.com/user…
[all …]
/external/setupcompat/partnerconfig/java/com/google/android/setupcompat/partnerconfig/
DPartnerConfigKey.java172 // Background color of the footer bar.
175 // The min height of the footer bar
178 // The padding start of the footer bar
181 // The padding end of the footer bar
184 // The font face used in footer buttons. This must be a string reference to a font that is
188 // The font weight used in footer buttons.
215 // Top padding of the footer buttons
218 // Bottom padding of the footer buttons
221 // Corner radius of the footer buttons
224 // Ripple color alpha of the footer buttons
[all …]
DPartnerConfig.java37 // Background color of the footer bar.
40 // The min height of the footer buttons
43 // The padding start of the footer bar
47 // The padding end of the footer bar
55 // The font face used in footer buttons. This must be a string reference to a font that is
60 // The font weight used in footer buttons.
96 // Top padding of the footer buttons
100 // Bottom padding of the footer buttons
104 // Corner radius of the footer buttons
107 // Ripple color alpha the footer buttons
[all …]
/external/arm-trusted-firmware/.husky/
Dcommit-msg.gerrit73 # - assume textLine+ to be a footer until proven otherwise
74 # - exception: the first block is not footer (as it is the title)
78 # aren't footer
79 # - in END, the last textLine+ block is available for footer parsing
86 # is a footer, the first block is not.
104 # Count blank lines outside footer comments
110 # Catch footer comment
132 # Detect that the current block is not the footer
148 # Footer handling:
149 # If the last block is considered a footer, splice in the Change-Id at the
[all …]
/external/leveldb/table/
Dtable.cc34 BlockHandle metaindex_handle; // Handle to metaindex_block: saved from footer
41 if (size < Footer::kEncodedLength) { in Open()
45 char footer_space[Footer::kEncodedLength]; in Open()
47 Status s = file->Read(size - Footer::kEncodedLength, Footer::kEncodedLength, in Open()
51 Footer footer; in Open() local
52 s = footer.DecodeFrom(&footer_input); in Open()
61 s = ReadBlock(file, opt, footer.index_handle(), &index_block_contents); in Open()
64 // We've successfully read the footer and the index block: we're in Open()
70 rep->metaindex_handle = footer.metaindex_handle(); in Open()
76 (*table)->ReadMeta(footer); in Open()
[all …]
/external/owasp/sanitizer/empiricism/
Dcanned-data.js50 "footer": true, property
176 "footer",
291 "footer",
406 "footer",
521 "footer",
636 "footer",
752 "footer",
867 "footer",
982 "footer",
1097 "footer",
[all …]
/external/llvm/test/Analysis/DivergenceAnalysis/AMDGPU/
Dphi-undef.ll6 ; CHECK-NEXT: DIVERGENT: br i1 %break, label %footer, label %body
14 %counter = phi i32 [ 0, %entry ], [ %counter.footer, %footer ]
16 br i1 %break, label %footer, label %body
20 br label %footer
22 footer:
23 %counter.footer = phi i32 [ %counter.next, %body ], [ undef, %header ]
/external/jsoncpp/doc/
Dfooter.html1 <!-- HTML footer for doxygen 1.8.13-->
2 <!-- start footer part -->
7 <li class="footer">$generatedby
9 <img class="footer" src="$relpath^doxygen.png" alt="doxygen"/></a> $doxygenversion </li>
14 <hr class="footer"/><address class="footer"><small>
16 <img class="footer" src="$relpath^doxygen.png" alt="doxygen"/>
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/jcajce/provider/asymmetric/x509/
DPEMUtil.java13 * Boundary class. Keeps track of the required header/footer pair for the
129 throw new IOException("malformed PEM data: found footer where header was expected"); in readPEMObject()
138 Boundaries footer = null; in readPEMObject() local
140 while (footer == null && (line = readLine(in)) != null) in readPEMObject()
142 footer = getBoundaries(line); in readPEMObject()
143 if (footer != null) in readPEMObject()
147 throw new IOException("malformed PEM data: header/footer mismatch"); in readPEMObject()
156 if (footer == null) in readPEMObject()
158 throw new IOException("malformed PEM data: no footer found"); in readPEMObject()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/
DPEMUtil.java12 * Boundary class. Keeps track of the required header/footer pair for the
128 throw new IOException("malformed PEM data: found footer where header was expected"); in readPEMObject()
137 Boundaries footer = null; in readPEMObject() local
139 while (footer == null && (line = readLine(in)) != null) in readPEMObject()
141 footer = getBoundaries(line); in readPEMObject()
142 if (footer != null) in readPEMObject()
146 throw new IOException("malformed PEM data: header/footer mismatch"); in readPEMObject()
155 if (footer == null) in readPEMObject()
157 throw new IOException("malformed PEM data: no footer found"); in readPEMObject()
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jcajce/provider/asymmetric/x509/
DPEMUtil.java13 * Boundary class. Keeps track of the required header/footer pair for the
129 throw new IOException("malformed PEM data: found footer where header was expected"); in readPEMObject()
138 Boundaries footer = null; in readPEMObject() local
140 while (footer == null && (line = readLine(in)) != null) in readPEMObject()
142 footer = getBoundaries(line); in readPEMObject()
143 if (footer != null) in readPEMObject()
147 throw new IOException("malformed PEM data: header/footer mismatch"); in readPEMObject()
156 if (footer == null) in readPEMObject()
158 throw new IOException("malformed PEM data: no footer found"); in readPEMObject()
/external/eigen/doc/
Deigendoxy_footer.html.in1 <!-- start footer part -->
6 <li class="footer">$generatedby
8 <img class="footer" src="$relpath^doxygen.png" alt="doxygen"/></a> $doxygenversion </li>
13 <hr class="footer"/><address class="footer"><small>
15 <img class="footer" src="$relpath^doxygen.png" alt="doxygen"/>
/external/avb/
Davbtool.py1969 magic: Magic for identifying the footer, see |MAGIC|.
1970 version_major: The major version of avbtool that wrote the footer.
1971 version_minor: The minor version of avbtool that wrote the footer.
1989 """Initializes a new footer object.
1995 LookupError: If the given footer is malformed.
1996 struct.error: If the given data has no footer.
2005 raise LookupError('Given data does not look like a AVB footer.')
2015 """Serializes the footer.
2018 The footer as bytes.
2215 image_filename: File to extract vbmeta data from (with a footer).
[all …]
/external/libopus/doc/
Dfooter.html1 <!-- HTML footer for doxygen 1.8.18-->
2 <!-- start footer part -->
6 <li class="footer">Generated by
8 <img class="footer" src="doxygen.png" alt="doxygen"/></a> $doxygenversion </li>
13 <hr class="footer"/>
21 <address class="footer"><small>
/external/tensorflow/tensorflow/core/lib/io/
Drecord_writer.h105 // Utility method to populate TFRecord footers. Populates record-footer in
106 // "footer[0,kFooterSize-1]". The record-footer is based on data[0, n-1].
107 inline static void PopulateFooter(char* footer, const char* data, size_t n);
110 inline static void PopulateFooter(char* footer, const absl::Cord& data);
136 void RecordWriter::PopulateFooter(char* footer, const char* data, size_t n) { in PopulateFooter() argument
137 core::EncodeFixed32(footer, MaskedCrc(data, n)); in PopulateFooter()
147 void RecordWriter::PopulateFooter(char* footer, const absl::Cord& data) { in PopulateFooter() argument
148 core::EncodeFixed32(footer, MaskedCrc(data)); in PopulateFooter()
Dtable.cc38 BlockHandle metaindex_handle; // Handle to metaindex_block: saved from footer
45 if (size < Footer::kEncodedLength) { in Open()
49 char footer_space[Footer::kEncodedLength]; in Open()
51 Status s = file->Read(size - Footer::kEncodedLength, Footer::kEncodedLength, in Open()
55 Footer footer; in Open() local
56 s = footer.DecodeFrom(&footer_input); in Open()
63 s = ReadBlock(file, footer.index_handle(), &contents); in Open()
67 // We've successfully read the footer and the index block: we're in Open()
73 rep->metaindex_handle = footer.metaindex_handle(); in Open()
/external/f2fs-tools/fsck/
Dnode.h23 return ((node)->footer.nid == (node)->footer.ino); in IS_INODE()
29 nid_t ino = le32_to_cpu(node_blk->footer.ino); in ADDRS_PER_PAGE()
130 return le32_to_cpu(node_blk->footer.ino); in ino_of_node()
135 return le64_to_cpu(node_blk->footer.cp_ver); in cpver_of_node()
156 return le32_to_cpu(node_blk->footer.next_blkaddr); in next_blkaddr_of_node()
161 return le32_to_cpu(node_blk->footer.flag) & (1 << type); in is_node()
166 unsigned int flag = le32_to_cpu(rn->footer.flag); in set_cold_node()
172 rn->footer.flag = cpu_to_le32(flag); in set_cold_node()
/external/libcups/doc/help/
Dspec-banner.html34 # The header and footer text
36 Footer Cover Page
52 <h3><a name='Footer'>Footer</a></h3>
55 Footer text for footer
58 <p>The <code>Footer</code> key defines the text that is centered at the bottom
59 of the page. Only one <code>Footer</code> key can be specified.</p>
79 <p>The <code>Image</code> key defines images that are centered above the footer
/external/skia/src/base/
DSkArenaAlloc.cpp24 if (size < sizeof(Footer)) {
46 char* objEnd = footerEnd - (sizeof(Footer) + sizeof(uint32_t)); in SkipPod()
57 memcpy(&action, footerEnd - sizeof( Footer), sizeof( action)); in RunDtorsOnBlock()
65 char* objEnd = footerEnd - (sizeof(char*) + sizeof(Footer)); in NextBlock()
74 constexpr uint32_t headerSize = sizeof(Footer) + sizeof(ptrdiff_t); in ensureSpace()
76 constexpr uint32_t overhead = headerSize + sizeof(Footer); in ensureSpace()
116 skipOverhead = sizeof(Footer) + sizeof(uint32_t); in allocObjectWithFooter()
136 // Install a skip footer if needed, thus terminating a run of POD data. The calling code is in allocObjectWithFooter()
137 // responsible for installing the footer after the object. in allocObjectWithFooter()
/external/cronet/net/cert/
Dpem.cc27 std::string footer; member
51 // Look for a footer matching the header. If none is found, then all in GetNext()
53 StringPiece::size_type footer_pos = str_.find(it->footer, pos_); in GetNext()
59 // Chop off the header and footer and parse the data in between. in GetNext()
61 pos_ = footer_pos + it->footer.size(); in GetNext()
91 // Construct PEM header/footer strings for all the accepted types, to in Init()
98 allowed_type.footer = in Init()
115 // header & footer in PEMEncode()
/external/rust/crates/grpcio-sys/grpc/third_party/re2/lib/git/
Dcommit-msg.hook72 @footer = @message[$startFooter+1..@message];
74 push(@footer, "") unless @footer;
76 for ($line = 0; $line < @footer; $line++) {
77 $_ = $footer[$line];
81 splice(@footer, $line, 0, "Change-Id: I$id");
83 $_ = join("\n", @message, @footer);
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/docs/_sass/components/
D_footer.scss5 .footer { class
8 color: $footer-text-color;
9 background: $footer-background;
11 @include link-colors ($footer-text-color, $main-color-1);
20 @include split-line(right, default, $footer-text-color);
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/docs/_sass/components/
D_footer.scss5 .footer { class
8 color: $footer-text-color;
9 background: $footer-background;
11 @include link-colors ($footer-text-color, $main-color-1);
20 @include split-line(right, default, $footer-text-color);

12345678910>>...167