/packages/apps/Camera2/src/com/android/camera/util/ |
D | XmpUtil.java | 111 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/ |
D | NotificationAppList.java | 284 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/ |
D | ContactEntryAdapter.java | 110 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/ |
D | IndexerListAdapter.java | 164 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()
|
D | ContactsSectionIndexer.java | 73 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/ |
D | BugReportPreviewActivity.java | 40 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()
|
D | BugReportParser.java | 21 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/ |
D | MtpAdapter.java | 164 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/ |
D | RawContactEditorView.java | 301 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/ |
D | PostalAddressListAdapter.java | 149 final int section = getSectionForPosition(position); in bindSectionHeaderAndDivider() local 150 if (getPositionForSection(section) == position) { in bindSectionHeaderAndDivider() 151 String title = (String)getSections()[section]; in bindSectionHeaderAndDivider()
|
D | EmailAddressListAdapter.java | 158 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/ |
D | UserDictionarySettings.java | 272 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/ |
D | UserDictionarySettings.java | 327 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/ |
D | MusicPicker.java | 349 public int getPositionForSection(int section) { in getPositionForSection() argument 356 return mIndexer.getPositionForSection(section); in getPositionForSection()
|
D | AlbumBrowserActivity.java | 661 public int getPositionForSection(int section) { in getPositionForSection() argument 662 return mIndexer.getPositionForSection(section); in getPositionForSection()
|
D | TrackBrowserActivity.java | 1570 public int getPositionForSection(int section) { 1572 return mIndexer.getPositionForSection(section);
|
/packages/apps/DeskClock/src/com/android/deskclock/worldclock/ |
D | CitiesActivity.java | 416 public int getPositionForSection(int section) { in getPositionForSection() argument 417 return !isEmpty(mSectionPositions) ? mSectionPositions[section] : 0; in getPositionForSection()
|
/packages/apps/Camera/jni/feature_stab/doc/ |
D | dbreg_API_doxyfile | 102 # 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/ |
D | dbreg_API_doxyfile | 102 # 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/ |
D | feature_mos_API_doxyfile | 102 # 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/ |
D | feature_mos_API_doxyfile | 102 # 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/ |
D | CallLogGroupBuilderTest.java | 261 private void addCallLogHeader(int section) { in addCallLogHeader() argument
|
/packages/wallpapers/MusicVisualization/ |
D | NOTICE | 89 (except as stated in this section) patent license to make, have made,
|
/packages/apps/Browser/ |
D | NOTICE | 89 (except as stated in this section) patent license to make, have made,
|
/packages/providers/CalendarProvider/ |
D | NOTICE | 89 (except as stated in this section) patent license to make, have made,
|