HomeSort by relevance Sort by last modified time
    Searched defs:set (Results 901 - 925 of 3150) sorted by null

<<31323334353637383940>>

  /libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicLong.java 83 public final void set(long newValue) { method in class:AtomicLong
AtomicLongArray.java 95 public final void set(int i, long newValue) { method in class:AtomicLongArray
AtomicReferenceArray.java 109 public final void set(int i, E newValue) { method in class:AtomicReferenceArray
AtomicReferenceFieldUpdater.java 43 * {@code compareAndSet} and {@code set} on the same updater.
84 * other calls to {@code compareAndSet} and {@code set}, but not
87 * @param obj An object whose field to conditionally set
98 * other calls to {@code compareAndSet} and {@code set}, but not
105 * @param obj An object whose field to conditionally set
117 * @param obj An object whose field to set
120 public abstract void set(T obj, V newValue); method in class:AtomicReferenceFieldUpdater
126 * @param obj An object whose field to set
145 * @param obj An object whose field to get and set
274 public void set(T obj, V newValue) method in class:AtomicReferenceFieldUpdater.AtomicReferenceFieldUpdaterImpl
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
OldSocketImplFactoryTest.java 94 factoryField.set(null, oldFactory);
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastAlertReminder.java 109 * @return true if a pending reminder was set; false if there are no more reminders
142 alarmManager.set(AlarmManager.ELAPSED_REALTIME_WAKEUP, triggerTime, sPlayReminderIntent);
  /packages/apps/Contacts/tests/src/com/android/contacts/interactions/
ContactInteractionUtilTest.java 41 // Time/Date utilities rely on specific locales. Forace US and set back in tearDown()
67 calendar.set(Calendar.HOUR_OF_DAY, 8);
68 calendar.set(Calendar.MINUTE, 8);
76 calendar.set(Calendar.HOUR_OF_DAY, 22);
77 calendar.set(Calendar.MINUTE, 18);
92 // Set to non leap year
93 calendar.set(Calendar.YEAR, 1999);
94 calendar.set(Calendar.DAY_OF_YEAR, 365);
111 calendar.set(Calendar.DAY_OF_YEAR, 1);
122 calendar.set(
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/
LabelDialogFragment.java 91 set(alarm, timer, tag);
119 set(alarm, timer, tag);
137 private void set(Alarm alarm, TimerObj timer, String tag) { method in class:LabelDialogFragment
145 set(alarm, tag, label); method
147 set(timer, tag, label); method
153 private void set(Alarm alarm, String tag, String label) { method in class:LabelDialogFragment
165 private void set(TimerObj timer, String tag, String label) { method in class:LabelDialogFragment
  /packages/apps/DeskClock/src/com/android/deskclock/timer/
TimerListItem.java 55 public void set(long timerLength, long timeLeft, boolean drawRed) { method in class:TimerListItem
  /packages/apps/Email/tests/src/com/android/email/
AccountTestCase.java 124 HashSet<android.accounts.Account> set = new HashSet<android.accounts.Account>(); local
126 set.add(addAccount);
129 set.remove(removeAccount);
131 return set.toArray(new android.accounts.Account[0]);
  /packages/apps/Gallery2/jni/filters/
kmeans.h 40 inline void set(T val1[], N val2[], int dimension) { function
85 * Picks k random starting points from the data set.
113 // set dst to be randomly chosen value
114 set<T,T>(dst + cntr, values + r, dimension);
165 // divide to get centroid and set dst to result
173 set(dst + x, tmp + x, dimension);
202 set<T, T>(finalCentroids, c1, dimension);
228 set<T, T>(values + x, centroids + best, dimension);
  /packages/apps/Launcher2/src/com/android/launcher2/
AppWidgetResizeFrame.java 370 rect.set(portWidth, landHeight, landWidth, portHeight);
458 AnimatorSet set = LauncherAnimUtils.createAnimatorSet(); local
460 set.playTogether(oa, topOa, bottomOa);
462 set.playTogether(oa, leftOa, rightOa);
464 set.playTogether(oa, leftOa, rightOa, topOa, bottomOa);
467 set.setDuration(SNAP_DURATION);
468 set.start();
  /packages/apps/Launcher3/src/com/android/launcher3/
AppWidgetResizeFrame.java 366 rect.set(portWidth, landHeight, landWidth, portHeight);
453 AnimatorSet set = LauncherAnimUtils.createAnimatorSet(); local
455 set.playTogether(oa, topOa, bottomOa);
457 set.playTogether(oa, leftOa, rightOa);
459 set.playTogether(oa, leftOa, rightOa, topOa, bottomOa);
462 set.setDuration(SNAP_DURATION);
463 set.start();
  /packages/apps/Messaging/src/com/android/messaging/ui/
OrientedBitmapDrawable.java 92 mDstRect.set((int) rotatedRect.left, (int) rotatedRect.top, (int) rotatedRect.right,
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
ListSuggestionCursor.java 97 mSuggestions.set(mPos, new Entry(suggestion));
115 * Register an observer that is called when changes happen to this data set.
117 * @param observer gets notified when the data set changes.
  /packages/apps/Settings/src/com/android/settings/notification/
ZenModeScheduleDaysSelection.java 69 c.set(Calendar.DAY_OF_WEEK, day);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/util/
SettingsHelper.java 43 SystemProperties.set(setting, value);
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
ConversationInfo.java 51 set(messageCount, draft, first, firstUnread, last); method
112 public void set(int count, int draft, String first, String firstUnread, String last) { method in class:ConversationInfo
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/datetime/
DateTime.java 71 c.set(year, month - 1, day, hour, minute, second);
72 c.set(Calendar.MILLISECOND, 0);
  /packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/
ResizableIntArray.java 102 public void set(@Nonnull final ResizableIntArray ip) { method in class:ResizableIntArray
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
CompatUtils.java 125 field.set(receiver, value);
  /packages/services/Telephony/src/org/apache/james/mime4j/field/datetime/
DateTime.java 71 c.set(year, month - 1, day, hour, minute, second);
72 c.set(Calendar.MILLISECOND, 0);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/profile/
set.h 1 // Profiling set implementation -*- C++ -*-
25 /** @file profile/set.h
38 /// Class std::set wrapper with performance instrumentation.
41 class set class in namespace:__profile
42 : public _GLIBCXX_STD_C::set<_Key,_Compare,_Allocator>
44 typedef _GLIBCXX_STD_C::set<_Key, _Compare, _Allocator> _Base;
67 explicit set(const _Compare& __comp = _Compare(), function in class:__profile::set
77 set(_InputIterator __first, _InputIterator __last, function in class:__profile::set
82 set(const set& __x function in class:__profile::set
85 set(const _Base& __x) function in class:__profile::set
94 set(initializer_list<value_type> __l, function in class:__profile::set
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/profile/
set.h 1 // Profiling set implementation -*- C++ -*-
25 /** @file profile/set.h
38 /// Class std::set wrapper with performance instrumentation.
41 class set class in namespace:__profile
42 : public _GLIBCXX_STD_C::set<_Key,_Compare,_Allocator>
44 typedef _GLIBCXX_STD_C::set<_Key, _Compare, _Allocator> _Base;
67 explicit set(const _Compare& __comp = _Compare(), function in class:__profile::set
77 set(_InputIterator __first, _InputIterator __last, function in class:__profile::set
82 set(const set& __x function in class:__profile::set
85 set(const _Base& __x) function in class:__profile::set
94 set(initializer_list<value_type> __l, function in class:__profile::set
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/profile/
set.h 1 // Profiling set implementation -*- C++ -*-
25 /** @file profile/set.h
38 /// Class std::set wrapper with performance instrumentation.
41 class set class in namespace:__profile
42 : public _GLIBCXX_STD_C::set<_Key,_Compare,_Allocator>
44 typedef _GLIBCXX_STD_C::set<_Key, _Compare, _Allocator> _Base;
67 explicit set(const _Compare& __comp = _Compare(), function in class:__profile::set
77 set(_InputIterator __first, _InputIterator __last, function in class:__profile::set
82 set(const set& __x function in class:__profile::set
85 set(const _Base& __x) function in class:__profile::set
94 set(initializer_list<value_type> __l, function in class:__profile::set
    [all...]

Completed in 586 milliseconds

<<31323334353637383940>>