Searched defs:add (Results 1 - 25 of 80) sorted by relevance

1234

/dalvik/libcore/luni/src/main/java/java/io/
H A DFilePermissionCollection.java49 * the FilePermission object to add to the collection.
55 * @see java.security.PermissionCollection#add(java.security.Permission)
58 public void add(Permission permission) { method in class:FilePermissionCollection
/dalvik/libcore/luni/src/main/java/java/net/
H A DSocketPermissionCollection.java45 public void add(Permission permission) { method in class:SocketPermissionCollection
/dalvik/libcore/luni/src/main/java/java/util/
H A DAbstractQueue.java21 * {@link Queue}. The provided implementations of {@code add, remove} and
53 public boolean add(E o) { method in class:AbstractQueue
H A DAbstractSequentialList.java40 public void add(int location, E object) { method in class:AbstractSequentialList
41 listIterator(location).add(object);
51 // it.add(colIt.next());
62 it.add(colIt.next());
H A DListIterator.java43 void add(E object); method in interface:ListIterator
118 * {@code remove} or {@code add} have already been called after
138 * {@code remove} or {@code add} have already been called after
H A DPropertyPermissionCollection.java40 public void add(Permission perm) { method in class:PropertyPermissionCollection
H A DAbstractCollection.java27 * modifiable collection it's necessary to override the {@code add()} method that
44 * @see Collection#add
46 public boolean add(E object) { method in class:AbstractCollection
51 * Attempts to add all of the objects contained in {@code collection}
53 * iterates over the given {@code Collection} and calls {@code add} for each
84 if (add(it.next())) {
H A DCollection.java50 * Attempts to add {@code object} to the contents of this
71 * the object to add.
86 public boolean add(E object); method in interface:Collection
89 * Attempts to add all of the objects contained in {@code Collection}
H A DSet.java33 * the object to add.
43 public boolean add(E object); method in interface:Set
/dalvik/libcore/security/src/main/java/java/security/
H A DPermissionsHash.java56 * the permission to add to the collection.
58 public void add(Permission permission) { method in class:PermissionsHash
H A DBasicPermissionCollection.java64 * @see java.security.PermissionCollection#add(java.security.Permission)
66 public void add(Permission permission) { method in class:BasicPermissionCollection
84 // this is the first element provided that another thread did not add
H A DPermissionCollection.java57 * the {@code Permission} to add.
62 public abstract void add(Permission permission); method in class:PermissionCollection
123 elist.add(el);
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
H A DDEREncodableVector.java14 public void add( method in class:DEREncodableVector
/dalvik/dx/src/com/android/dx/util/
H A DIntSet.java27 * @param value int to add
29 void add(int value); method in interface:IntSet
H A DListIntSet.java38 public void add(int value) { method in class:ListIntSet
72 add(o.ints.get(j++));
83 add(o.ints.get(j++));
91 ints.add(i);
97 add(iter.next());
H A DBitIntSet.java39 public void add(int value) { method in class:BitIntSet
89 add(iter.next());
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
H A DBlockingQueue.java24 * to <tt>add</tt>, <tt>put</tt> or <tt>offer</tt> a <tt>null</tt>. A
104 * preferable to method {@link Collection#add}, which can fail to
107 * @param o the element to add.
108 * @return <tt>true</tt> if it was possible to add the element to
117 * @param o the element to add
156 * @param o the element to add
168 * an attempt to <tt>add</tt> an element will succeed by
182 * <tt>Collection.add</tt>).
187 boolean add(E o); method in interface:BlockingQueue
193 * encountered while attempting to <tt>add</t
[all...]
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/lang/reflect/
H A DListOfVariables.java28 void add (TypeVariable<?> elem) { method in class:ListOfVariables
29 array.add(elem);
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/generators/
H A DDSAParametersGenerator.java40 * add value to b, returning the result in a. The a value is treated
44 private void add( method in class:DSAParametersGenerator
94 add(part2, seed, 1);
120 add(part1, seed, offset + k);
126 add(part1, seed, offset + n);
/dalvik/libcore/support/src/test/java/org/apache/harmony/security/tests/support/
H A DMyPermissionCollection.java35 public void add(Permission permission) {} method in class:MyPermissionCollection
/dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/dom/
H A DNodeListImpl.java47 void add(NodeImpl node) { method in class:NodeListImpl
48 children.add(node);
/dalvik/libcore-disabled/sound/src/main/java/javax/sound/midi/
H A DTrack.java27 private MidiEvent badEvent; //variable to save event which I try to add
38 events.add(new MidiEvent(new MetaMessage(new byte[] {-1, 47, 0}), 0));
40 public boolean add(MidiEvent event) { method in class:Track
45 * if I want to add to empty Track new event that is not meta-event End of Track,
47 * event doesn't add to Track, but meta-event adds. If I try to add the same
48 * event after it, method Track.add(MidiEvent) return 'false', and my event
49 * doesn't add again. So, I want to delete this event and use method
51 * this "shamanism" I can add this event to Track normally.
77 return events.add(even
[all...]
/dalvik/dx/src/com/android/dx/dex/code/
H A DOutputCollector.java59 * @param insn non-null; the instruction to add
61 public void add(DalvInsn insn) { method in class:OutputCollector
62 finisher.add(insn);
82 * @param insn non-null; the instruction to add
85 suffix.add(insn);
113 finisher.add(suffix.get(i));
/dalvik/dx/src/com/android/dx/dex/file/
H A DStatistics.java42 * @param item non-null; the item to add
44 public void add(Item item) { method in class:Statistics
51 data.add(item);
58 * @param list non-null; the list of items to add
63 add(item);
148 public void add(Item item) { method in class:Statistics.Data
/dalvik/dx/src/com/android/dx/ssa/back/
H A DInterferenceGraph.java50 interference.add(SetFactory.makeInterferenceSet(countRegs));
61 public void add(int regV, int regW) { method in class:InterferenceGraph
64 interference.get(regV).add(regW);
65 interference.get(regW).add(regV);
105 interference.add(SetFactory.makeInterferenceSet(size));

Completed in 374 milliseconds

1234