Searched defs:section (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DSectionIndexer.java21 * in an {@link AbsListView} between sections of the list. A section is a group of list items
27 * This provides the list view with an array of section objects. In the simplest
37 * Provides the starting index in the list for a given section.
38 * @param section the index of the section to jump to.
39 * @return the starting position of that section. If the section is out of bounds, the
42 int getPositionForSection(int section); argument
45 * This is a reverse mapping to fetch the section index for a given position
47 * @param position the position for which to return the section
[all...]
/frameworks/compile/mclinker/lib/LD/
H A DSectionMerger.cpp40 // wildcard to a user-defined output section.
49 LDSection* section; local
55 section = (*it).outputSection;
57 section = m_Output.getSection(pName);
59 assert(NULL != section);
60 return section;
H A DELFObjectReader.cpp70 /// readObject - read section header and create LDSections.
88 LDContext::sect_iterator section, sectEnd = pInput.context()->sectEnd(); local
89 for (section = pInput.context()->sectBegin(); section != sectEnd; ++section) {
90 // ignore the section if the LDSection* in input context is NULL
91 if (NULL == *section)
94 switch((*section)->kind()) {
97 assert(NULL != (*section)->getLink());
100 *(*section)
248 LDContext::sect_iterator section, sectEnd = pInput.context()->sectEnd(); local
[all...]
H A DELFWriter.cpp188 // emit section header
198 unsigned int shstridx = 0; // NULL section has empty name
221 // emit section header
231 unsigned int shstridx = 0; // NULL section has empty name
317 /// emitELF32ShStrTab - emit section string table
332 LDContext::const_sect_iterator section, sectEnd = pOutput.context()->sectEnd(); local
333 for (section = pOutput.context()->sectBegin(); section != sectEnd; ++section) {
334 shstrsize += (*section)
374 LDContext::const_sect_iterator section, sectEnd = pOutput.context()->sectEnd(); local
[all...]
/frameworks/compile/linkloader/include/impl/
H A DELFSymbol.hxx36 ELFSectionTy const *section = owner->getSectionByIndex(index); local
38 *static_cast<ELFSectionStrTabTy const *>(section);
66 // Set the section header index
142 "STT_OBJECT with not BITS section.");
160 rsl_assert(sec != 0 && "STT_OBJECT with null section.");
222 "STT_FUNC with not PROGBITS section.");
225 rsl_assert(sec != 0 && "STT_FUNC with null section.");
252 "STT_SECTION with not BITS section.");
255 rsl_assert(sec != 0 && "STT_SECTION with null section.");
281 "STT_SECTION with not BITS section
[all...]
/frameworks/compile/libbcc/lib/ExecutionEngine/
H A DELFObjectLoaderImpl.cpp65 // Update the value of sh_addr in pDebugImg to its corresponding section in
71 ALOGE("Invalid section header table offset found! (e_shoff = %d)",
78 ALOGE("Invalid image supplied (debug image doesn't contain all the section"
90 ELFSectionBits<32> *section = local
92 if (section != NULL) {
94 reinterpret_cast<llvm::ELF::Elf32_Addr>(section->getBuffer());
/frameworks/compile/mclinker/include/mcld/LD/
H A DELFReader.h70 /// readSectionHeaders - read ELF section header table and create LDSections
75 /// readRegularSection - read a regular section and create fragments.
80 /// readRegularSection - read a target section and create fragments.
92 /// This is used to get the signature of a group section.
118 /// LinkInfo - some section needs sh_link and sh_info, remember them.
120 LDSection* section; member in struct:mcld::ELFReaderIF::LinkInfo
194 /// readSectionHeaders - read ELF section header table and create LDSections
199 /// readRegularSection - read a regular section and create fragments.
204 /// readRegularSection - read a target section and create fragments.
216 /// This is used to get the signature of a group section
[all...]
/frameworks/compile/mclinker/unittests/
H A DNamePoolTest.cpp183 const llvm::MCSectionData *section = 0; local
193 section,
216 const llvm::MCSectionData *section = 0; local
230 section,
246 section,
261 section,
/frameworks/av/media/libstagefright/mpeg2ts/
H A DATSParser.cpp281 // variable length section of ES_infos. It does not include the
1039 const sp<PSISection> &section = mPSISections.valueAt(sectionIndex); local
1042 CHECK(section->isEmpty());
1050 status_t err = section->append(br->data(), br->numBitsLeft() / 8);
1056 if (!section->isComplete()) {
1060 ABitReader sectionBits(section->data(), section->size());
1086 section->clear();
/frameworks/base/media/jni/
H A Dandroid_mtp_MtpDatabase.cpp801 Section_t* section = FindSection(M_EXIF); local
802 if (section) {
833 Section_t* section = FindSection(M_EXIF); local
834 if (section) {
838 memcpy(result, section->Data + ImageInfo.ThumbnailOffset + 8, outThumbSize);

Completed in 1067 milliseconds