Searched refs:section (Results 1 - 25 of 56) sorted by relevance

123

/frameworks/support/v17/leanback/jbmr2/android/support/v17/leanback/os/
H A DTraceHelperJbmr2.java22 public static void beginSection(String section) { argument
23 Trace.beginSection(section);
/frameworks/support/v4/jellybean-mr2/android/support/v4/os/
H A DTraceJellybeanMR2.java19 public static void beginSection(String section) { argument
20 Trace.beginSection(section);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/os/
H A DTraceHelper.java31 public void beginSection(String section); argument
37 public void beginSection(String section) { argument
47 public void beginSection(String section) { argument
48 TraceHelperJbmr2.beginSection(section);
68 public static void beginSection(String section) { argument
69 sImpl.beginSection(section);
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DSectionedListAdapter.java30 * Adapter that combines multiple adapters as sections, asking each section to
69 final SectionAdapter section = mSections.get(i);
70 final int sectionSize = section.getCount() + 1;
72 // Check if position inside this section
74 return section;
76 return section.getItem(position - 1);
79 // Otherwise jump into next section
94 final SectionAdapter section = mSections.get(i);
95 final int sectionSize = section.getCount() + 1;
97 // Check if position inside this section
[all...]
/frameworks/compile/mclinker/lib/LD/
H A DELFObjectReader.cpp92 /// readHeader - read section header and create LDSections.
110 LDContext::sect_iterator section, sectEnd = pInput.context()->sectEnd(); local
111 for (section = pInput.context()->sectBegin(); section != sectEnd; ++section) {
112 // ignore the section if the LDSection* in input context is NULL
113 if (*section == NULL)
116 switch ((*section)->kind()) {
119 assert((*section)->getLink() != NULL);
121 pInput, *(*section)
[all...]
H A DGarbageCollection.cpp43 // SectionMap will cause the output order change in .text section and leads to
50 /// shouldKeep - check the section name for the keep sections
61 /// shouldProcessGC - check if the section kind is handled in GC
109 // section
131 // bypass the discarded relocation section
132 // 1. its section kind is changed to Ignore. (The target section is a
133 // discarded group section.)
168 // of this section, create an entry in ReachedSections map
190 LDSection* section local
332 LDSection* section = *sect; local
[all...]
H A DELFObjectWriter.cpp53 LDSection* section) {
56 switch (section->kind()) {
58 if (section->getSectionData() == NULL)
69 region = pOutput.request(section->offset(), section->size());
85 llvm::errs() << "WARNING: unsupported section kind: " << section->kind()
86 << " of section " << section->name() << ".\n";
91 switch (section
51 writeSection(Module& pModule, FileOutputBuffer& pOutput, LDSection* section) argument
371 Module::const_iterator section, sectEnd = pModule.end(); local
[all...]
H A DELFReader.cpp53 /// readRegularSection - read a regular section and create fragments.
103 // If the section should not be included, set the st_shndx SHN_UNDEF
104 // - A section in interrelated groups are not included.
121 // get ld_value - ld_value must be section relative.
127 // get section
128 LDSection* section = NULL; local
130 section = pInput.context()->getSection(st_shndx);
135 // Section symbol's st_name is the section index.
136 assert(section != NULL && "get a invalid section");
405 LDSection* section = IRBuilder::CreateELFHeader( local
628 LDSection* section = NULL; local
899 LDSection* section = IRBuilder::CreateELFHeader( local
[all...]
H A DEhFrameReader.cpp120 LDSection& section = pEhFrame.getSection(); local
121 if (section.size() == 0x0) {
128 uint64_t file_off = pInput.fileOffset() + section.offset();
130 pInput.memArea()->request(file_off, section.size());
/frameworks/base/docs/html/training/
H A Dtraining_toc.cs2 <li class="nav-section">
3 <div class="nav-section-header">
10 <li class="nav-section">
11 <div class="nav-section-header">
38 <li class="nav-section">
39 <div class="nav-section-header">
67 <li class="nav-section">
68 <div class="nav-section-header">
91 <li class="nav-section">
92 <div class="nav-section
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src_gcc/
H A DarmVCM4P10_QuantTables_s.S25 .section .rodata
H A DarmVCM4P10_DequantTables_s.S25 .section .rodata
/frameworks/compile/mclinker/unittests/
H A DNamePoolTest.cpp147 const llvm::MCSectionData* section = 0; local
154 name, isDyn, type, binding, section, value, size, other);
173 const llvm::MCSectionData* section = 0; local
184 name, isDyn, type, binding, section, value, size, other);
194 name, isDyn, type, binding, section, value, size, other);
203 name, isDyn, type, binding, section, value, size, other);
/frameworks/av/include/camera/
H A DVendorTagDescriptor.h53 // Returns the section name string for a given vendor tag id.
78 * Lookup the tag id for a given tag name and section.
82 status_t lookupTag(String8 name, String8 section, /*out*/uint32_t* tag) const;
/frameworks/base/cmds/idmap/
H A Dinspect.cpp127 void print(const char *section, const char *subsection, uint32_t value, const char *fmt, ...) { argument
131 printf("%-12s %-12s 0x%08x ", section, subsection, value);
137 void print_path(const char *section, const char *subsection, const char *fmt, ...) { argument
141 printf("%-12s %-12s .......... ", section, subsection);
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/asm/ARMV5E/
H A DDot_p_opt.s29 .section .text
H A Dscale_sig_opt.s27 .section .text
/frameworks/base/core/jni/
H A Dandroid_hardware_camera2_CameraMetadata.cpp725 const char* section = vTags->getSectionName(id); local
729 size_t totalLen = strlen(section) + strlen(tag) + 2;
731 snprintf(&fullName[0], totalLen, "%s.%s", section, tag);
804 // First, find the section by the longest string match
805 const char *section = NULL; local
814 ALOGV("%s: Trying to match against section '%s'", __FUNCTION__, str);
816 if (strstr(key, str) == key) { // key begins with the section name
820 ALOGV("%s: Key begins with section name", __FUNCTION__);
823 // section name is the longest we've found so far
824 if (section
[all...]
/frameworks/compile/mclinker/include/mcld/LD/
H A DELFObjectWriter.h44 LDSection* section);
H A DELFReaderIf.h55 /// readSectionHeaders - read ELF section header table and create LDSections
59 /// readRegularSection - read a regular section and create fragments.
69 /// This is used to get the signature of a group section.
88 /// LinkInfo - some section needs sh_link and sh_info, remember them.
90 LDSection* section; member in struct:mcld::ELFReaderIF::LinkInfo
/frameworks/av/media/libstagefright/codecs/aacenc/src/asm/ARMV5E/
H A DPrePostMDCT_v5.s24 .section .text
78 .section .text
/frameworks/av/media/libstagefright/codecs/aacenc/src/asm/ARMV7/
H A DR4R8First_v7.s24 .section .text
118 .section .text
/frameworks/base/core/java/android/widget/
H A DFastScroller.java165 /** The index of the current section. */
984 * Scrolls to a specific position within the section
1001 // Given the expected section and index, the following code will
1012 // Assume the next section is unique
1017 // Find the previous index if we're slicing the previous section
1028 // When section reaches 0 here, sectionIndex must follow it.
1049 // currently visible section. This could be equal to or greater than
1104 * Transitions the preview text to a new section. Handles animation,
1107 * @param sectionIndex The section index to which the preview should
1115 final Object section
[all...]
/frameworks/av/camera/
H A DVendorTagDescriptor.cpp87 ALOGE("%s: vendor tag %d not in vendor tag section.", __FUNCTION__, tag);
98 ALOGE("%s: no section name defined for vendor tag %d.", __FUNCTION__, tag);
121 // Set up tag to section index map
172 ALOGE("%s: vendor tag %d not in vendor tag section.", __FUNCTION__, tag);
193 ALOGE("%s: could not read section index for tag %d.", __FUNCTION__, tag);
212 ALOGE("%s: could not read section count for.", __FUNCTION__);
225 ALOGE("%s: parcel section name was NULL for section %zu.",
331 status_t VendorTagDescriptor::lookupTag(String8 name, String8 section, /*out*/uint32_t* tag) const {
332 ssize_t index = mReverseMapping.indexOfKey(section);
[all...]
/frameworks/av/media/libstagefright/mpeg2ts/
H A DATSParser.cpp394 // variable length section of ES_infos. It does not include the
1308 sp<PSISection> section = mPSISections.valueAt(sectionIndex); local
1311 if (!section->isEmpty()) {
1312 ALOGW("parsePID encounters payload_unit_start_indicator when section is not empty");
1313 section->clear();
1317 section->setSkipBytes(skip + 1); // skip filler bytes + pointer field itself
1324 status_t err = section->append(br->data(), br->numBitsLeft() / 8);
1330 if (!section->isComplete()) {
1334 if (!section->isCRCOkay()) {
1337 ABitReader sectionBits(section
[all...]

Completed in 1238 milliseconds

123