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

1234567891011>>

/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
H A DRegion.java67 /** Return a region set to the specified rectangle
74 /** Return a region set to the specified rectangle
89 public boolean set(Region region) { method in class:Region
96 public boolean set(Rect r) { method in class:Region
102 public boolean set(int left, int top, int right, int bottom) { method in class:Region
132 * Return a new Rect set to the bounds of the region. If the region is
133 * empty, the Rect will be set to [0, 0, 0, 0]
143 * Rect will be set to [0, 0, 0, 0]
226 * If this region is empty, then dst will be set to empty.
245 * If this region is empty, then dst will be set t
[all...]
/frameworks/base/libs/hwui/renderthread/
H A DCanvasContext.h20 #include <set>
137 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/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/net/voip/src/jni/rtp/
H A DG711Codec.cpp37 int set(int sampleRate, const char *fmtp) { function in class:__anon1456::UlawCodec
88 int set(int sampleRate, const char *fmtp) { function in class:__anon1456::AlawCodec
/frameworks/rs/
H A DrsAdapter.h36 void setAllocation(Allocation *a) {mAllocation.set(a);}
74 void setAllocation(Allocation *a) {mAllocation.set(a);}
/frameworks/webview/chromium/tools/
H A Dmerge_common.py76 assert(set(ALL_PROJECTS) ==
77 set(PROJECTS_WITH_FLAT_HISTORY + PROJECTS_WITH_FULL_HISTORY))
/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...]
/frameworks/base/core/java/android/net/
H A DNetworkPolicyManager.java91 * Add policy flags for specific UID. The given policy bits will be set for
103 * Clear/remove policy flags for specific UID. The given policy bits will be set for
196 now.set(currentTime);
212 cycle.set(lastMonth);
226 now.set(currentTime);
242 cycle.set(nextMonth);
/frameworks/base/core/java/android/widget/
H A DDateTimeView.java83 sReceiverInfo.set(ri);
100 t.set(time);
118 t.set(mTimeMillis);
132 t.set(nowMillis);
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/unit/
H A DWifiSoftAPTest.java65 config.allowedKeyManagement.set(KeyMgmt.NONE);
/frameworks/base/core/tests/coretests/src/android/util/
H A DLogTest.java40 /* TODO: This test is commented out because we will not be able to set properities. Fix the test.
43 SystemProperties.set(PROPERTY_TAG, null);
57 SystemProperties.set(PROPERTY_TAG, "VERBOSE");
68 SystemProperties.set(PROPERTY_TAG, "DEBUG");
79 SystemProperties.set(PROPERTY_TAG, "INFO");
90 SystemProperties.set(PROPERTY_TAG, "WARN");
101 SystemProperties.set(PROPERTY_TAG, "ERROR");
112 SystemProperties.set(PROPERTY_TAG, "ASSERT");
123 SystemProperties.set(PROPERTY_TAG, "SUPPRESS");
140 SystemProperties.set(LOG_TA
[all...]
/frameworks/base/core/tests/coretests/src/android/widget/scroll/
H A DRequestRectangleVisibleWithInternalScroll.java68 rect.set(0, 0, 0, mTextBlob.getHeight());
/frameworks/base/core/tests/coretests/src/com/android/internal/net/
H A DNetworkStatsFactoryTest.java157 private static void assertStatsEntry(NetworkStats stats, String iface, int uid, int set, argument
159 final int i = stats.findIndex(iface, uid, set, tag);
165 private static void assertStatsEntry(NetworkStats stats, String iface, int uid, int set, argument
167 final int i = stats.findIndex(iface, uid, set, tag);
/frameworks/base/include/androidfw/
H A DByteBucketArray.h79 bool set(size_t index, const T& value) {

Completed in 5327 milliseconds

1234567891011>>