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

<<31323334353637383940>>

  /frameworks/ex/common/java/com/android/common/
LegacyHttpDateTime.java 119 time.set(timeOfDay.second, timeOfDay.minute, timeOfDay.hour, date,
  /frameworks/minikin/include/minikin/
MinikinFont.h 77 void set(const MinikinRect& r) { function in struct:android::MinikinRect
  /frameworks/multidex/library/test/src/android/support/multidex/
ZipEntryReader.java 35 * If set, indicates that the file is encrypted.
93 // The RI has always assumed UTF-8. (If GPBF_UTF8_FLAG isn't set, the encoding is
113 cal.set(Calendar.MILLISECOND, 0);
114 cal.set(1980 + ((modDate >> 9) & 0x7f), ((modDate >> 5) & 0xf) - 1,
  /frameworks/native/services/surfaceflinger/RenderEngine/
ProgramCache.h 77 inline Key& set(key_t mask, key_t value) { function in class:android::ProgramCache::Key
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
HardwareConfig.java 159 rat.set(i, (bits[i] == '1' ? true : false));
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DcRetryAlarmController.java 151 mAlarmManager.set(AlarmManager.ELAPSED_REALTIME_WAKEUP,
  /frameworks/support/design/base/android/support/design/widget/
CircularBorderDrawable.java 71 * Set the border width
95 rectF.set(mRect);
108 padding.set(borderWidth, borderWidth, borderWidth, borderWidth);
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
ArrayObjectAdapter.java 142 mItems.set(position, item);
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ContentFrameLayout.java 72 mDecorPadding.set(left, top, right, bottom);
  /frameworks/support/v7/cardview/api21/android/support/v7/widget/
RoundRectDrawable.java 78 mBoundsF.set(bounds.left, bounds.top, bounds.right, bounds.bottom);
79 mBoundsI.set(bounds);
85 mBoundsF.set(mBoundsI);
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/util/
ThreadUtilTest.java 173 results.get(key).set(args);
185 public void set(Object... args) { method in class:ThreadUtilTest.LockedObject
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Matrix2f.java 41 * @param dataArray values to set the matrix to, must be 4
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:Matrix2f
145 set(i,0, ri0); method
146 set(i,1, ri1); method
  /hardware/qcom/audio/legacy/alsa_sound/
ALSAStreamOps.cpp 94 status_t ALSAStreamOps::set(int *format, function in class:android_audio_legacy::ALSAStreamOps
360 // Set playback or capture PCM device. It's possible to support audio output
364 // The AudioHardwareALSA API does not allow one to set the input routing.
  /hardware/qcom/display/msm8084/liboverlay/
overlayMdp.cpp 169 bool MdpCtrl::set() { function in class:overlay::MdpCtrl
  /hardware/qcom/display/msm8226/liboverlay/
overlayMdp.cpp 156 bool MdpCtrl::set() { function in class:overlay::MdpCtrl
  /hardware/qcom/display/msm8994/liboverlay/
overlayMdp.cpp 156 bool MdpCtrl::set() { function in class:overlay::MdpCtrl
223 // Set Color Space for MDP to configure CSC matrix
343 ALOGE("%s: Unable to set PP params", __FUNCTION__);
  /libcore/jsr166-tests/src/test/java/jsr166/
AtomicIntegerFieldUpdaterTest.java 68 * get returns the last value set or assigned
75 a.set(this, 2);
77 a.set(this, -3);
194 a.set(this, -2);
236 a.set(this, -2);
AtomicLongFieldUpdaterTest.java 69 * get returns the last value set or assigned
76 a.set(this, 2);
78 a.set(this, -3);
195 a.set(this, -2);
237 a.set(this, -2);
AtomicMarkableReferenceTest.java 40 * get returns the last values of reference and mark set
49 ai.set(two, false);
54 ai.set(one, true);
AtomicReferenceFieldUpdaterTest.java 80 * get returns the last value set or assigned
87 a.set(this, two);
89 a.set(this, m3);
  /libcore/luni/src/main/java/java/lang/reflect/
Array.java 394 public static void set(Object array, int index, Object value) throws IllegalArgumentException, ArrayIndexOutOfBoundsException { method in class:Array
  /libcore/luni/src/main/java/java/util/
MiniEnumSet.java 126 EnumSet<?> set = (EnumSet) collection; // raw type due to javac bug 6548436 local
127 set.elementClass.asSubclass(elementClass); // Called to throw ClassCastException.
129 MiniEnumSet<?> miniSet = (MiniEnumSet<?>) set;
157 MiniEnumSet<?> set = (MiniEnumSet<?>) collection; local
158 long setBits = set.bits;
159 return isValidType(set.elementClass) && ((bits & setBits) == setBits);
170 EnumSet<?> set = (EnumSet<?>) collection; local
171 if (!isValidType(set.elementClass)) {
175 MiniEnumSet<E> miniSet = (MiniEnumSet<E>) set;
191 EnumSet<?> set = (EnumSet<?>) collection local
238 EnumSet<?> set =(EnumSet<?>) object; local
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicInteger.java 69 public final void set(int newValue) { method in class:AtomicInteger
AtomicIntegerArray.java 96 public final void set(int i, int newValue) { method in class:AtomicIntegerArray
AtomicIntegerFieldUpdater.java 29 * {@code compareAndSet} and {@code set} on the same updater.
65 * other calls to {@code compareAndSet} and {@code set}, but not
68 * @param obj An object whose field to conditionally set
81 * other calls to {@code compareAndSet} and {@code set}, but not
88 * @param obj An object whose field to conditionally set
102 * @param obj An object whose field to set
105 public abstract void set(T obj, int newValue); method in class:AtomicIntegerFieldUpdater
111 * @param obj An object whose field to set
130 * @param obj An object whose field to get and set
146 * @param obj An object whose field to get and set
323 public void set(T obj, int newValue) { method in class:AtomicIntegerFieldUpdater.AtomicIntegerFieldUpdaterImpl
    [all...]

Completed in 314 milliseconds

<<31323334353637383940>>