HomeSort by relevance Sort by last modified time
    Searched defs:set (Results 826 - 850 of 2219) sorted by null

<<31323334353637383940>>

  /external/smack/src/org/xbill/DNS/
Zone.java 71 Object set = current[count++]; local
86 return set;
110 throw new IOException(origin + ": no NS set specified");
240 RRset set = (RRset) types; local
241 return new RRset [] {set};
252 RRset set = (RRset) list.get(i); local
253 if (set.getType() == type)
254 return set;
257 RRset set = (RRset) types; local
258 if (set.getType() == type
285 RRset set = (RRset) list.get(i); local
293 RRset set = (RRset) types; local
314 RRset set = (RRset) list.get(i); local
323 RRset set = (RRset) types; local
    [all...]
Cache.java 213 Element set = (Element) types; local
214 return new Element[] {set};
227 Element set = (Element) list.get(i); local
228 if (set.getType() == type) {
229 found = set;
234 Element set = (Element) types; local
235 if (set.getType() == type)
236 found = set;
270 list.set(i, element);
570 markAdditional(RRset rrset, Set names)
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
AbsActionBarView.java 137 AnimatorSet set = new AnimatorSet(); local
140 set.addListener(mVisAnimListener.withFinalVisibility(visibility));
141 set.play(anim).with(splitAnim);
142 set.start();
152 AnimatorSet set = new AnimatorSet(); local
155 set.addListener(mVisAnimListener.withFinalVisibility(visibility));
156 set.play(anim).with(splitAnim);
157 set.start();
  /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,
  /libcore/luni/src/main/java/java/nio/
SelectorImpl.java 36 import java.util.Set;
56 private final Set<SelectionKeyImpl> mutableKeys = new HashSet<SelectionKeyImpl>();
59 * The unmodifiable set of keys as exposed to the user. This object is used
62 private final Set<SelectionKey> unmodifiableKeys = Collections
65 private final Set<SelectionKey> mutableSelectedKeys = new HashSet<SelectionKey>();
68 * The unmodifiable set of selectable keys as seen by the user. This object
71 private final Set<SelectionKey> selectedKeys
135 @Override public synchronized Set<SelectionKey> keys() {
231 * Updates the key ready ops and selected key set.
290 @Override public synchronized Set<SelectionKey> selectedKeys()
330 private final Set<E> set; field in class:SelectorImpl.UnaddableSet
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
IconCache.java 79 // need to set mIconDpi before getting default icon
290 HashMap<ComponentName,Bitmap> set = new HashMap<ComponentName,Bitmap>(); local
293 set.put(cn, e.icon);
295 return set;
  /dalvik/dx/src/com/android/dx/cf/code/
Ropper.java 187 retBlocks.set(retBlock);
196 callerBlocks.set(label);
249 Bits.set(workSet, label);
314 * Set up the first stack frame with the right limits, but leave it
620 bbl.set(i, result.get(i));
640 Bits.set(workSet, 0);
814 * construct a new set of successors to point at the
839 * Set up the exception handler type, by setting it if
872 insns.set(i, insn);
906 il.set(0, extraInsn)
    [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...]
  /packages/apps/Browser/src/com/android/browser/
NavTabScroller.java 502 AnimatorSet set = new AnimatorSet(); local
503 set.playTogether(trans, rot);
504 set.setDuration(100);
505 set.start();
  /packages/apps/Launcher2/src/com/android/launcher2/
WidgetPreviewLoader.java 47 public void set(T t) { method in class:SoftReferenceThreadLocal
48 mThreadLocal.set(new SoftReference<T>(t));
56 mThreadLocal.set(new SoftReference<T>(obj));
62 mThreadLocal.set(new SoftReference<T>(obj));
541 src.set(0, 0, defaultPreview.getWidth(), defaultPreview.getHeight());
542 dest.set(x, 0, x + previewWidth, previewHeight);
548 mCachedAppWidgetPreviewPaint.set(p);
564 mCachedShortcutPreviewBitmap.set(tempBitmap);
601 mCachedShortcutPreviewPaint.set(p);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
MatrixPaletteRenderer.java 150 public void set(int i, int j, float x, float y, float z, method in class:MatrixPaletteRenderer.Grid
372 * Set our projection matrix. This doesn't have to be done
374 * be set when the viewport is resized.
401 grid.set(i, j, x, y, z, u, v, w0, w1, 0, 1);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
EnumMapTest.java 26 import java.util.Set;
329 Set set = enumSizeMap.entrySet(); local
331 Set set1 = enumSizeMap.entrySet();
332 assertSame("Should be same", set1, set); //$NON-NLS-1$
334 set.add(mockEntry);
340 assertTrue("Returned false for contained object", set//$NON-NLS-1$
343 assertFalse("Returned true for uncontained object", set //$NON-NLS-1$
345 assertFalse("Returned true for uncontained object", set //$NON-NLS-1$
348 assertFalse("Returned true for uncontained object", set //$NON-NLS-1
598 Set set = enumSizeMap.keySet(); local
    [all...]
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
SimpleDateFormatTest.java 406 temp.set(Calendar.MILLISECOND, 961);
619 cal.set(Calendar.MILLISECOND, 999);
623 cal.set(Calendar.ERA, GregorianCalendar.BC);
688 cal.set(Calendar.DAY_OF_YEAR, 243);
691 cal.set(1970, Calendar.JANUARY, 1, 4, 30);
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
mootools-1.2.2-core-nc.js 810 Hash.set(this, key, value);
831 set: function(key, value){
851 results.set(key, fn.call(bind, value, key, this));
859 if (fn.call(bind, value, key, this)) results.set(key, value);
1312 return $(tag).set(props);
    [all...]
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
AtomicDoubleArrayTest.java 112 * get and set for out of bound indices throw IndexOutOfBoundsException
122 aa.set(index, 1.0);
149 * get returns the last value set at index
155 aa.set(i, VALUES[i]);
157 aa.set(i, -3.0);
202 a.set(0, 1.0);
259 aa.set(i, x);
276 aa.set(i, x);
319 aa.set(i, (double) COUNTDOWN);
336 x.set(i, (double) -i)
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/collision/bih/
BIHTree.java 144 Vector3f min = vars.vect1.set(new Vector3f(Float.POSITIVE_INFINITY, Float.POSITIVE_INFINITY, Float.POSITIVE_INFINITY));
145 Vector3f max = vars.vect2.set(new Vector3f(Float.NEGATIVE_INFINITY, Float.NEGATIVE_INFINITY, Float.NEGATIVE_INFINITY));
198 min.set(axis, value);
200 max.set(axis, value);
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Ray.java 249 store.set(origin).addLocal(direction.x * t,
260 store.set(t, w1, w2);
380 loc.set(direction).multLocal(ratio).addLocal(origin);
415 tempVb.set(origin);
441 this.origin.set(origin);
480 this.direction.set(direction);
489 public void set(Ray source) { method in class:Ray
490 origin.set(source.getOrigin());
491 direction.set(source.getDirection());
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
ShadowWrangler.java 177 field.set(instance, shadow);
272 realObjectField.set(target, value);
  /frameworks/base/core/java/android/hardware/camera2/
CaptureRequest.java 113 * @return the last tag Object set on this request, or {@code null} if
114 * no tag has been set.
124 * <p>A request is considered equal to another is if it's set of key/values is equal, it's
256 * Set a capture request field to a value. The field definitions can be
260 * @param value The value to set the field to, which must be of a matching
263 public <T> void set(Key<T> key, T value) { method in class:CaptureRequest.Builder
264 mRequest.mSettings.set(key, value);
274 * @return The value of that key, or {@code null} if the field is not set.
281 * Set a tag for this request.
339 * This matrix is either set by HAL when the reques
    [all...]
  /frameworks/base/core/java/android/provider/
BrowserContract.java 54 * the dirty flag is not automatically set and the "syncToNetwork" parameter
55 * is set to false when calling
538 * @see android.provider.SyncStateContract.Helpers#set
540 public static void set(ContentProviderClient provider, Account account, byte[] data) method in class:BrowserContract.SyncState
542 SyncStateContract.Helpers.set(provider, CONTENT_URI, account, data);
712 * If set to non-0 the user has opted into bookmark sync.
  /frameworks/base/wifi/java/android/net/wifi/
WifiConfiguration.java 208 * When set, this network configuration entry should only be used when
250 * The set of key management protocols supported by this configuration.
256 * The set of security protocols supported by this configuration.
262 * The set of authentication protocols supported by this configuration.
268 * The set of pairwise ciphers for WPA supported by this configuration.
274 * The set of group ciphers supported by this configuration.
538 BitSet set = new BitSet(); local
540 set.set(src.readInt());
543 return set;
    [all...]
  /libcore/luni/src/main/java/java/util/
GregorianCalendar.java 87 * is the earliest set of at least {@code getMinimalDaysInFirstWeek()}
120 * // set up rules for daylight savings time
155 * calendar.set(Calendar.HOUR, 3);
247 set(year, month, day); method
267 set(year, month, day, hour, minute); method
290 set(year, month, day, hour, minute, second); method
366 set(ERA, BC); method
371 set(ERA, AD); method
387 set(MONTH, month % 12); method
389 set(YEAR, fields[YEAR] + value) method
392 set(DATE, days); method
887 set(DATE, 31); method
888 set(MONTH, DECEMBER); method
891 set(DATE, 31 - 7); method
897 set(DATE, daysInMonth()); method
1135 set(field, 1); method
1137 set(field, newWeek - 1); method
1142 set(field, 1); method
1144 set(field, newWeek); method
1147 set(field, newWeek); method
1159 set(day, days); method
1161 set(field, newWeek); method
1166 set(day, 1); method
1168 set(field, newWeek); method
1171 set(field, newWeek); method
1196 set(field, mod(fields[field] + value, maximums[field] + 1)); method
1198 set(DATE, daysInMonth()); method
1205 set(field, mod(fields[field] - 1 + value, max) + 1); method
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
OldAndroidClassTest.java 25 import java.util.Set;
115 field.set(obj, null);
142 Set<String> set = new HashSet<String>(); local
152 assertFalse("Duplicate " + signature, set.contains(signature));
153 set.add(signature);

Completed in 790 milliseconds

<<31323334353637383940>>