Searched refs:set (Results 151 - 175 of 810) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/app/
H A DAlarmManager.java207 public void set(int type, long triggerAtMillis, PendingIntent operation) { method in class:AlarmManager
217 * <p>Like {@link #set}, except you can also supply a period at which
228 * set a recurring alarm for the top of every hour but the phone was asleep
255 * @see #set
274 * is similar to {@link #set(int, long, PendingIntent)}, but allows the
287 * {@link #set(int, long, PendingIntent)} method. This will give the OS the most
305 * @see #set
326 * This method is like {@link #set(int, long, PendingIntent)}, but does not permit
344 * @see #set
374 * @see #set
390 public void set(int type, long triggerAtMillis, long windowMillis, long intervalMillis, method in class:AlarmManager
[all...]
H A DDatePickerDialog.java62 * @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.
166 mCalendar.set(Calendar.YEAR, year);
167 mCalendar.set(Calendar.MONTH, month);
168 mCalendar.set(Calendar.DAY_OF_MONTH, day);
H A DSharedElementCallback.java48 * Called immediately after the start state is set for the shared element.
65 * Called after the end state is set for the shared element, but before the end state
73 * java.util.List, java.util.List)}, it will also have to be set here again to correct
97 * Views in rejectedSharedElements will have their position and size set to the
148 mTempMatrix.set(viewToGlobalMatrix);
/frameworks/base/core/java/android/os/
H A DWorkSource.java179 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) { argument
429 return updateUidsLocked(other, set, returnNewbs);
439 return updateUidsAndNamesLocked(other, set, returnNewbs);
451 private boolean updateUidsLocked(WorkSource other, boolean set, boolean returnNewbs) { argument
458 if (DEBUG) Log.d(TAG, "Update " + this + " with " + other + " set=" + set
488 if (!set) {
543 updateUidsAndNamesLocked(WorkSource other, boolean set, boolean returnNewbs) argument
[all...]
/frameworks/opt/net/voip/src/jni/rtp/
H A DAmrCodec.cpp53 int set(int sampleRate, const char *fmtp);
67 int AmrCodec::set(int sampleRate, const char *fmtp) function in class:__anon1438::AmrCodec
75 // Handle mode-set and octet-align.
76 const char *modes = strcasestr(fmtp, "mode-set=");
211 int set(int sampleRate, const char *fmtp) { function in class:__anon1438::GsmEfrCodec
H A DG711Codec.cpp37 int set(int sampleRate, const char *fmtp) { function in class:__anon1442::UlawCodec
88 int set(int sampleRate, const char *fmtp) { function in class:__anon1442::AlawCodec
/frameworks/rs/
H A DrsComponent.cpp23 set(RS_TYPE_NONE, RS_KIND_USER, false, 1);
29 void Component::set(RsDataType dt, RsDataKind dk, bool norm, uint32_t vecSize) { function in class:Component
273 set(mType, mKind, mNormalized, mVectorSize);
H A DrsSampler.cpp61 ss->mSamplers[slot].set(this);
95 returnRef.set(existing);
108 returnRef.set(s);
H A DrsAdapter.h36 void setAllocation(Allocation *a) {mAllocation.set(a);}
74 void setAllocation(Allocation *a) {mAllocation.set(a);}
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
H A DRecentsConfiguration.java185 displayRect.set(0, 0, dm.widthPixels, dm.heightPixels);
284 systemInsets.set(insets);
356 taskStackBounds.set(0, topInset, windowWidth - rightInset, windowHeight);
359 taskStackBounds.set(0, searchBarBounds.bottom, windowWidth, windowHeight);
377 searchBarSpaceBounds.set(0, topInset, searchBarSize, windowHeight);
380 searchBarSpaceBounds.set(0, topInset, windowWidth, topInset + searchBarSize);
/frameworks/base/services/core/jni/
H A Dcom_android_server_AlarmManagerService.cpp61 virtual int set(int type, struct timespec *ts) = 0;
75 int set(int type, struct timespec *ts);
87 int set(int type, struct timespec *ts);
109 int AlarmImplAlarmDriver::set(int type, struct timespec *ts) function in class:android::AlarmImplAlarmDriver
140 int AlarmImplTimerFd::set(int type, struct timespec *ts) function in class:android::AlarmImplTimerFd
250 ALOGW("Unable to set rtc to %ld: %s\n", tv.tv_sec, strerror(errno));
265 ALOGE("Unable to set kernel timezone to %d: %s\n", minswest, strerror(errno));
329 RTC change notifications, just set up as cancelable */
365 int result = impl->set(type, &ts);
368 ALOGE("Unable to set alar
[all...]
/frameworks/av/include/camera/
H A DCameraParameters2.h41 void set(const char *key, const char *value);
42 void set(const char *key, int value);
45 // -- The string remains valid until the next set/remove of the same key,
51 // Compare the order that key1 was set vs the order that key2 was set.
54 // than zero if key1's set order was respectively, to be less than, to
55 // match, or to be greater than key2's set order.
58 // * NAME_NOT_FOUND - if either key has not been set previously
188 * Order matters: Keys that are set() later are stored later in the map.
190 * If two keys have meaning that conflict, then the later-set ke
[all...]
/frameworks/base/core/java/android/util/
H A DReflectiveProperty.java30 private static final String PREFIX_SET = "set";
115 public void set(T object, V value) { method in class:ReflectiveProperty
126 mField.set(object, value);
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/stress/
H A DWifiApStress.java80 config.allowedKeyManagement.set(KeyMgmt.WPA_PSK);
81 config.allowedAuthAlgorithms.set(AuthAlgorithm.OPEN);
/frameworks/base/graphics/java/android/graphics/
H A DPointF.java46 public final void set(float x, float y) { method in class:PointF
54 public final void set(PointF p) { method in class:PointF
/frameworks/base/libs/hwui/renderthread/
H A DCanvasContext.h20 #include <set>
126 std::set<RenderNode*> mPrefetechedLayers;
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
H A DBasicTexture.java184 sInFinalizer.set(BasicTexture.class);
186 sInFinalizer.set(null);
/frameworks/base/services/core/java/com/android/server/notification/
H A DDowntimeConditionProvider.java232 mCalendar.set(Calendar.HOUR_OF_DAY, hour);
233 mCalendar.set(Calendar.MINUTE, min);
234 mCalendar.set(Calendar.SECOND, 0);
235 mCalendar.set(Calendar.MILLISECOND, 0);
249 mCalendar.set(Calendar.HOUR_OF_DAY, hr);
250 mCalendar.set(Calendar.MINUTE, min);
251 mCalendar.set(Calendar.SECOND, 0);
252 mCalendar.set(Calendar.MILLISECOND, 0);
/frameworks/compile/slang/
H A Dslang_rs_reflection_cpp.h22 #include <set>
63 std::set<std::string> mTypesToCheck;
/frameworks/ex/camera2/utils/src/com/android/ex/camera2/utils/
H A DCamera2RequestSettingsSet.java31 * A set of settings to be used when filing a {@link CaptureRequest}.
83 public <T> boolean set(Key<T> key, T value) { method in class:Camera2RequestSettingsSet
177 * Get this set of settings's revision identifier, which can be compared
196 * those forced to default as described in {@link set} are also forced to
197 * default in {@code this} set. Invoking this method increments {@code this}
250 requestBuilder.set(key, value);
/frameworks/multidex/library/test/src/android/support/multidex/
H A DZipEntryReader.java35 * 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/
H A DDisplayDevice.cpp100 // * In makeCurrent(), using eglSwapInterval. Some EGL drivers set the
102 // interval we set here.
225 // will do a prepare/set cycle.
320 dirty.set(getBounds());
355 dirtyRegion.set(bounds());
399 tr->set(flags, w, h);
404 dirtyRegion.set(getBounds());
419 "Unable to set new width to %d", newWidth);
421 "Unable to set new height to %d", newHeight);
436 // the destination frame can be invalid if it has never been set,
[all...]
/frameworks/opt/chips/src/com/android/ex/chips/
H A DCircularImageView.java79 source.set(0, 0, bitmap.getWidth(), bitmap.getHeight());
80 destination.set(getPaddingLeft(), getPaddingTop(), getWidth() - getPaddingRight(),
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
H A DDatePickerDialog.java120 * @param year The year that was set.
121 * @param monthOfYear The month that was set (0-11) for compatibility
123 * @param dayOfMonth The day of the month that was set.
142 * @param callBack How the parent is notified that the date is set.
157 mCalendar.set(Calendar.YEAR, year);
158 mCalendar.set(Calendar.MONTH, monthOfYear);
159 mCalendar.set(Calendar.DAY_OF_MONTH, dayOfMonth);
169 mCalendar.set(Calendar.YEAR, savedInstanceState.getInt(KEY_SELECTED_YEAR));
170 mCalendar.set(Calendar.MONTH, savedInstanceState.getInt(KEY_SELECTED_MONTH));
171 mCalendar.set(Calenda
[all...]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
H A DCameraMetadataTest.java338 mMetadata.set(key, null);
340 mMetadata.set(key, expected);
352 mMetadata.set(key, null);
368 * <p>As a side-effect, the metadata value corresponding to the key is now set to
377 mMetadata.set(key, null);
381 mMetadata.set(key, expected);
413 * the metadata value corresponding to the key is now set to {@code expected}.</p>
944 mMetadata.set(gpsProcessingMethodKey, helloWorld);
964 mMetadata.set(gpsProcessingMethodKeyArray, gpsStrings);
1028 mMetadata.set(CaptureResul
[all...]

Completed in 810 milliseconds

1234567891011>>