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

<<51525354555657585960>>

  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
MonthAdapter.java 75 public void set(CalendarDay date) { method in class:MonthAdapter.CalendarDay
141 * Set up the gesture detector and selected time
179 // Set up the new view
199 // Invokes requestLayout() to ensure that the recycled view is set with the appropriate
MonthView.java 153 // The height this view should draw at in pixels, set by height param
223 // Set up accessibility components.
367 mCalendar.set(Calendar.MONTH, mMonth);
368 mCalendar.set(Calendar.YEAR, mYear);
369 mCalendar.set(Calendar.DAY_OF_MONTH, 1);
465 mDayLabelCalendar.set(Calendar.DAY_OF_WEEK, calendarDay);
564 * {@link OnDayClickListener} if one is set.
566 * If the day is out of the range set by minDate and/or maxDate, this is a no-op.
571 // If the min / max date are set, only process the click if it's a valid selection.
586 * @return true if the specified year/month/day are within the range set by minDate and maxDate
    [all...]
  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
RSTestCore.java 115 mListAllocs.set(listElem, i, false);
  /frameworks/rs/java/tests/RSTest_CompatLibLegacy/src/com/android/rs/test/
RSTestCore.java 115 mListAllocs.set(listElem, i, false);
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
RSTestCore.java 124 mListAllocs.set(listElem, i, false);
  /frameworks/rs/java/tests/RsTest_11/src/com/android/rs/test/
RSTestCore.java 91 mListAllocs.set(listElem, i, false);
  /frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/
RSTestCore.java 95 mListAllocs.set(listElem, i, false);
  /frameworks/rs/java/tests/RsTest_16/src/com/android/rs/test/
RSTestCore.java 95 mListAllocs.set(listElem, i, false);
  /frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/engine/
Quaternion.java 26 public void set(double w, double x, double y, double z) { method in class:Quaternion
53 public void set(double[] v1, double[] v2) { method in class:Quaternion
58 set(angle, axis); method
73 public void set(double angle, double[] axis) { method in class:Quaternion
  /frameworks/support/v17/leanback/kitkat/android/support/v17/leanback/transition/
SlideKitkat.java 280 mProp.set(mView, mTerminalValue);
287 mProp.set(mView, mTerminalValue);
295 mProp.set(mView, mEndValue);
301 mProp.set(mView, mPausedValue);
TransitionHelperKitkat.java 48 TransitionSet set = new TransitionSet(); local
49 set.setOrdering(sequential ? TransitionSet.ORDERING_SEQUENTIAL :
51 return set;
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Matrix3f.java 41 * @param dataArray values to set the matrix to, must be 9
74 * @param x column of the value to set
75 * @param y row of the value to set
77 public void set(int x, int y, float v) { method in class:Matrix3f
221 set(i,0, ri0); method
222 set(i,1, ri1); method
223 set(i,2, ri2); method
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
dhdioctl.h 41 bool set; /* get or set request (optional) */ member in struct:dhd_ioctl
  /hardware/intel/common/utils/ituxd/src/com/intel/thermal/
ThermalCoolingDevice.java 177 mZoneStateList.set(index, state);
  /hardware/libhardware_legacy/audio/
A2dpAudioInterface.cpp 82 if ((err = out->set(devices, format, channels, sampleRate)) == NO_ERROR) {
235 status_t A2dpAudioInterface::A2dpAudioStreamOut::set( function in class:android_audio_legacy::A2dpAudioInterface::A2dpAudioStreamOut
242 ALOGD("A2dpAudioStreamOut::set %x, %d, %d, %d\n", device, lFormat, lChannels, lRate);
AudioHardwareGeneric.cpp 82 status_t lStatus = out->set(this, mFd, devices, format, channels, sampleRate);
122 status_t lStatus = in->set(this, mFd, devices, format, channels, sampleRate, acoustics);
143 // Implement: set voice volume
149 // Implement: set master volume
192 status_t AudioStreamOutGeneric::set( function in class:android_audio_legacy::AudioStreamOutGeneric
311 status_t AudioStreamInGeneric::set( function in class:android_audio_legacy::AudioStreamInGeneric
321 ALOGV("AudioStreamInGeneric::set(%p, %d, %d, %d, %u)", hw, fd, *pFormat, *pChannels, *pRate);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
ArrayTest.java 563 * java.lang.reflect.Array#set(java.lang.Object, int,
567 // Test for method void java.lang.reflect.Array.set(java.lang.Object,
572 Array.set(x, 0, new Integer(1));
579 Array.set(new Object(), 0, new Object());
589 Array.set(x, 4, new Integer(1));
602 Array.set(new int[1], 0, null);
610 Array.set(null, 0, 2);
633 assertTrue("Failed to set correct value", Array.getBoolean(x, 0));
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DateTest.java 319 cal.set(1969, Calendar.JANUARY, 12, 1, 0);
324 cal.set(1200, 2, 2, 6, 45, 13);
329 cal.set(1999, Calendar.NOVEMBER, 22, 12, 52, 06);
355 assertEquals("Set incorrect date", 23, d.getDate());
366 assertEquals("Set incorrect hours", 23, d.getHours());
377 assertEquals("Set incorrect mins", 45, d.getMinutes());
388 assertEquals("Set incorrect month", 0, d.getMonth());
399 assertEquals("Set incorrect seconds", 13, d.getSeconds());
423 assertEquals("Set incorrect year", 8, d.getYear());
444 cal.set(Calendar.DATE, 1)
    [all...]
  /libcore/json/src/main/java/org/json/
JSONArray.java 265 values.set(index, value);
  /libcore/libart/src/main/java/java/lang/reflect/
Field.java 528 public native void set(Object object, Object value) method in class:Field
682 * Set the value of the field in the specified object to the {@code int}
  /libcore/luni/src/main/java/java/lang/
StringBuffer.java 745 set(value, count); method
StringBuilder.java 682 set(value, count); method
ThreadLocal.java 79 * Sets the value of this variable for the current thread. If set to
80 * {@code null}, the value will be set to null and the underlying entry will
85 public void set(T value) { method in class:ThreadLocal
96 * is followed by a {@link #get()} before a {@link #set},
  /libcore/luni/src/main/java/java/net/
URLStreamHandler.java 216 * the non-null URL object to be set.
236 u.set(protocol, host, port, file, ref);
249 u.set(protocol, host, port, authority, userInfo, path, query, ref);
  /libcore/luni/src/main/java/java/util/
HugeEnumSet.java 143 EnumSet<?> set = (EnumSet) collection; // raw type due to javac bug 6548436 local
144 set.elementClass.asSubclass(elementClass); // Called to throw ClassCastException.
146 HugeEnumSet<E> hugeSet = (HugeEnumSet<E>) set;
204 HugeEnumSet<E> set = (HugeEnumSet<E>) super.clone(); local
205 set.bits = bits.clone();
206 return set;
215 HugeEnumSet<?> set = (HugeEnumSet<?>) collection; local
216 if (isValidType(set.elementClass)) {
218 long setBits = set.bits[i];
272 EnumSet<?> set = (EnumSet<?>) collection local
296 EnumSet<?> set = (EnumSet<?>) collection; local
    [all...]

Completed in 314 milliseconds

<<51525354555657585960>>