/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
MobileDataControllerImpl.java | 102 rt.set(t.monthDay, t.month + months, t.year); 131 policyTime.set(policy.cycleDay, policyTime.month, policyTime.year);
|
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/ |
AndroidCamera2Settings.java | 61 * it didn't explicitly set first). {@link Camera2RequestSettingsSet}s 158 mTemplateSettings.set(key, defaultDefault); 190 mCropRectangle.set(0, 0, 249 mRequestSettings.set(setting, matchesTemplateDefault(setting) ? null : possibleChoice); 262 mRequestSettings.set(SCALER_CROP_REGION, mCropRectangle); 274 mRequestSettings.set(LENS_OPTICAL_STABILIZATION_MODE, 361 mRequestSettings.set(CONTROL_AE_MODE, aeMode); 362 mRequestSettings.set(FLASH_MODE, flashMode); 400 mRequestSettings.set(CONTROL_AF_MODE, mode); 478 mRequestSettings.set(CONTROL_SCENE_MODE, mode) [all...] |
AndroidCamera2AgentImpl.java | 54 import java.util.Set; 111 Set<String> currentSet = new HashSet<String>(Arrays.asList(currentCameraDevices)); 116 mCameraDevices.set(index, null); 445 trigger.set(CaptureRequest.CONTROL_AF_TRIGGER, 474 cancel.set(CaptureRequest.CONTROL_AF_TRIGGER, 525 // Only set the JPEG capture orientation if requested to do so; otherwise, 528 mPersistentSettings.set(CaptureRequest.JPEG_ORIENTATION, msg.arg2 > 0 ? 534 mPersistentSettings.set(CaptureRequest.JPEG_ORIENTATION, msg.arg1); 621 // Set a one-time capture to trigger the camera driver's autoexposure: 624 expose.set(CaptureRequest.CONTROL_AE_PRECAPTURE_TRIGGER [all...] |
/frameworks/opt/net/voip/src/java/android/net/sip/ |
SimpleSessionDescription.java | 223 * the value is {@code null}. To set a binary attribute, use an empty 302 super.set("a=rtpmap:" + format, ' ', null); 303 super.set("a=fmtp:" + format, ' ', fmtp); 311 super.set("a=rtpmap:" + format, ' ', null); 312 super.set("a=fmtp:" + format, ' ', null); 356 super.set("a=rtpmap:" + format, ' ', rtpmap); 357 super.set("a=fmtp:" + format, ' ', fmtp); 383 * This class acts as a set of fields, and the size of the set is expected 423 set("c", '=', address) 540 set(line, delimiter, ""); method 584 private void set(String key, char delimiter, String value) { method in class:SimpleSessionDescription.Fields [all...] |
/frameworks/opt/net/voip/src/java/com/android/server/sip/ |
SipWakeupTimer.java | 151 public synchronized void set(int period, Runnable callback) { method in class:SipWakeupTimer 165 log("set: add event " + event + " scheduled on " 220 mAlarmManager.set(AlarmManager.ELAPSED_REALTIME_WAKEUP,
|
/frameworks/support/v4/api21/android/support/v4/app/ |
FragmentTransitionCompat21.java | 301 epicenter.set(loc[0], loc[1], loc[0] + view.getWidth(), loc[1] + view.getHeight()); 389 TransitionSet set = (TransitionSet) transition; local 390 int numTransitions = set.getTransitionCount(); 392 Transition child = set.getTransitionAt(i); 418 TransitionSet set = (TransitionSet) transition; local 419 int numTransitions = set.getTransitionCount(); 421 Transition child = set.getTransitionAt(i);
|
/frameworks/support/v7/cardview/src/android/support/v7/widget/ |
CardView.java | 41 * Since padding is used to offset content for shadows, you cannot set padding on CardView. 44 * in code to set the padding between the edges of the Card and children of CardView. 49 * padding on platforms L and after as well, you can set {@link #setUseCompatPadding(boolean)} to 135 * As an alternative, you can set this flag to <code>true</code> and CardView will add the same 170 mContentPadding.set(left, top, right, bottom); 230 * @param color The new color to set for the card background 301 mShadowBounds.set(left, top, right, bottom);
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
AtomicIntegerArrayTest.java | 60 * get and set for out of bound indices throw IndexOutOfBoundsException 70 aa.set(index, 1); 97 * get returns the last value set at index 102 aa.set(i, 1); 104 aa.set(i, 2); 106 aa.set(i, -3); 132 aa.set(i, 1); 149 a.set(0, 1); 170 aa.set(i, 1); 185 aa.set(i, 1) [all...] |
AtomicLongArrayTest.java | 60 * get and set for out of bound indices throw IndexOutOfBoundsException 70 aa.set(index, 1); 97 * get returns the last value set at index 102 aa.set(i, 1); 104 aa.set(i, 2); 106 aa.set(i, -3); 132 aa.set(i, 1); 149 a.set(0, 1); 170 aa.set(i, 1); 185 aa.set(i, 1) [all...] |
/libcore/luni/src/main/java/java/nio/ |
SelectorImpl.java | 35 import java.util.Set; 60 private final Set<SelectionKeyImpl> mutableKeys = new HashSet<SelectionKeyImpl>(); 63 * The unmodifiable set of keys as exposed to the user. This object is used 66 private final Set<SelectionKey> unmodifiableKeys = Collections 69 private final Set<SelectionKey> mutableSelectedKeys = new HashSet<SelectionKey>(); 72 * The unmodifiable set of selectable keys as seen by the user. This object 75 private final Set<SelectionKey> selectedKeys 139 @Override public synchronized Set<SelectionKey> keys() { 233 * Updates the key ready ops and selected key set. 292 @Override public synchronized Set<SelectionKey> selectedKeys() 333 private final Set<E> set; field in class:SelectorImpl.UnaddableSet [all...] |
/libcore/luni/src/test/java/libcore/icu/ |
DateIntervalFormatTest.java | 38 c.set(Calendar.MONTH, Calendar.JANUARY); 39 c.set(Calendar.DAY_OF_MONTH, 19); 40 c.set(Calendar.HOUR_OF_DAY, 3); 41 c.set(Calendar.MINUTE, 30); 42 c.set(Calendar.SECOND, 15); 43 c.set(Calendar.MILLISECOND, 0); 46 c.set(Calendar.YEAR, 2009); 49 c.set(Calendar.MINUTE, 0); 50 c.set(Calendar.SECOND, 0); 177 c.set(2042, Calendar.JANUARY, 19, 3, 30) [all...] |
/libcore/luni/src/test/java/libcore/java/util/ |
CalendarTest.java | 55 calendar.set(2011, 9, 15, 1, 0); // 01:00 GMT-3 71 calendar.set(2011, 9, 15, 0, 0); // 00:00 GMT-3 80 calendar.set(2011, 1, 19, 0, 0); // 00:00 GMT-2 89 calendar.set(2011, 1, 19, 1, 0); // 00:00 GMT-2 98 calendar.set(2011, 9, 15, 1, 0); // 01:00 GMT-3 107 calendar.set(2011, 9, 15, 1, 0); // 01:00 GMT-3 116 calendar.set(2011, 9, 1, 2, 10); // 02:10 GMT+10:30 127 calendar.set(2011, 9, 1, 2, 10); // 02:10 GMT+10:30 152 calendar.set(year, month, day, hour, minute); 215 cal.set(Calendar.YEAR, 1970) [all...] |
/packages/apps/DeskClock/src/com/android/deskclock/provider/ |
Alarm.java | 324 previousInstanceTime.set(Calendar.YEAR, currentTime.get(Calendar.YEAR)); 325 previousInstanceTime.set(Calendar.MONTH, currentTime.get(Calendar.MONTH)); 326 previousInstanceTime.set(Calendar.DAY_OF_MONTH, currentTime.get(Calendar.DAY_OF_MONTH)); 327 previousInstanceTime.set(Calendar.HOUR_OF_DAY, hour); 328 previousInstanceTime.set(Calendar.MINUTE, minutes); 329 previousInstanceTime.set(Calendar.SECOND, 0); 330 previousInstanceTime.set(Calendar.MILLISECOND, 0); 343 nextInstanceTime.set(Calendar.YEAR, currentTime.get(Calendar.YEAR)); 344 nextInstanceTime.set(Calendar.MONTH, currentTime.get(Calendar.MONTH)); 345 nextInstanceTime.set(Calendar.DAY_OF_MONTH, currentTime.get(Calendar.DAY_OF_MONTH)) [all...] |
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
AttachmentTile.java | 220 mAttachmentPreviewCache.set(mAttachment, result); 284 void set(Attachment attachment, Bitmap preview); method in interface:AttachmentTile.AttachmentPreviewCache
|
/dalvik/dx/src/com/android/dx/cf/code/ |
Ropper.java | 268 retBlocks.set(retBlock); 277 callerBlocks.set(label); 330 Bits.set(workSet, label); 399 * Set up the first stack frame with the right limits, but leave it 709 bbl.set(i, result.get(i)); 729 Bits.set(workSet, 0); 903 * construct a new set of successors to point at the 928 * Set up the exception handler type. [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/ |
CompatibilityTest.java | 47 jdkCal.set(1582, Calendar.OCTOBER, 15); 196 cal.set(year, month, dom); 217 cal.set(year, month, dom); 235 tempcal.set(1582, Calendar.OCTOBER, 15); 252 cal.set(y, m, d); 268 tempcal.set(1990, Calendar.APRIL, 15); 323 if (cal.getFirstDayOfWeek() != i) errln("FAIL: set/getFirstDayOfWeek failed"); 328 if (cal.getMinimalDaysInFirstWeek() != i) errln("FAIL: set/getFirstDayOfWeek failed"); 342 cal.set(1984, 5, 24); 344 tempcal.set(1984, 5, 24) [all...] |
CalendarRegression.java | 75 // require the host zone to be set; it can be set in Java. 82 cal.set(1900, 15, 5, 5, 8, 13); 91 cal.set(1900, 15, 5, 5, 8, 13); 100 cal.set(1900, 15, 5, 5, 8, 13); 105 cal2.set(1900, 15, 5, 5, 8, 13); 156 calendar.set(Calendar.MONTH,3); 157 calendar.set(Calendar.DAY_OF_MONTH,18); 158 calendar.set(Calendar.SECOND, 30); 168 //instead of the date it was set to [all...] |
ChineseTest.java | 100 grego.set(DATA[i++], DATA[i++]-1, DATA[i++]); 124 grego.set(DATA[i++], DATA[i++]-1, DATA[i++]); 131 cal.set(Calendar.EXTENDED_YEAR, cyear); 132 cal.set(Calendar.MONTH, cmonth-1); 133 cal.set(Calendar.IS_LEAP_MONTH, cisleapmonth); 134 cal.set(Calendar.DAY_OF_MONTH, cdayofmonth); 184 tempcal.set(1989, Calendar.NOVEMBER, 1); 269 tempcal.set(2001, Calendar.MAY, 22); 271 tempcal.set(2001, Calendar.MAY, 23); 309 // If we set DAY_OF_YEAR only, that should be use [all...] |
IslamicTest.java | 134 cal.set(1000, 0, 30); 140 cal.set(1, 0, 30); 152 cal.set(2007, Calendar.JANUARY, 1); 172 cal.set(IslamicCalendar.YEAR,1431); 173 cal.set(IslamicCalendar.MONTH, IslamicCalendar.DHU_AL_HIJJAH); 265 errln("get/set time failed with non-civil islamic calendar"); 338 cal.set(initYear, initMonth, initDay); 345 errln("values post set():\tmonth "+month+"\tday "+day+"\tyear "+year); 356 errln("unexpected exception that wasn't for trying to set a date to '30'. errmsg - " + iae.getLocalizedMessage()); [all...] |
/frameworks/base/core/java/android/widget/ |
SimpleMonthView.java | 158 // Set up accessibility components. 174 * text color if one is set in the text appearance. 401 mDayOfWeekLabelCalendar.set(Calendar.DAY_OF_WEEK, dayOfWeek); 544 mCalendar.set(Calendar.MONTH, mMonth); 545 mCalendar.set(Calendar.YEAR, mYear); 546 mCalendar.set(Calendar.DAY_OF_MONTH, 1); 745 outBounds.set(left, top, left + colWidth, top + rowHeight); 752 * {@link OnDayClickListener} if one is set. 763 date.set(mYear, mMonth, day); 857 mTempCalendar.set(mYear, mMonth, id) [all...] |
/dalvik/dx/src/com/android/dx/ssa/ |
SsaBasicBlock.java | 53 /** {@code non-null;} predecessor set (by block list index) */ 56 /** {@code non-null;} successor set (by block list index) */ 139 * @param parent method of this block predecessor set will be 199 * the phi will be set to void, to indicate that it's currently unknown. 244 insns.set(insns.size() - 1, newInsn); 340 * @return {@code non-null;} predecessors set, indexed by block index 347 * @return {@code non-null;} successors set, indexed by block index 420 newPred.successors.set(index) ; 427 predecessors.set(newPred.index); 461 newSucc.predecessors.set(this.index) [all...] |
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
SsaBasicBlock.java | 54 /** {@code non-null;} predecessor set (by block list index) */ 57 /** {@code non-null;} successor set (by block list index) */ 140 * @param parent method of this block predecessor set will be 200 * the phi will be set to void, to indicate that it's currently unknown. 245 insns.set(insns.size() - 1, newInsn); 341 * @return {@code non-null;} predecessors set, indexed by block index 348 * @return {@code non-null;} successors set, indexed by block index 421 newPred.successors.set(index) ; 428 predecessors.set(newPred.index); 462 newSucc.predecessors.set(this.index) [all...] |
/external/guava/guava-testlib/src/com/google/common/testing/ |
ClassSanityTester.java | 55 import java.util.Set; 127 * To set sample instances for equality testing, use {@link #setSampleInstances} instead. 153 Set<Object> uniqueValues = new HashSet<Object>(); 405 private final Set<String> packagesToTest = Sets.newHashSet(); 605 newArgs.set(i, newArg); 635 equalArgs.set(i, shouldBeEqualArg); 645 tentativeArgs.set(i, alternateArg); [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/ |
UnicodeSetStringSpanTest.java | 32 UnicodeSet set = new UnicodeSet(pattern); local 33 set.complement(); 34 int pos = set.spanBack(string, 3, SpanCondition.SIMPLE); 37 set.toString(), string, pos)); 39 pos = set.span(string, SpanCondition.SIMPLE); 42 set.toString(), string, pos)); 44 pos = set.span(string, 1, SpanCondition.SIMPLE); 47 set.toString(), string, pos)); 57 UnicodeSetWithStrings set = new UnicodeSetWithStrings(uset); local 59 int length = containsSpanBackUTF16(set, string, 3, SpanCondition.SIMPLE) 84 UnicodeSet set = new UnicodeSet(pattern); local 135 private UnicodeSet set; field in class:UnicodeSetStringSpanTest.UnicodeSetWithStrings 753 UnicodeSetWithStrings set = new UnicodeSetWithStrings(uset); local 818 UnicodeSetWithStrings set = new UnicodeSetWithStrings(uset); local [all...] |
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/ |
Pick.java | 13 import java.util.Set; 136 public abstract String getInternal(int depth, Set alreadySeen); 158 public String getInternal(int depth, Set alreadySeen) { 183 String checkName(String nameStr, Set alreadySeen) { 218 public String getInternal(int depth, Set alreadySeen) { 273 public String getInternal(int depth, Set alreadySeen) { 321 public String getInternal(int depth, Set alreadySeen) { 378 public String getInternal(int depth, Set alreadySeen) { 430 public String getInternal(int depth, Set alreadySeen) { 457 public String getInternal(int depth, Set alreadySeen) 493 Set set = (Set)val.get(item); local [all...] |