HomeSort by relevance Sort by last modified time
    Searched refs:footer (Results 1 - 25 of 142) sorted by null

1 2 3 4 5 6

  /cts/tests/src/android/widget/cts/
ExpandableListWithHeaders.java 51 Button footer = new Button(this); local
52 footer.setText("Footer View");
53 expandableListView.addFooterView(footer);
56 // Set adapter here AFTER we set header and footer views
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListWithHeaders.java 49 Button footer = new Button(this); local
50 footer.setText("Footer View");
51 listView.addFooterView(footer);
  /external/qemu/proxy/
proxy_http_int.h 22 char* footer; /* the footer contains the static parts of the */ member in struct:HttpService
proxy_http.c 25 if (service->footer != service->footer0)
26 qemu_free(service->footer);
112 /* prepare footer */
161 PROXY_LOG( "%s: buffer overflow when creating connection footer",
167 service->footer = service->footer0;
168 service->footer_len = (p - service->footer);
171 PROXY_LOG( "%s: creating HTTP Proxy Service Footer is (len=%d):\n'%.*s'",
173 service->footer_len, service->footer );
  /external/chromium/net/base/
pem_tokenizer.cc 26 std::string footer; member in struct:net::PEMTokenizer::PEMType
51 // Look for a footer matching the header. If none is found, then all
53 StringPiece::size_type footer_pos = str_.find(it->footer, pos_);
59 // Chop off the header and footer and parse the data in between.
61 pos_ = footer_pos + it->footer.size();
93 // Construct PEM header/footer strings for all the accepted types, to
100 allowed_type.footer = base::StringPrintf(kPEMEndBlock, it->c_str());
  /external/chromium/chrome/browser/resources/ntp4/
new_tab.css 31 /* Must match #footer height. */
35 by footer */
48 #footer {
56 * border-image on #footer once WebKit supports border-image-slice.
58 #footer-border {
64 #footer-content {
70 #footer-content > * {
75 #footer-content span {
149 #footer.rearrange-mode #trash {
  /external/qemu/block/
vpc.c 70 // Checksum of the Hard Disk Footer ("one's complement of the sum of all
71 // the bytes in the footer without the checksum field")
157 struct vhd_footer* footer; local
165 footer = (struct vhd_footer*) s->footer_buf;
166 if (strncmp(footer->creator, "conectix", 8))
169 checksum = be32_to_cpu(footer->checksum);
170 footer->checksum = 0;
176 // rather than on the size stored in the footer (the size in the footer
179 be16_to_cpu(footer->cyls) * footer->heads * footer->secs_per_cyl
494 struct vhd_footer* footer = (struct vhd_footer*) buf; local
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
HeaderViewListAdapterTest.java 45 ArrayList<ListView.FixedViewInfo> footer = new ArrayList<ListView.FixedViewInfo>(5); local
46 new HeaderViewListAdapter(header, footer, null);
48 new HeaderViewListAdapter(header, footer, new HeaderViewEmptyAdapter());
67 ArrayList<ListView.FixedViewInfo> footer = new ArrayList<ListView.FixedViewInfo>(4); local
68 footer.add(lv.new FixedViewInfo());
69 headerViewListAdapter = new HeaderViewListAdapter(null, footer, null);
114 ArrayList<ListView.FixedViewInfo> footer = new ArrayList<ListView.FixedViewInfo>(4); local
121 footer.add(info1);
122 footer.add(info2);
123 HeaderViewListAdapter headerViewListAdapter = new HeaderViewListAdapter(null, footer, null)
152 ArrayList<ListView.FixedViewInfo> footer = new ArrayList<ListView.FixedViewInfo>(4); local
199 ArrayList<ListView.FixedViewInfo> footer = new ArrayList<ListView.FixedViewInfo>(4); local
225 ArrayList<ListView.FixedViewInfo> footer = new ArrayList<ListView.FixedViewInfo>(4); local
    [all...]
  /bootable/recovery/
verifier.cpp 51 // archive comment.) We start by reading this footer, this tells
63 unsigned char footer[FOOTER_SIZE]; local
64 if (fread(footer, 1, FOOTER_SIZE, f) != FOOTER_SIZE) {
65 LOGE("failed to read footer from %s (%s)\n", path, strerror(errno));
70 if (footer[2] != 0xff || footer[3] != 0xff) {
75 size_t comment_size = footer[4] + (footer[5] << 8);
76 size_t signature_start = footer[0] + (footer[1] << 8)
    [all...]
  /dalvik/vm/compiler/template/armv5te/
TEMPLATE_MEM_OP_DECODE.S 11 ldr r2, .LdvmSelfVerificationMemOpDecode @ defined in footer.S
  /dalvik/vm/compiler/template/armv5te-vfp/
TEMPLATE_MEM_OP_DECODE.S 12 ldr r2, .LdvmSelfVerificationMemOpDecode @ defined in footer.S
  /external/qemu/
gen-skin.py 17 footer = """\
75 print footer
  /external/webkit/Tools/Scripts/webkitpy/tool/commands/data/rebaselineserver/
main.css 85 #footer {
97 #footer .divider {
103 #footer label {
113 #footer label span {
196 #footer {
245 #footer button {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutMetadata.java 73 /** The property key, included in comments, which references a list footer layout */
308 String footer = map.get(KEY_LV_FOOTER); local
310 if (layout != null || header != null || footer != null) {
312 return getNodeBinding(viewObject, header, footer, layout, count);
333 String footer = getProperty(xmlNode, KEY_LV_FOOTER); local
335 if (layout != null || header != null || footer != null) {
358 return getNodeBinding(viewObject, header, footer, layout, count);
365 String header, String footer, String layout, int count) {
366 if (layout != null || header != null || footer != null) {
375 if (footer != null)
    [all...]
  /frameworks/base/core/java/android/os/
RecoverySystem.java 163 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...]
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
HTMLDocument.java 90 public void setFooter (final IContent footer)
92 if (footer != null) m_footer = footer;
96 * Overridden to ensure header/footer appear first/last in the body.
  /external/webkit/Tools/WinLauncher/
PrintWebUIDelegate.cpp 176 LPCWSTR footer = L"[Sample Footer]"; local
177 size_t length = wcslen(footer);
179 // Add a line, 1/10th inch above the footer text from left margin to right margin.
186 int rc = ::DrawTextW(dc, footer, length, rect, DT_LEFT | DT_NOCLIP | DT_VCENTER | DT_SINGLELINE);
  /external/chromium/chrome/browser/resources/touch_ntp/
newtab.css 35 by footer
40 bottom: 60px; /* must match #footer height */
139 #footer {
171 #footer.rearrange-mode .dot {
210 #footer.rearrange-mode #trash {
  /external/libvpx/libvpx/examples/includes/geshi/contrib/
aliased.php 93 #footer {
98 #footer a {
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/systrace/
SystraceOutputParser.java 168 String footer = HTML_SUFFIX; local
169 return header + html_out + footer;
  /frameworks/base/libs/androidfw/
ObbFile.cpp 40 * 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 size is too small (0x%zx; minimum size is 0x%x)\n"
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
ManageCachePage.java 118 View footer = mActivity.findViewById(R.id.footer);
119 if (footer != null) {
121 footer.getLocationOnScreen(location);
222 FrameLayout layout = (FrameLayout) ((Activity) mActivity).findViewById(R.id.footer);
242 FrameLayout layout = (FrameLayout) ((Activity) mActivity).findViewById(R.id.footer);
266 FrameLayout layout = (FrameLayout) ((Activity) mActivity).findViewById(R.id.footer);
  /build/tools/droiddoc/templates-ds/
sampleindex.cs 46 <?cs include:"footer.cs" ?>
  /build/tools/droiddoc/templates-pdk/
sampleindex.cs 46 <?cs include:"footer.cs" ?>
  /build/tools/droiddoc/templates-sac/
sampleindex.cs 46 <?cs include:"footer.cs" ?>

Completed in 1070 milliseconds

1 2 3 4 5 6