Home | History | Annotate | Download | only in dex

Lines Matching refs:sectionData

176         ByteBuffer sectionData = data.duplicate();
177 sectionData.order(ByteOrder.LITTLE_ENDIAN); // necessary?
178 sectionData.position(position);
179 sectionData.limit(data.capacity());
180 return new Section("section", sectionData);
188 ByteBuffer sectionData = data.duplicate();
189 sectionData.order(ByteOrder.LITTLE_ENDIAN); // necessary?
190 sectionData.position(nextSectionStart);
191 sectionData.limit(limit);
192 Section result = new Section(name, sectionData);