Searched defs:add (Results 101 - 107 of 107) sorted by relevance

12345

/libcore/ojluni/src/main/java/java/io/
H A DObjectInputStream.java3241 // REMIND: add full description of exception propagation algorithm?
3309 // add to dependency list of target
3313 deps[target].add(dependent);
3492 public void add(int handle) { method in class:ObjectInputStream.HandleTable.HandleList
/libcore/ojluni/src/main/java/java/util/
H A DCalendar.java102 * <code>add</code> and <code>roll</code> involves such calculation.
206 * <code>set()</code>, <code>add()</code>, and <code>roll()</code>.</p>
214 * <code>add()</code>, or <code>roll()</code> is made. Thus, multiple calls to
233 * <p><strong><code>add(f, delta)</code></strong> adds <code>delta</code>
257 * <p>In addition, unlike <code>set()</code>, <code>add()</code> forces
262 * originally set to August 31, 1999. Calling <code>add(Calendar.MONTH,
267 * <code>GregorianCalendar</code>, <strong>add rule 2</strong> sets the
275 * fields. This is equivalent to calling <code>add(f, delta)</code> with
288 * <code>add()</code> and <code>roll()</code>, consider a user interface
297 * <code>add()</cod
1996 abstract public void add(int field, int amount); method in class:Calendar
[all...]
H A DFormatter.java2519 al.add(new FixedString(s.substring(plainTextStart,
2525 al.add(fsp.getFormatSpecifier());
2732 f.add(Flags.UPPERCASE);
2756 f.add(Flags.UPPERCASE);
3310 // If the precision is zero and the '#' flag is set, add the
3353 // If the precision is zero and the '#' flag is set, add the
3386 // If the precision is zero and the '#' flag is set, add the
3470 // Look for the dot. If we don't find one, the we'll need to add
3471 // it before we add the zeros.
4260 private Flags add(Flag method in class:Formatter.Flags
[all...]
H A DCollections.java1127 public boolean add(E e) { method in class:Collections.UnmodifiableCollection
1299 public void add(int index, E element) { method in class:Collections.UnmodifiableList
1338 public void add(E e) {
1879 public boolean add(E e) { method in class:Collections.SynchronizedCollection
1880 synchronized (mutex) {return c.add(e);}
2152 public void add(int index, E element) { method in class:Collections.SynchronizedList
2153 synchronized (mutex) {list.add(index, element);}
2651 public boolean add(E e) { method in class:Collections.CheckedCollection
2653 return c.add(e);
2878 public void add(in method in class:Collections.CheckedList
3193 public boolean add(Map.Entry<K, V> e) { method in class:Collections.CheckedMap.CheckedEntrySet
3519 public void add(E e) { throw new UnsupportedOperationException(); } method in class:Collections.EmptyListIterator
4660 public boolean add(E e) { return m.put(e, Boolean.TRUE) == null; } method in class:Collections.SetFromMap
4729 public boolean add(E e) { q.addFirst(e); return true; } method in class:Collections.AsLIFOQueue
[all...]
/libcore/luni/src/main/java/java/util/concurrent/
H A DConcurrentHashMap.java111 * {@link #computeIfAbsent computeIfAbsent}. For example, to add a count
1201 * operations. It does not support the {@code add} or
1229 * support the {@code add} or {@code addAll} operations.
2183 * Collection#add} and {@link Collection#addAll(Collection)}).
2292 * @param x the count to add
4621 public boolean add(K e) { method in class:ConcurrentHashMap.KeySetView
4630 * as if by calling {@link #add} on each one.
4716 public final boolean add(V e) { method in class:ConcurrentHashMap.ValuesView
4783 public boolean add(Entry<K,V> e) { method in class:ConcurrentHashMap.EntrySetView
4790 if (add(
[all...]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
H A DArraysTest.java2360 listOfBoolean.add(new Boolean(boolArr[i]));
2378 listOfInteger.add(new Integer(intArr[i]));
2398 listOfCharacter.add(new Character(charArr[i]));
2415 listOfByte.add(new Byte(byteArr[i]));
2433 listOfLong.add(new Long(longArr[i]));
2450 listOfFloat.add(new Float(floatArr[i]));
2470 listOfDouble.add(new Double(doubleArr[i]));
2487 listOfShort.add(new Short(shortArr[i]));
2504 listOfObject.add(objectArr[i]);
4237 sp1.forEachRemaining(value -> recorder.add(valu
4275 public void add(int element) { method in class:ArraysTest.PrimitiveIntArrayList
4293 public void add(long element) { method in class:ArraysTest.PrimitiveLongArrayList
4311 public void add(double element) { method in class:ArraysTest.PrimitiveDoubleArrayList
[all...]
/libcore/support/src/test/java/tests/resources/
H A Djunit4-4.3.1.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...

Completed in 2329 milliseconds

12345