OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sectionSize
(Results
1 - 7
of
7
) 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
...]
/external/smali/dexlib/src/main/java/org/jf/dexlib/
MapItem.java
75
int
sectionSize
= in.readInt();
78
readContext.addSection(itemType,
sectionSize
, sectionOffset);
110
private void writeSectionInfo(AnnotatedOutput out, ItemType itemType, int
sectionSize
, int sectionOffset) {
114
out.annotate(4, "section_size: 0x" + Integer.toHexString(
sectionSize
) + " (" +
sectionSize
+ ")");
120
out.writeInt(
sectionSize
);
HeaderItem.java
112
int
sectionSize
;
120
sectionSize
= in.readInt();
122
readContext.addSection(ItemType.TYPE_STRING_ID_ITEM,
sectionSize
, sectionOffset);
125
sectionSize
= in.readInt();
127
readContext.addSection(ItemType.TYPE_TYPE_ID_ITEM,
sectionSize
, sectionOffset);
130
sectionSize
= in.readInt();
132
readContext.addSection(ItemType.TYPE_PROTO_ID_ITEM,
sectionSize
, sectionOffset);
135
sectionSize
= in.readInt();
137
readContext.addSection(ItemType.TYPE_FIELD_ID_ITEM,
sectionSize
, sectionOffset);
140
sectionSize
= in.readInt()
[
all
...]
ReadContext.java
143
* @param
sectionSize
the size of the section
146
public void addSection(final ItemType itemType, int
sectionSize
, int sectionOffset) {
149
sectionSizes[itemType.SectionIndex] =
sectionSize
;
151
if (storedSectionSize !=
sectionSize
) {
DexFile.java
429
int
sectionSize
= readContext.getSectionSize(section.ItemType);
431
section.readFrom(
sectionSize
, in, readContext);
[
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;
Completed in 848 milliseconds