/hardware/ti/omap3/omx/audio/src/openmax_il/g722_dec/src/ |
OMX_G722Dec_Utils.c | 141 sigset_t set; local 142 sigemptyset (&set); 143 sigaddset (&set, SIGALRM); 144 status = pselect (fdmax+1, &rfds, NULL, NULL, &tv, &set); 165 G722DEC_DPRINT (":: DATA pipe is set in Component Thread\n"); 177 G722DEC_DPRINT (":: CMD pipe is set in Component Thread\n"); 183 G722DEC_STATEPRINT("****************** Component State Set to Loaded\n\n"); 362 /* set codec selection (64kbps <-> 0 / 56kbps <-> 1 / 48kbps <-> 2) */ [all...] |
/hardware/ti/omap3/omx/audio/src/openmax_il/g722_enc/src/ |
OMX_G722Enc_Utils.c | 132 sigset_t set; local 133 sigemptyset (&set); 134 sigaddset (&set, SIGALRM); 135 status = pselect (fdmax+1, &rfds, NULL, NULL, &tv, &set); 170 G722ENC_DPRINT ("%d :: CMD pipe is set in Component Thread\n",__LINE__); 206 G722ENC_DPRINT ("%d :: DATA pipe is set in Component Thread\n",__LINE__); 324 plcml_Init->DeviceInfo.TypeofRender = 1; /* set for record */ [all...] |
/libcore/crypto/src/main/java/org/conscrypt/ |
OpenSSLX509CRL.java | 43 import java.util.Set; 134 public Set<String> getCriticalExtensionOIDs() { 158 public Set<String> getNonCriticalExtensionOIDs() { 261 calendar.set(Calendar.MILLISECOND, 0); 270 calendar.set(Calendar.MILLISECOND, 0); 305 public Set<? extends X509CRLEntry> getRevokedCertificates() { 311 final Set<OpenSSLX509CRLEntry> crlSet = new HashSet<OpenSSLX509CRLEntry>();
|
/libcore/luni/src/main/java/java/lang/ |
AbstractStringBuilder.java | 61 final void set(char[] val, int len) throws InvalidObjectException { method in class:AbstractStringBuilder 276 * the new minimum capacity to set. 532 * the character to set.
|
/libcore/luni/src/main/java/java/net/ |
URL.java | 112 throw new Error("Factory already set"); 169 set(context.protocol, context.getHost(), context.getPort(), context.getAuthority(), method 251 // Set the fields from the arguments. Handle the case where the 262 // Set the stream handler for the URL either to the handler 302 * {@code URLStreamHandler} can use this method to set fields of the 305 protected void set(String protocol, String host, int port, String file, String ref) { method in class:URL 326 * core collections like {@link java.util.Map Map} and {@link java.util.Set 327 * Set} expect that {@code equals} and {@code hashCode} will return quickly. 660 * {@code URLStreamHandler} can use this method to set fields of the 663 protected void set(String protocol, String host, int port, String authority, String userInfo method in class:URL 669 set(protocol, host, port, file, ref); method [all...] |
/libcore/luni/src/main/java/java/text/ |
AttributedString.java | 29 import java.util.Set; 81 HashSet<Attribute> set = new HashSet<Attribute>( local 84 set.add(attributes[i]); 86 attributesAllowed = set; 178 * Returns a set of attributes present in the {@code AttributedString}. 179 * An empty set returned indicates that no attributes where defined. 181 * @return a set of attribute keys that may be empty. 183 public Set<AttributedIterator.Attribute> getAllAttributeKeys() { 189 Set<AttributedIterator.Attribute> result = new HashSet<Attribute>( 284 public int getRunLimit(Set<? extends Attribute> attributes) [all...] |
/libcore/luni/src/main/java/java/util/ |
ArrayList.java | 478 @Override public E set(int index, E object) { method in class:ArrayList 507 * is set to null.
|
Arrays.java | 107 public E set(int location, E object) { method in class:Arrays.ArrayList 146 * the elements can be set. Setting an element modifies the underlying [all...] |
BitSet.java | 60 * directly after a clear operation that may have cleared the highest set bit, but 61 * not safe after an xor operation that may have cleared the highest set bit or 62 * made a new highest set bit. In that case, you'd need to set 'longCount' to a conservative 179 public void set(int index) { method in class:BitSet 309 public void set(int index, boolean state) { method in class:BitSet 311 set(index); 324 public void set(int fromIndex, int toIndex, boolean state) { method in class:BitSet 326 set(fromIndex, toIndex); method 349 public void set(int fromIndex, int toIndex) method in class:BitSet [all...] |
SimpleTimeZone.java | 108 * Day of month: To specify an exact day of the month, such as March 1, set 126 * The daylight savings time difference is set to the default value: one hour. [all...] |
Vector.java | 873 public synchronized E set(int location, E object) { method [all...] |
/libcore/luni/src/main/java/java/util/concurrent/ |
CopyOnWriteArrayList.java | 50 * ListIterator#add} and {@link ListIterator#set} all throw {@link 194 * {@link ListIterator#set} or {@link Iterator#remove()}, 304 * API is more appropriate for set operations. 328 * API is more appropriate for set operations. 408 public synchronized E set(int index, E e) { method in class:CopyOnWriteArrayList 612 @Override public E set(int index, E object) { method in class:CopyOnWriteArrayList.CowSubList 616 E result = CopyOnWriteArrayList.this.set(index + slice.from, object); 747 public void set(E object) { method in class:CopyOnWriteArrayList.CowIterator
|
/libcore/luni/src/main/java/libcore/icu/ |
ICU.java | 86 LinkedHashSet<Locale> set = new LinkedHashSet<Locale>(); local 88 set.add(localeFromString(localeName)); 90 return set.toArray(new Locale[set.size()]);
|
/libcore/luni/src/test/java/libcore/java/text/ |
OldDateFormatTest.java | 168 c.set(Calendar.DAY_OF_MONTH, 32); 175 c.set(Calendar.DAY_OF_MONTH, 32); 185 c.set(Calendar.DAY_OF_MONTH, 32); 195 c.set(Calendar.DAY_OF_MONTH, 32); 445 c.set(Calendar.DAY_OF_MONTH, 32); 452 c.set(Calendar.DAY_OF_MONTH, 32); 474 assertTrue("TimeZone is set incorrectly", tz.equals(format
|
OldSimpleDateFormatTest.java | 287 temp.set(Calendar.MILLISECOND, 961); 485 assertTrue("Set incorrectly", newSym.equals(symbols));
|
/ndk/sources/cxx-stl/stlport/stlport/stl/pointers/ |
_set.h | 57 class set class in inherits:__stlport_class 59 : public __stlport_class<set<_Key, _Compare, _Alloc> > 73 typedef set<_Key, _Compare, _Alloc> _Self; 113 _Rep_type _M_t; // red-black tree representing set 129 set() : _M_t(_CompareStorageType(), _StorageTypeAlloc()) {} function in class:set 130 explicit set(const _Compare& __comp, function in class:set 136 set(_InputIterator __first, _InputIterator __last) function in class:set 148 set(_InputIterator __first, _InputIterator __last, const _Compare& __comp) function in class:set 159 set(_InputIterator __first, _InputIterator __last, const _Compare& __comp, function in class:set 170 set(const value_type* __first, const value_type* __last function in class:set 176 set(const value_type* __first, const value_type* __last, function in class:set 183 set(const_iterator __first, const_iterator __last) function in class:set 187 set(const_iterator __first, const_iterator __last, function in class:set 193 set(const _Self& __x) : _M_t(__x._M_t) {} function in class:set 196 set(__move_source<_Self> src) function in class:set [all...] |
/packages/apps/Calendar/src/com/android/calendar/alerts/ |
AlarmScheduler.java | 223 timeObj.set(localStartTime); 259 timeObj.set(alarmTime); 305 time.set(alarmTime); 320 alarmManager.set(AlarmManager.RTC_WAKEUP, alarmTime, pi);
|
/packages/apps/Camera/src/com/android/camera/ui/ |
FaceView.java | 205 mRect.set(mFaces[i].rect);
|
/packages/apps/Camera2/src/com/android/camera/data/ |
CameraDataAdapter.java | 224 mImages.set(pos, data);
|
/packages/apps/Camera2/src/com/android/camera/ui/ |
FaceView.java | 211 mRect.set(mFaces[i].rect);
|
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/ |
CellBroadcastAlertService.java | 155 // because the list is only used for removing old message IDs from the hash set. 161 sCmasIdList.set(sCmasIdListIndex, newCmasId); 163 // Remove oldest message ID from the set. 169 // Set.add() returns false if message ID has already been added
|
/packages/apps/DeskClock/src/com/android/alarmclock/ |
DigitalAppWidgetProvider.java | 174 // Set today's date format 180 // Set up R.id.digital_appwidget_listview to use a remote views adapter 187 // Set up the click on any world clock to start the Cities Activity 232 alarmManager.set(AlarmManager.RTC, onQuarterHour, quarterlyIntent);
|
/packages/apps/DeskClock/src/com/android/deskclock/provider/ |
Alarm.java | 302 nextInstanceTime.set(Calendar.YEAR, time.get(Calendar.YEAR)); 303 nextInstanceTime.set(Calendar.MONTH, time.get(Calendar.MONTH)); 304 nextInstanceTime.set(Calendar.DAY_OF_MONTH, time.get(Calendar.DAY_OF_MONTH)); 305 nextInstanceTime.set(Calendar.HOUR_OF_DAY, hour); 306 nextInstanceTime.set(Calendar.MINUTE, minutes); 307 nextInstanceTime.set(Calendar.SECOND, 0); 308 nextInstanceTime.set(Calendar.MILLISECOND, 0);
|
AlarmInstance.java | 313 calendar.set(Calendar.YEAR, mYear); 314 calendar.set(Calendar.MONTH, mMonth); 315 calendar.set(Calendar.DAY_OF_MONTH, mDay); 316 calendar.set(Calendar.HOUR_OF_DAY, mHour); 317 calendar.set(Calendar.MINUTE, mMinute); 318 calendar.set(Calendar.SECOND, 0); 319 calendar.set(Calendar.MILLISECOND, 0); 367 // Alarm silence has been set to "None"
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
LocationClustering.java | 153 ReverseGeocoder.SetLatLong set = new ReverseGeocoder.SetLatLong(); local 161 if (set.mMinLatLatitude > itemLatitude) { 162 set.mMinLatLatitude = itemLatitude; 163 set.mMinLatLongitude = itemLongitude; 165 if (set.mMaxLatLatitude < itemLatitude) { 166 set.mMaxLatLatitude = itemLatitude; 167 set.mMaxLatLongitude = itemLongitude; 169 if (set.mMinLonLongitude > itemLongitude) { 170 set.mMinLonLatitude = itemLatitude; 171 set.mMinLonLongitude = itemLongitude [all...] |