HomeSort by relevance Sort by last modified time
    Searched full:sectionsize (Results 1 - 10 of 10) sorted by null

  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
SectionedListAdapter.java 70 final int sectionSize = section.getCount() + 1;
75 } else if (position < sectionSize) {
80 position -= sectionSize;
95 final int sectionSize = section.getCount() + 1;
100 } else if (position < sectionSize) {
105 position -= sectionSize;
120 final int sectionSize = section.getCount() + 1;
125 } else if (position < sectionSize) {
130 position -= sectionSize;
141 final int sectionSize = section.getCount() + 1
    [all...]
  /packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/
ContactEntryAdapter.java 111 int sectionSize = section.size();
112 for (int j = 0; j < sectionSize; j++) {
119 position += sectionSize;
151 int sectionSize = section.size();
152 if (sectionSize == 1) {
160 position -= sectionSize;
184 int sectionSize = section.size();
185 if (separators && sectionSize == 1) {
209 int sectionSize = section.size();
210 if (separators && sectionSize == 1)
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
StickyHeaderListView.java 265 int sectionSize = 0;
274 sectionSize = 0;
283 sectionSize = mIndexer.getHeaderItemsNumber(sectionPos);
293 mNextSectionPosition = sectionSize + sectionPos + 1;
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 266 uint64_t SectionSize = DataSize + StubBufSize;
274 SectionSize += 4;
276 if (SectionSize > 0) {
279 CodeSectionSizes.push_back(SectionSize);
281 ROSectionSizes.push_back(SectionSize);
283 RWSectionSizes.push_back(SectionSize);
  /external/llvm/lib/DebugInfo/
DWARFContext.cpp 718 uint64_t SectionSize;
719 RelocatedSection->getSize(SectionSize);
746 if (Address + R.Width > SectionSize) {
749 << SectionSize << " bytes long.\n";
  /external/llvm/lib/MC/
MachObjectWriter.cpp 206 uint64_t SectionSize = Layout.getSectionAddressSize(&SD);
225 Write64(SectionSize); // size
228 Write32(SectionSize); // size
    [all...]
WinCOFFObjectWriter.cpp 253 return COFF::SectionSize;
901 offset += COFF::SectionSize * Header.NumberOfSections;
    [all...]
MCDwarf.cpp 824 const MCExpr *SectionSize = MakeStartMinusEndExpr(*MCOS,
827 MCOS->EmitAbsValue(SectionSize, AddrSize);
    [all...]
  /external/llvm/include/llvm/Support/
COFF.h 44 SectionSize = 40,
  /external/llvm/lib/Object/
MachOObjectFile.cpp 266 unsigned SectionSize = Is64 ? sizeof(MachO::section_64) :
269 uintptr_t SectionAddr = CommandAddr + SegmentLoadSize + Sec * SectionSize;
    [all...]

Completed in 2878 milliseconds