HomeSort by relevance Sort by last modified time
    Searched defs:set (Results 526 - 550 of 2219) sorted by null

<<21222324252627282930>>

  /libcore/crypto/src/main/java/org/conscrypt/
OpenSSLX509CRLEntry.java 27 import java.util.Set;
38 public Set<String> getCriticalExtensionOIDs() {
63 public Set<String> getNonCriticalExtensionOIDs() {
110 calendar.set(Calendar.MILLISECOND, 0);
  /libcore/luni/src/main/java/java/util/
List.java 306 public E set(int location, E object); method in interface:List
343 * the collection elements is set to null.
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicBoolean.java 98 public final void set(boolean newValue) { method in class:AtomicBoolean
AtomicMarkableReference.java 135 public void set(V newReference, boolean newMark) { method in class:AtomicMarkableReference
147 * thread is also attempting to set the value will eventually
AtomicStampedReference.java 135 public void set(V newReference, int newStamp) { method in class:AtomicStampedReference
147 * thread is also attempting to set the value will eventually
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
OldAndroidArrayTest.java 63 Array.set(strArray, 1, "entry one");
  /libcore/luni/src/test/java/libcore/java/net/
URLStreamHandlerFactoryTest.java 47 factoryField.set(null, null);
76 factoryField.set(null, null);
90 factoryField.set(null, null);
98 // set the property and get another connection. The property should not be honored
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/
class_properties.hpp 200 void set( write_param_t v ) { base_prop::value = v; } function in class:boost::unit_test::readwrite_property
  /packages/apps/Calendar/src/com/android/calendar/alerts/
AlertUtils.java 90 public void set(int type, long triggerAtMillis, PendingIntent operation) {
94 mgr.set(type, triggerAtMillis, operation);
133 // Set data field so we get a unique PendingIntent instance per alarm or else alarms
143 manager.set(alarmType, alarmTime, pi);
160 time.set(startMillis);
181 // Assumes time was set to the current tz
182 time.set(startMillis);
322 timeObj.set(startMillis);
324 timeObj.set(endMillis);
  /packages/apps/Calendar/tests/src/com/android/calendar/
WeekNumberTest.java 41 date.set(0, 0, 0, day, month, year);
44 allDayDate.set(day, month, year);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
ComboAlbum.java 35 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();
ComboAlbumSet.java 35 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();
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
Util.java 29 import java.util.Set;
38 public static <A> Set<A> setOfFirstN(List<A> list, int n) {
40 HashSet<A> set = new HashSet<A>(end); local
42 set.add(list.get(i));
44 return set;
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothDiscoverableTimeoutReceiver.java 55 alarmManager.set(AlarmManager.RTC_WAKEUP, alarmTime, pending);
  /packages/apps/UnifiedEmail/src/com/android/mail/preferences/
SimpleBackupSharedPreference.java 25 import java.util.Set;
60 if (mValue instanceof Set) {
61 final Set<?> set = (Set<?>) mValue; local
63 for (final Object o : set) {
76 final Set<Object> set = Sets.newHashSet(); local
79 set.add(array.get(i));
81 value = set;
    [all...]
  /packages/inputmethods/LatinIME/tools/dicttool/compat/android/util/
SparseArray.java 49 mValues.set(index, value);
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
EvenMoreAsserts.java 30 import java.util.Set;
110 Set<Object> set = Sets.newHashSet(); local
112 Assert.assertFalse("Duplicate found: " + o, set.contains(o));
113 set.add(o);
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
setobject.h 0 /* Set object interface */
31 This data structure is shared by set and frozenset objects.
87 PyAPI_FUNC(int) PySet_Clear(PyObject *set); variable
89 PyAPI_FUNC(int) PySet_Discard(PyObject *set, PyObject *key);
90 PyAPI_FUNC(int) PySet_Add(PyObject *set, PyObject *key);
91 PyAPI_FUNC(int) _PySet_Next(PyObject *set, Py_ssize_t *pos, PyObject **key);
92 PyAPI_FUNC(int) _PySet_NextEntry(PyObject *set, Py_ssize_t *pos, PyObject **key, long *hash);
93 PyAPI_FUNC(PyObject *) PySet_Pop(PyObject *set); variable
94 PyAPI_FUNC(int) _PySet_Update(PyObject *set, PyObject *iterable);
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
setobject.h 0 /* Set object interface */
31 This data structure is shared by set and frozenset objects.
87 PyAPI_FUNC(int) PySet_Clear(PyObject *set); variable
89 PyAPI_FUNC(int) PySet_Discard(PyObject *set, PyObject *key);
90 PyAPI_FUNC(int) PySet_Add(PyObject *set, PyObject *key);
91 PyAPI_FUNC(int) _PySet_Next(PyObject *set, Py_ssize_t *pos, PyObject **key);
92 PyAPI_FUNC(int) _PySet_NextEntry(PyObject *set, Py_ssize_t *pos, PyObject **key, long *hash);
93 PyAPI_FUNC(PyObject *) PySet_Pop(PyObject *set); variable
94 PyAPI_FUNC(int) _PySet_Update(PyObject *set, PyObject *iterable);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
ChangedFileSetHelper.java 84 ChangedFileSet set = new ChangedFileSet( local
91 set.setOutput(path + '/' + AdtConstants.FN_RESOURCES_AP_);
93 return set;
106 ChangedFileSet set = new ChangedFileSet( local
110 return set;
122 ChangedFileSet set = new ChangedFileSet( local
126 return set;
138 ChangedFileSet set = new ChangedFileSet("compiledCode", //$NON-NLS-1$ local
141 return set;
154 ChangedFileSet set = new ChangedFileSet("libResources", //$NON-NLS-1 local
172 ChangedFileSet set = new ChangedFileSet("classAndJars", \/\/$NON-NLS-1\$ local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/animator/
AnimDescriptors.java 79 ElementDescriptor set = AnimatorDescriptors.addElement(descriptors, styleMap, local
80 "set", "Set", "AnimationSet", "Animation", //$NON-NLS-1$ //$NON-NLS-3$ //$NON-NLS-4$
82 + "<translate>, <rotate>) or other <set> elements. ",
119 // Allow <set> to nest the others (and other sets)
120 if (set != null) {
121 set.setChildren(mRootDescriptors);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
TestDragElement.java 64 public TestDragElement set(String uri, String name, String value) { method in class:TestDragElement
88 return set(ANDROID_URI, ATTR_ID, id);
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
DalvInsnList.java 61 result.set(i, list.get(i));
80 * this with the index for an element which was never set; if you
94 * @param insn {@code non-null;} the instruction to set at {@code n}
96 public void set(int n, DalvInsn insn) { method in class:DalvInsnList
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
Prototype.java 100 parameterTypes.set(i, params[i]);
349 list.set(i, one);
  /dalvik/dx/src/com/android/dx/cf/code/
BasicBlocker.java 36 * {@code non-null;} work set; bits indicate offsets in need of
42 * {@code non-null;} live set; bits indicate potentially-live
49 * {@code non-null;} block start set; bits indicate the starts of
318 result.set(i, bbs[i]);
336 Bits.set(workSet, 0);
337 Bits.set(blockSet, 0);
340 * And then process the work set, add new work based on
359 Bits.set(blockSet, start);
360 Bits.set(blockSet, end);
368 * Sets a bit in the work set, but only if the instruction in questio
    [all...]

Completed in 673 milliseconds

<<21222324252627282930>>