HomeSort by relevance Sort by last modified time
    Searched defs:header (Results 651 - 675 of 2389) sorted by null

<<21222324252627282930>>

  /frameworks/support/samples/SupportLeanbackDemos/src/main/java/com/example/android/leanback/
RowsSupportFragment.java 94 HeaderItem header = new HeaderItem(i, "Row " + i); local
95 rowsAdapter.add(new ListRow(header, listRowAdapter));
  /frameworks/wilhelm/src/android/util/
AacAdtsExtractor.cpp 28 // ADTS header size is 7, but frame size information ends on byte 6 (when counting from byte 1)
54 const uint8_t *header = syncHeader + 3; local
63 SL_LOGE("AacAdtsExtractor:: getFrameSize() returns %d (syncword and header read error)",
75 frameSize = (header[0] & 0x3) << 11 | header[1] << 3 | header[2] >> 5;
76 // the frame size read already contains the size of the ADTS header, so no need to add it here
108 uint8_t profile, sf_index, channel, header[2]; local
109 ssize_t readSize = mDataSource->readAt(2, &header, 2);
115 profile = (header[0] >> 6) & 0x3
    [all...]
  /hardware/intel/bootstub/
sfi.h 41 struct sfi_table_header header; member in struct:sfi_table
48 ((ptable->header.length - SFI_TBL_HEADER_LEN) / \
  /hardware/intel/common/libmix/mix_video/src/
mixvideoconfigparamsdec.h 72 MixIOVec header; member in struct:_MixVideoConfigParamsDec
145 MixIOVec *header);
149 MixIOVec ** header);
  /hardware/intel/img/psb_video/fw/topazhp/
fwinfo.c 71 topaz_fw_info_item_t header; member in struct:fw_table_s
153 /* read header */
154 fread(&(topaz_fw_table[iter].header), sizeof(topaz_fw_table[iter].header), 1, fp);
156 /* print header */
157 printf("topaz: index : %s\n", codec_to_string(topaz_fw_table[iter].header.codec));
158 printf("topaz: ver : 0x%04x\n", topaz_fw_table[iter].header.ver);
159 printf("topaz: Codec : %s\n", codec_to_string(topaz_fw_table[iter].header.codec));
160 printf("topaz: text_size : %d\n", (topaz_fw_table[iter].header.text_size >> 2));
161 printf("topaz: data_size : %d\n", (topaz_fw_table[iter].header.data_size >> 2))
    [all...]
  /hardware/intel/img/psb_video/fw/topazsc/
fwinfo.c 71 topaz_fw_info_item_t header; member in struct:fw_table_s
153 /* read header */
154 fread(&(topaz_fw_table[iter].header), sizeof(topaz_fw_table[iter].header), 1, fp);
156 /* print header */
157 printf("topaz: index : %s\n", codec_to_string(topaz_fw_table[iter].header.codec));
158 printf("topaz: ver : 0x%04x\n", topaz_fw_table[iter].header.ver);
159 printf("topaz: Codec : %s\n", codec_to_string(topaz_fw_table[iter].header.codec));
160 printf("topaz: text_size : %d\n", (topaz_fw_table[iter].header.text_size >> 2));
161 printf("topaz: data_size : %d\n", (topaz_fw_table[iter].header.data_size >> 2))
    [all...]
topaz_bin.c 74 topaz_fw_info_item_t header; member in struct:fw_table_s
87 /* index header
228 topaz_fw_table[iter].header.data_size *= 4;
229 topaz_fw_table[iter].header.text_size *= 4;
231 /* write header */
232 fwrite(&(topaz_fw_table[iter].header), sizeof(topaz_fw_table[iter].header), 1, fp);
235 size = topaz_fw_table[iter].header.text_size;
239 size = topaz_fw_table[iter].header.data_size;
  /packages/apps/Dialer/java/com/android/dialer/searchfragment/list/
SearchAdapter.java 110 String header = local
112 ((HeaderViewHolder) holder).setHeader(header);
  /packages/apps/DocumentsUI/src/com/android/documentsui/inspector/actions/
ActionView.java 68 LinearLayout header = (LinearLayout) findViewById(R.id.action_header); local
69 return (TextView) header.findViewById(R.id.inspector_header_title);
91 public void setActionHeader(String header) {
92 mHeader.setText(header);
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/preprovisioning/terms/
TermsProvider.java 123 String header = getStringMetaData(appInfo, EXTRA_PROVISIONING_DISCLAIMER_HEADER); local
125 if (header != null && content != null) {
126 terms.add(TermsDocument.createInstance(header, content));
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/apps/specialaccess/
ManageApplicationsController.java 41 * Use this preference key for a header pref not removed during refresh
43 public static final String HEADER_KEY = "header";
134 final Preference header = group.findPreference(HEADER_KEY); local
138 if (header != null) {
139 group.addPreference(header);
178 * plus optionally a header preference with the key {@link #HEADER_KEY}
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/internet/
MimeHeader.java 29 * Application specific header that contains Store specific information about an attachment.
32 * The info is recorded from this header on LocalStore.appendMessage and is put back
43 * Fields that should be omitted when writing the header using writeTo()
58 String[] header = getHeader(name); local
59 if (header == null) {
62 return header[0];
101 * Write header into String
103 * @return CR-NL separated header string except the headers in writeOmitFields
104 * null if header is empty
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationViewAdapter.java 62 * message may have a header and footer, and since they are not drawn coupled together, they each
149 ConversationViewHeader header = (ConversationViewHeader) v; local
150 header.bind(this);
291 final MessageHeaderView header = (MessageHeaderView) v; local
292 header.bind(this, measureOnly);
303 final MessageHeaderView header = (MessageHeaderView) v; local
304 header.refresh();
389 final MessageHeaderView header = (MessageHeaderView) view; local
390 header.rebind(this);
399 * A footer can only exist if there is a matching header. Requiring a header allows
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
BinaryDictionaryUtils.java 56 // dictType is never used for reading the header. Passing an empty string.
61 final DictionaryHeader header = binaryDictionary.getHeader(); local
63 if (header == null) {
66 return header;
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
OpenHelper.java 113 final String header = getCursorString(headers, RequestHeaders.COLUMN_HEADER); local
114 if ("Referer".equalsIgnoreCase(header)) {
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/DebugInfo/CodeView/
DebugLinesSubsection.h 42 // header. The structure definitions follow.
70 const LineFragmentHeader *Header = nullptr;
90 const LineFragmentHeader *header() const { return Header; } function in class:llvm::codeview::final
95 const LineFragmentHeader *Header = nullptr;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/DebugInfo/CodeView/
DebugLinesSubsection.h 42 // header. The structure definitions follow.
70 const LineFragmentHeader *Header = nullptr;
90 const LineFragmentHeader *header() const { return Header; } function in class:llvm::codeview::final
95 const LineFragmentHeader *Header = nullptr;
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/DebugInfo/CodeView/
DebugLinesSubsection.h 48 // header. The structure definitions follow.
76 const LineFragmentHeader *Header = nullptr;
97 const LineFragmentHeader *header() const { return Header; } function in class:llvm::codeview::final
102 const LineFragmentHeader *Header = nullptr;
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/DebugInfo/CodeView/
DebugLinesSubsection.h 48 // header. The structure definitions follow.
76 const LineFragmentHeader *Header = nullptr;
97 const LineFragmentHeader *header() const { return Header; } function in class:llvm::codeview::final
102 const LineFragmentHeader *Header = nullptr;
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/DebugInfo/CodeView/
DebugLinesSubsection.h 48 // header. The structure definitions follow.
76 const LineFragmentHeader *Header = nullptr;
97 const LineFragmentHeader *header() const { return Header; } function in class:llvm::codeview::final
102 const LineFragmentHeader *Header = nullptr;
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/DebugInfo/CodeView/
DebugLinesSubsection.h 48 // header. The structure definitions follow.
76 const LineFragmentHeader *Header = nullptr;
97 const LineFragmentHeader *header() const { return Header; } function in class:llvm::codeview::final
102 const LineFragmentHeader *Header = nullptr;
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/DebugInfo/CodeView/
DebugLinesSubsection.h 42 // header. The structure definitions follow.
70 const LineFragmentHeader *Header = nullptr;
90 const LineFragmentHeader *header() const { return Header; } function in class:llvm::codeview::final
95 const LineFragmentHeader *Header = nullptr;
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/DebugInfo/CodeView/
DebugLinesSubsection.h 42 // header. The structure definitions follow.
70 const LineFragmentHeader *Header = nullptr;
90 const LineFragmentHeader *header() const { return Header; } function in class:llvm::codeview::final
95 const LineFragmentHeader *Header = nullptr;
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/DebugInfo/CodeView/
DebugLinesSubsection.h 48 // header. The structure definitions follow.
76 const LineFragmentHeader *Header = nullptr;
97 const LineFragmentHeader *header() const { return Header; } function in class:llvm::codeview::final
102 const LineFragmentHeader *Header = nullptr;
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/DebugInfo/CodeView/
DebugLinesSubsection.h 48 // header. The structure definitions follow.
76 const LineFragmentHeader *Header = nullptr;
97 const LineFragmentHeader *header() const { return Header; } function in class:llvm::codeview::final
102 const LineFragmentHeader *Header = nullptr;

Completed in 1877 milliseconds

<<21222324252627282930>>