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

/packages/experimental/BugReportSender/src/com/android/bugreportsender/
H A DBugReportParser.java16 private static final int MAX_LINES = 1000; // just in case we miss the end of the section.
21 public static String extractSystemLogs(InputStream in, String section) throws IOException { argument
22 final String sectionWithHeader = SECTION_HEADER + " " + section;
28 // read file contents. loop until we get to the appropriate section header.
29 // once we reach that header, accumulate all lines until we get to the next section.
/packages/apps/Contacts/src/com/android/contacts/
H A DContactsSectionIndexer.java24 * A section indexer that is configured with precomputed section titles and
49 // TODO process sections/counts based on current locale and/or specific section titles
71 public int getPositionForSection(int section) { argument
72 if (section < 0 || section >= mSections.length) {
76 return mPositions[section];
87 * Consider this example: section positions are 0, 3, 5; the supplied
88 * position is 4. The section corresponding to position 4 starts at
/packages/apps/Settings/src/com/android/settings/
H A DUserDictionarySettings.java274 public int getPositionForSection(int section) { argument
275 return mIndexer.getPositionForSection(section);
/packages/apps/Music/src/com/android/music/
H A DAlbumBrowserActivity.java674 public int getPositionForSection(int section) { argument
675 return mIndexer.getPositionForSection(section);
H A DMusicPicker.java348 public int getPositionForSection(int section) { argument
351 // No cursor, the section doesn't exist so just return 0
355 return mIndexer.getPositionForSection(section);
H A DTrackBrowserActivity.java1557 public int getPositionForSection(int section) { argument
1558 int pos = mIndexer.getPositionForSection(section);

Completed in 124 milliseconds