Searched refs:set (Results 1 - 25 of 309) sorted by relevance

1234567891011>>

/packages/apps/Gallery2/tests/src/com/android/gallery3d/data/
H A DRealDataTest.java55 MediaSet set = mDataManager.getMediaSet("/local/image");
56 set.reload();
58 dumpMediaSet(set, "");
64 MediaSet set = mDataManager.getMediaSet("/local/video");
65 set.reload();
67 dumpMediaSet(set, "");
73 MediaSet set = mDataManager.getMediaSet("/picasa");
74 set.reload();
76 dumpMediaSet(set, "");
80 void dumpMediaSet(MediaSet set, Strin argument
[all...]
/packages/apps/Calendar/src/com/android/calendar/alerts/
H A DAlarmManagerInterface.java25 public void set(int type, long triggerAtMillis, PendingIntent operation); method in interface:AlarmManagerInterface
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DComboAlbumSet.java35 for (MediaSet set : mSets) {
36 set.addContentListener(this);
44 for (MediaSet set : mSets) {
45 int size = set.getSubMediaSetCount();
47 return set.getSubMediaSet(index);
57 for (MediaSet set : mSets) {
58 count += set.getSubMediaSetCount();
H A DDataSourceType.java30 public static int identifySourceType(MediaSet set) { argument
31 if (set == null) {
35 Path path = set.getPath();
H A DChangeNotifier.java31 public ChangeNotifier(MediaSet set, Uri uri, GalleryApp application) { argument
32 mMediaSet = set;
36 public ChangeNotifier(MediaSet set, Uri[] uris, GalleryApp application) { argument
37 mMediaSet = set;
H A DComboAlbum.java35 for (MediaSet set : mSets) {
36 set.addContentListener(this);
44 for (MediaSet set : mSets) {
45 int size = set.getMediaItemCount();
49 ArrayList<MediaItem> fetchItems = set.getMediaItem(start, fetchCount);
63 for (MediaSet set : mSets) {
64 count += set.getMediaItemCount();
H A DSnailAlbum.java41 mDirty.set(true);
H A DLocationClustering.java153 ReverseGeocoder.SetLatLong set = new ReverseGeocoder.SetLatLong();
161 if (set.mMinLatLatitude > itemLatitude) {
162 set.mMinLatLatitude = itemLatitude;
163 set.mMinLatLongitude = itemLongitude;
165 if (set.mMaxLatLatitude < itemLatitude) {
166 set.mMaxLatLatitude = itemLatitude;
167 set.mMaxLatLongitude = itemLongitude;
169 if (set.mMinLonLongitude > itemLongitude) {
170 set.mMinLonLatitude = itemLatitude;
171 set
[all...]
H A DLocalMergeAlbum.java57 for (MediaSet set : mSources) {
58 set.addContentListener(this);
66 for(MediaSet set : mSources) {
67 if (!set.isCameraRoll()) return false;
169 for (MediaSet set : mSources) {
170 count += set.getTotalMediaItemCount();
201 for (MediaSet set : mSources) {
202 set.delete();
208 for (MediaSet set : mSources) {
209 set
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
H A DRedEyeCandidate.java26 mRect.set(candidate.mRect);
27 mBounds.set(candidate.mBounds);
31 mRect.set(rect);
32 mBounds.set(bounds);
/packages/apps/Gallery2/src/com/android/gallery3d/util/
H A DHolder.java22 public void set(T object) { method in class:Holder
/packages/apps/Nfc/nci/jni/
H A DIntervalTimer.h31 bool set(int ms, TIMER_FUNC cb);
/packages/apps/DeskClock/src/com/android/deskclock/
H A DRepeatPreference.java30 // Initial value that can be set with the values saved in the database.
32 // New value that will be set if a positive result comes back from the
56 mDaysOfWeek.set(mNewDaysOfWeek);
60 mNewDaysOfWeek.set(mDaysOfWeek);
74 mNewDaysOfWeek.set(which, isChecked);
80 mDaysOfWeek.set(dow);
81 mNewDaysOfWeek.set(dow);
/packages/apps/Email/emailcommon/src/com/android/emailcommon/mail/
H A DMessage.java126 public final void setFlagDirectlyForTest(Flag flag, boolean set) throws MessagingException { argument
127 if (set) {
134 public void setFlag(Flag flag, boolean set) throws MessagingException { argument
135 setFlagDirectlyForTest(flag, set);
141 * @param set
143 public void setFlags(Flag[] flags, boolean set) throws MessagingException { argument
145 setFlag(flag, set);
/packages/apps/Calendar/tests/src/com/android/calendar/alerts/
H A DUtils.java25 t.set(second, minute, hour, monthDay, month, year);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DCoordinateUtils.java40 public static void set(final int[] coords, final int x, final int y) { method in class:CoordinateUtils
H A DUserHistoryDictionaryBigramList.java111 final HashMap<String, Byte> set = getBigrams(word1);
112 if (set.isEmpty()) {
115 if (set.containsKey(word2)) {
116 set.remove(word2);
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DPhotoFallbackEffect.java115 mTarget.set(cx - ch / 2, cy - ch / 2, cx + ch / 2, cy + ch / 2);
116 mSource.set((w - h) / 2, 0, (w + h) / 2, h);
123 mTarget.set(cx - cw / 2, cy - ch / 2, cx - ch / 2, cy + ch / 2);
124 mSource.set(0, 0, (w - h) / 2, h);
128 mTarget.set(cx + ch / 2, cy - ch / 2, cx + cw / 2, cy + ch / 2);
129 mSource.set((w + h) / 2, 0, w, h);
135 mTarget.set(cx - cw / 2, cy - cw / 2, cx + cw / 2, cy + cw / 2);
136 mSource.set(0, (h - w) / 2, w, (h + w) / 2);
143 mTarget.set(cx - cw / 2, cy - ch / 2, cx + cw / 2, cy - cw / 2);
144 mSource.set(
[all...]
H A DSelectionManager.java149 private static boolean expandMediaSet(ArrayList<Path> items, MediaSet set, int maxSelection) { argument
150 int subCount = set.getSubMediaSetCount();
152 if (!expandMediaSet(items, set.getSubMediaSet(i), maxSelection)) {
156 int total = set.getMediaItemCount();
164 ArrayList<MediaItem> list = set.getMediaItem(index, count);
187 MediaSet set = mSourceMediaSet.getSubMediaSet(i);
188 Path id = set.getPath();
191 if (!expandMediaSet(selected, set, maxSelection)) {
247 public void setSourceMediaSet(MediaSet set) { argument
248 mSourceMediaSet = set;
[all...]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DContactLocaleUtils.java75 // the entire label set so care should be taken about growing this
76 // set too large. The following set determines for which locales
214 Set<UnicodeBlock> set = new HashSet<UnicodeBlock>();
215 set.add(UnicodeBlock.HIRAGANA);
216 set.add(UnicodeBlock.KATAKANA);
217 set.add(UnicodeBlock.KATAKANA_PHONETIC_EXTENSIONS);
218 set.add(UnicodeBlock.HALFWIDTH_AND_FULLWIDTH_FORMS);
219 set.add(UnicodeBlock.CJK_UNIFIED_IDEOGRAPHS);
220 set
[all...]
/packages/apps/Contacts/src/com/android/contacts/util/
H A DDateUtils.java109 calendar.set(Calendar.YEAR, 0);
117 calendar.set(Calendar.YEAR, year);
118 calendar.set(Calendar.MONTH, month);
119 calendar.set(Calendar.DAY_OF_MONTH, dayOfMonth);
124 // use the Calendar.YEAR field to track whether or not the year is set instead of
132 * longForm set to {@code true} by default.
237 // today against the target date, both dates are set to exactly 0000H.
238 today.set(Calendar.HOUR_OF_DAY, 0);
239 today.set(Calendar.MINUTE, 0);
240 today.set(Calenda
[all...]
/packages/apps/Email/src/com/android/email/mail/store/imap/
H A DImapUtility.java60 * Gets all of the values in a sequence set per RFC 3501. Any ranges are expanded into a
61 * list of individual numbers. If the set is invalid, an empty array is returned.
65 * sequence-set = (sequence-number / sequence-range) *("," sequence-set)
68 public static String[] getImapSequenceValues(String set) { argument
70 if (set != null) {
71 String[] setItems = set.split(",");
99 * sequence-set = (sequence-number / sequence-range) *("," sequence-set)
/packages/apps/Email/src/org/apache/commons/io/input/
H A DDemuxInputStream.java43 m_streams.set( input );
/packages/apps/Email/tests/src/com/android/email/
H A DFolderPropertiesTests.java134 Set<Drawable> set = new HashSet<Drawable>();
135 set.add(inbox);
136 set.add(parent);
137 set.add(drafts);
138 set.add(outbox);
139 set.add(sent);
140 set.add(trash);
141 set.add(junk);
142 assertEquals(7, set.size());
/packages/apps/ContactsCommon/src/com/android/contacts/common/
H A DCollapser.java63 list.set(j, null);
66 list.set(i, null);

Completed in 553 milliseconds

1234567891011>>