Home
last modified time | relevance | path

Searched refs:section (Results 1 – 25 of 69) sorted by relevance

123

/packages/apps/Camera2/src/com/android/camera/util/
DXmpUtil.java111 for (Section section : sections) { in extractXMPMeta()
112 if (hasXMPHeader(section.data)) { in extractXMPMeta()
113 int end = getXMPContentEnd(section.data); in extractXMPMeta()
116 section.data, XMP_HEADER_SIZE, buffer, 0, buffer.length); in extractXMPMeta()
220 for (Section section : sections) { in writeJpegFile()
222 os.write(section.marker); in writeJpegFile()
223 if (section.length > 0) { in writeJpegFile()
225 int lh = section.length >> 8; in writeJpegFile()
226 int ll = section.length & 0xff; in writeJpegFile()
230 os.write(section.data); in writeJpegFile()
[all …]
/packages/apps/Settings/src/com/android/settings/notification/
DNotificationAppList.java284 tv.setText(r.section); in bindView()
333 final String section = mSections.get(sectionIndex); in getPositionForSection() local
337 if (r.section.equals(section)) { in getPositionForSection()
347 return mSections.indexOf(row.section); in getSectionForPosition()
352 public String section; field in NotificationAppList.Row
482 String section = null;
484 r.section = getSection(r.label);
485 if (!r.section.equals(section)) {
486 section = r.section;
487 mSections.add(section);
[all …]
/packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/
DContactEntryAdapter.java110 ArrayList<E> section = mSections.get(i); in setSections() local
111 int sectionSize = section.size(); in setSections()
113 E e = section.get(j); in setSections()
150 ArrayList<E> section = mSections.get(i); in isEnabled() local
151 int sectionSize = section.size(); in isEnabled()
183 ArrayList<T> section = sections.get(i); in getEntry() local
184 int sectionSize = section.size(); in getEntry()
189 if (position < section.size()) { in getEntry()
190 return section.get(position); in getEntry()
192 position -= section.size(); in getEntry()
[all …]
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
DIndexerListAdapter.java164 int section = -1; in configurePinnedHeaders() local
169 section = getSectionForPosition(offset); in configurePinnedHeaders()
173 if (section == -1) { in configurePinnedHeaders()
181 setPinnedSectionTitle(mHeader, (String)mIndexer.getSections()[section]); in configurePinnedHeaders()
190 int nextSectionPosition = partitionStart + getPositionForSection(section + 1); in configurePinnedHeaders()
209 int section = getSectionForPosition(position); in getItemPlacementInSection() local
210 if (section != -1 && getPositionForSection(section) == position) { in getItemPlacementInSection()
212 mPlacementCache.sectionHeader = (String)getSections()[section]; in getItemPlacementInSection()
218 mPlacementCache.lastInSection = (getPositionForSection(section + 1) - 1 == position); in getItemPlacementInSection()
DContactsSectionIndexer.java73 public int getPositionForSection(int section) { in getPositionForSection() argument
74 if (section < 0 || section >= mSections.length) { in getPositionForSection()
78 return mPositions[section]; in getPositionForSection()
/packages/experimental/BugReportSender/src/com/android/bugreportsender/
DBugReportPreviewActivity.java40 String section = intent.getStringExtra("section"); in onCreate() local
41 if (section == null || section.length() == 0) { in onCreate()
42 section = "SYSTEM LOG"; in onCreate()
49 String text = BugReportParser.extractSystemLogs(in, section); in onCreate()
DBugReportParser.java21 public static String extractSystemLogs(InputStream in, String section) throws IOException { in extractSystemLogs() argument
22 final String sectionWithHeader = SECTION_HEADER + " " + section; in extractSystemLogs()
/packages/apps/Gallery2/src/com/android/gallery3d/ingest/adapter/
DMtpAdapter.java164 public int getPositionForSection(int section) { in getPositionForSection() argument
169 if (section >= numSections) { in getPositionForSection()
170 section = numSections - 1; in getPositionForSection()
172 return mModel.getFirstPositionForBucketNumber(section, mSortOrder); in getPositionForSection()
/packages/apps/Contacts/src/com/android/contacts/editor/
DRawContactEditorView.java301 final KindSectionView section = (KindSectionView)mInflater.inflate( in setState() local
303 section.setEnabled(isEnabled()); in setState()
304 section.setState(kind, state, false, vig); in setState()
305 mFields.addView(section); in setState()
/packages/apps/Contacts/src/com/android/contacts/list/
DPostalAddressListAdapter.java149 final int section = getSectionForPosition(position); in bindSectionHeaderAndDivider() local
150 if (getPositionForSection(section) == position) { in bindSectionHeaderAndDivider()
151 String title = (String)getSections()[section]; in bindSectionHeaderAndDivider()
DEmailAddressListAdapter.java158 final int section = getSectionForPosition(position); in bindSectionHeaderAndDivider() local
159 if (getPositionForSection(section) == position) { in bindSectionHeaderAndDivider()
160 String title = (String)getSections()[section]; in bindSectionHeaderAndDivider()
/packages/apps/Settings/src/com/android/settings/
DUserDictionarySettings.java272 public int getPositionForSection(int section) { in getPositionForSection() argument
273 return null == mIndexer ? 0 : mIndexer.getPositionForSection(section); in getPositionForSection()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/userdictionary/
DUserDictionarySettings.java327 public int getPositionForSection(int section) { in getPositionForSection() argument
328 return null == mIndexer ? 0 : mIndexer.getPositionForSection(section); in getPositionForSection()
/packages/apps/Music/src/com/android/music/
DMusicPicker.java349 public int getPositionForSection(int section) { in getPositionForSection() argument
356 return mIndexer.getPositionForSection(section); in getPositionForSection()
DAlbumBrowserActivity.java661 public int getPositionForSection(int section) { in getPositionForSection() argument
662 return mIndexer.getPositionForSection(section); in getPositionForSection()
DTrackBrowserActivity.java1570 public int getPositionForSection(int section) {
1572 return mIndexer.getPositionForSection(section);
/packages/apps/DeskClock/src/com/android/deskclock/worldclock/
DCitiesActivity.java416 public int getPositionForSection(int section) { in getPositionForSection() argument
417 return !isEmpty(mSectionPositions) ? mSectionPositions[section] : 0; in getPositionForSection()
/packages/apps/Camera/jni/feature_stab/doc/
Ddbreg_API_doxyfile102 # Doxygen will generate a detailed section even if there is only a brief
270 # subgroup of that type (e.g. under the Public Functions section). Set it to
330 # methods, which are defined in the implementation section but not in
347 # various overviews, but no documentation section is generated.
962 # filter section matches.
1164 # the generated man pages (default is the subroutine's section .3)
1395 # toolkit from AT&T and Lucent Bell Labs. The other options in this section
/packages/apps/LegacyCamera/jni/feature_stab/doc/
Ddbreg_API_doxyfile102 # Doxygen will generate a detailed section even if there is only a brief
270 # subgroup of that type (e.g. under the Public Functions section). Set it to
330 # methods, which are defined in the implementation section but not in
347 # various overviews, but no documentation section is generated.
962 # filter section matches.
1164 # the generated man pages (default is the subroutine's section .3)
1395 # toolkit from AT&T and Lucent Bell Labs. The other options in this section
/packages/apps/Camera/jni/feature_mos/doc/
Dfeature_mos_API_doxyfile102 # Doxygen will generate a detailed section even if there is only a brief
270 # subgroup of that type (e.g. under the Public Functions section). Set it to
330 # methods, which are defined in the implementation section but not in
347 # various overviews, but no documentation section is generated.
962 # filter section matches.
1164 # the generated man pages (default is the subroutine's section .3)
1395 # toolkit from AT&T and Lucent Bell Labs. The other options in this section
/packages/apps/LegacyCamera/jni/feature_mos/doc/
Dfeature_mos_API_doxyfile102 # Doxygen will generate a detailed section even if there is only a brief
270 # subgroup of that type (e.g. under the Public Functions section). Set it to
330 # methods, which are defined in the implementation section but not in
347 # various overviews, but no documentation section is generated.
962 # filter section matches.
1164 # the generated man pages (default is the subroutine's section .3)
1395 # toolkit from AT&T and Lucent Bell Labs. The other options in this section
/packages/apps/Dialer/tests/src/com/android/dialer/calllog/
DCallLogGroupBuilderTest.java261 private void addCallLogHeader(int section) { in addCallLogHeader() argument
/packages/wallpapers/MusicVisualization/
DNOTICE89 (except as stated in this section) patent license to make, have made,
/packages/apps/Browser/
DNOTICE89 (except as stated in this section) patent license to make, have made,
/packages/providers/CalendarProvider/
DNOTICE89 (except as stated in this section) patent license to make, have made,

123