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

<<51525354555657585960>>

  /external/vogar/src/vogar/
ExpectationStore.java 31 import java.util.Set;
61 * returns a value for all names, even if no explicit expectation was set.
110 Set<File> expectationFiles,
151 Set<String> names = new LinkedHashSet<String>();
152 Set<String> tags = new LinkedHashSet<String>();
153 Map<ModeId, Set<Variant>> modeVariants = null;
154 Set<ModeId> modes = null;
201 Set<Variant> variants = modeVariants.get(mode);
217 private void readStrings(JsonReader reader, Set<String> output) throws IOException {
225 private Set<ModeId> readModes(JsonReader reader) throws IOException
244 Set<Variant> set = result.get(mode); local
    [all...]
OptionParser.java 78 * Parameterized Collection fields such as List<File> and Set<String>
354 field.set(optionSource, value);
367 entry.getKey().set(optionSource, entry.getValue());
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPDateTimeImpl.java 319 calendar.set(Calendar.YEAR, year);
320 calendar.set(Calendar.MONTH, month - 1);
321 calendar.set(Calendar.DAY_OF_MONTH, day);
322 calendar.set(Calendar.HOUR_OF_DAY, hour);
323 calendar.set(Calendar.MINUTE, minute);
324 calendar.set(Calendar.SECOND, second);
325 calendar.set(Calendar.MILLISECOND, nanoSeconds / 1000000);
  /frameworks/av/media/libmedia/
AudioEffect.cpp 55 mStatus = set(type, uuid, priority, cbf, user, sessionId, io);
88 mStatus = set(pType, pUuid, priority, cbf, user, sessionId, io);
91 status_t AudioEffect::set(const effect_uuid_t *type, function in class:android::AudioEffect
103 ALOGV("set %p mUserData: %p uuid: %p timeLow %08x", this, user, type, type ? type->timeLow : 0);
112 ALOGE("set(): Could not get audioflinger");
136 ALOGE("set(): AudioFlinger could not create effect, status: %d", mStatus);
160 ALOGV("set() %p OK effect: %s id: %d status %d enabled %d pid %d", this, mDescriptor.name, mId,
  /frameworks/base/core/java/android/animation/
PathKeyframes.java 115 mTempPointF.set(x, y);
145 mTempPointF.set(mKeyframeData[xOffset], mKeyframeData[yOffset]);
  /frameworks/base/core/java/android/app/
DatePickerDialog.java 62 * @param year The year that was set.
63 * @param monthOfYear The month that was set (0-11) for compatibility
65 * @param dayOfMonth The day of the month that was set.
72 * @param callBack How the parent is notified that the date is set.
98 * @param listener How the parent is notified that the date is set.
169 mCalendar.set(Calendar.YEAR, year);
170 mCalendar.set(Calendar.MONTH, month);
171 mCalendar.set(Calendar.DAY_OF_MONTH, day);
  /frameworks/base/core/java/android/content/
SyncStatusInfo.java 158 periodicSyncTimes.set(index, when);
  /frameworks/base/core/java/android/gesture/
Gesture.java 66 gesture.mBoundingBox.set(mBoundingBox.left, mBoundingBox.top,
  /frameworks/base/core/java/android/hardware/camera2/legacy/
LegacyFaceDetectMapper.java 200 * <p>If the scene mode was set to {@code FACE_PRIORITY} but face detection is disabled,
255 result.set(CaptureResult.STATISTICS_FACES, convertedFaces.toArray(new Face[0]));
256 result.set(CaptureResult.STATISTICS_FACE_DETECT_MODE, fdMode);
260 result.set(CaptureResult.CONTROL_SCENE_MODE, CONTROL_SCENE_MODE_FACE_PRIORITY);
  /frameworks/base/core/java/android/net/nsd/
DnsSdTxtRecord.java 19 - fix set() to replace existing values
65 * Set a key/value pair. Setting an existing key will replace its value.
69 public void set(String key, String value) { method in class:DnsSdTxtRecord
  /frameworks/base/core/java/android/os/
WorkSource.java 179 public void set(WorkSource other) { method in class:WorkSource
207 public void set(int uid) { method in class:WorkSource
215 public void set(int uid, String name) { method in class:WorkSource
427 private boolean updateLocked(WorkSource other, boolean set, boolean returnNewbs) {
429 return updateUidsLocked(other, set, returnNewbs);
439 return updateUidsAndNamesLocked(other, set, returnNewbs);
451 private boolean updateUidsLocked(WorkSource other, boolean set, boolean returnNewbs) {
458 if (DEBUG) Log.d(TAG, "Update " + this + " with " + other + " set=" + set
488 if (!set) {
    [all...]
  /frameworks/base/core/java/android/transition/
ChangeImageTransform.java 63 public void set(ImageView object, Matrix value) {
184 ANIMATED_TRANSFORM_PROPERTY.set(imageView, startMatrix);
Crossfade.java 233 AnimatorSet set = new AnimatorSet(); local
234 set.playTogether(anim);
236 set.playTogether(anim1);
245 set.playTogether(anim2);
251 set.playTogether(anim3);
254 return set;
282 // TODO: lrtb will be wrong if the view has transXY set
  /frameworks/base/core/java/android/util/
ArraySet.java 25 import java.util.Set;
28 * ArraySet is a generic set data structure that is designed to be more memory efficient than a
32 * entry in the set (instead of a pair for a mapping).
42 * you have no control over this shrinking -- if you set a capacity and then remove an
44 * explicit call to set the capacity should turn off this aggressive shrinking behavior.</p>
46 public final class ArraySet<E> implements Collection<E>, Set<E> {
246 public ArraySet(ArraySet<E> set) {
248 if (set != null) {
249 addAll(set);
254 public ArraySet(Collection<E> set) {
539 Set<?> set = (Set<?>) object; local
    [all...]
  /frameworks/base/core/java/android/widget/
DayPickerView.java 106 // Set up adapter.
146 // Set up min and max dates.
149 tempDate.set(DEFAULT_START_YEAR, Calendar.JANUARY, 1);
154 tempDate.set(DEFAULT_END_YEAR, Calendar.DECEMBER, 31);
292 * @param setSelected whether to set the specified day as selected
  /frameworks/base/core/jni/android/graphics/
Matrix.cpp 68 static void set(JNIEnv* env, jobject clazz, jlong objHandle, jlong otherHandle) { function in class:android::SkMatrixGlue
294 matrix->set(i, src[i]);
316 {"native_set","!(JJ)V", (void*) SkMatrixGlue::set},
  /frameworks/base/core/jni/
android_view_DisplayListCanvas.cpp 46 jmethodID set; member in struct:android::__anon22560
223 // In the emulator this property will be set to 1 when hardware GLES is
280 gRectClassInfo.set = GetMethodIDOrDie(env, clazz, "set", "(IIII)V");
android_view_GraphicBuffer.cpp 63 jmethodID set; member in struct:android::__anon22562
168 rect.set(Rect(buffer->getWidth(), buffer->getHeight()));
199 INVOKEV(dirtyRect, gRectClassInfo.set,
291 gRectClassInfo.set = GetMethodIDOrDie(env, clazz, "set", "(IIII)V");
  /frameworks/base/core/tests/coretests/src/android/text/format/
TimeTest.java 185 local.set(0, test.minute1, test.hour1, test.day1, test.month1, test.year1);
186 // call normalize() to make sure that isDst is set
202 local.set(0, test.minute1, test.hour1, test.day1, test.month1, test.year1);
203 // call normalize() to make sure that isDst is set
207 local.set(millis);
224 local.set(0, test.minute1, test.hour1, test.day1, test.month1, test.year1);
226 // call normalize() to make sure that isDst is set
245 local.set(0, test.minute1, test.hour1, test.day1, test.month1, test.year1);
247 // call normalize() to make sure that isDst is set
252 local.set(millis)
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Rect.java 244 * Set the rectangle to (0,0,0,0)
251 * Set the rectangle's coordinates to the specified values. Note: no range
260 public void set(int left, int top, int right, int bottom) { method in class:Rect
273 public void set(Rect src) { method in class:Rect
377 * rectangle, return true and set this rectangle to that intersection,
390 * (and this rectangle is then set to that intersection) else
406 * If the specified rectangle intersects this rectangle, return true and set
413 * (and this rectangle is then set to that intersection) else
422 * If rectangles a and b intersect, return true and set this rectangle to
429 * @return true iff the two specified rectangles intersect. If they do, set
    [all...]
Region.java 67 /** Return a region set to the specified rectangle
74 /** Return a region set to the specified rectangle
81 /** Set the region to the empty region
87 /** Set the region to the specified region.
89 public boolean set(Region region) { method in class:Region
94 /** Set the region to the specified rectangle
96 public boolean set(Rect r) { method in class:Region
100 /** Set the region to the specified rectangle
102 public boolean set(int left, int top, int right, int bottom) { method in class:Region
107 * Set the region to the area described by the path and clip
    [all...]
  /frameworks/base/libs/hwui/
ClipArea.cpp 114 void RectangleList::set(const Rect& bounds, const Matrix4& transform) { function in class:android::uirenderer::RectangleList
198 mViewportBounds.set(0, 0, width, height);
211 mClipRect.set(left, top, right, bottom);
307 mRectangleList.set(mClipRect, Matrix4::identity());
362 mClipRect.set(mClipRegion.getBounds());
FrameInfo.h 73 set(FrameInfoIndex::Vsync) = vsyncTime;
74 set(FrameInfoIndex::IntendedVsync) = intendedVsync;
77 set(FrameInfoIndex::HandleInputStart) = vsyncTime;
78 set(FrameInfoIndex::AnimationStart) = vsyncTime;
79 set(FrameInfoIndex::PerformTraversalsStart) = vsyncTime;
80 set(FrameInfoIndex::DrawStart) = vsyncTime;
85 set(FrameInfoIndex::Flags) |= static_cast<uint64_t>(frameInfoFlag);
90 inline int64_t& set(FrameInfoIndex index) { function in class:android::uirenderer::UiFrameInfoBuilder
102 set(FrameInfoIndex::SyncStart) = systemTime(CLOCK_MONOTONIC);
106 set(FrameInfoIndex::IssueDrawCommandsStart) = systemTime(CLOCK_MONOTONIC)
152 inline int64_t& set(FrameInfoIndex index) { function in class:android::uirenderer::FrameInfo
    [all...]
Matrix.h 226 inline void set(int i, int j, float v) { function in class:android::uirenderer::Matrix4
  /frameworks/base/location/java/android/location/
GpsNavigationMessage.java 95 public void set(GpsNavigationMessage navigationMessage) { method in class:GpsNavigationMessage

Completed in 416 milliseconds

<<51525354555657585960>>