HomeSort by relevance Sort by last modified time
    Searched refs:Enumeration (Results 1 - 25 of 268) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/junit/src/junit/runner/
TestCollector.java 3 import java.util.Enumeration;
14 * Returns an enumeration of Strings with qualified class names
16 public Enumeration collectTests();
  /dalvik/dx/src/junit/runner/
TestCollector.java 13 * Returns an enumeration of Strings with qualified class names
15 public Enumeration collectTests();
  /frameworks/base/test-runner/src/junit/runner/
TestCollector.java 14 * Returns an enumeration of Strings with qualified class names
16 public Enumeration collectTests();
  /libcore/junit/src/test/java/junit/runner/
TestCollector.java 13 * Returns an enumeration of Strings with qualified class names
15 public Enumeration collectTests();
  /libcore/luni/src/main/java/java/util/
Enumeration.java 24 * enumeration interface and adds a way to remove elements from a collection.
26 * <p>If you <i>have</i> an {@code Enumeration} and want a {@code Collection}, you
29 * <p>If you <i>need</i> an {@code Enumeration} for a legacy API and have a
30 * {@code Collection}, you can use {@link Collections#enumeration}.
35 public interface Enumeration<E> {
38 * Returns whether this {@code Enumeration} has more elements.
46 * Returns the next element in this {@code Enumeration}.
Dictionary.java 39 * Returns an enumeration on the elements of this dictionary.
41 * @return an enumeration of the values of this dictionary.
44 * @see Enumeration
46 public abstract Enumeration<V> elements();
69 * Returns an enumeration on the keys of this dictionary.
71 * @return an enumeration of the keys of this dictionary.
74 * @see Enumeration
76 public abstract Enumeration<K> keys();
PropertyResourceBundle.java 72 private Enumeration<String> getLocalKeys() {
73 return (Enumeration<String>) resources.propertyNames();
77 public Enumeration<String> getKeys() {
81 return new Enumeration<String>() {
82 Enumeration<String> local = getLocalKeys();
84 Enumeration<String> pEnum = parent.getKeys();
ListResourceBundle.java 49 public Enumeration<String> getKeys() {
52 return new Enumeration<String>() {
55 Enumeration<String> pEnum = parent.getKeys();
94 return new Enumeration<String>() {
  /libcore/luni/src/main/java/javax/net/ssl/
SSLSessionContext.java 20 import java.util.Enumeration;
31 public Enumeration<byte[]> getIds();
  /libcore/luni/src/main/java/java/security/
PermissionsHash.java 20 import java.util.Enumeration;
49 * Returns an enumeration of the permissions in the receiver.
51 * @return Enumeration the permissions in the receiver.
53 public Enumeration elements() {
68 for (Enumeration elements = elements(); elements.hasMoreElements();) {
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MyPermissionCollection.java 22 import java.util.Enumeration;
37 public Enumeration<Permission> elements() {
39 return new Enumeration<Permission>() {
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/interfaces/
PKCS12BagAttributeCarrier.java 3 import java.util.Enumeration;
20 Enumeration getBagAttributeKeys();
  /libcore/luni/src/main/java/java/lang/
EmptyEnumeration.java 21 import java.util.Enumeration;
25 * Empty enumeration class. Call getInstance() to get the singleton.
29 /*package*/ final class EmptyEnumeration implements Enumeration<URL>, Serializable {
46 * Enumeration implementation.
  /libcore/luni/src/main/java/java/security/acl/
Group.java 21 import java.util.Enumeration;
62 Enumeration<? extends Principal> members();
Acl.java 21 import java.util.Enumeration;
133 Enumeration<Permission> getPermissions(Principal user);
136 * Returns an {@code Enumeration} of the {@code AclEntry} of this
139 * @return an {@code Enumeration} of the {@code AclEntry} of this
142 Enumeration<AclEntry> entries();
AclEntry.java 21 import java.util.Enumeration;
102 Enumeration<Permission> permissions();
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
LazyDERSequence.java 4 import java.util.Enumeration;
22 Enumeration en = new LazyDERConstructionEnumeration(encoded);
42 public Enumeration getObjects()
56 Enumeration en = new LazyDERConstructionEnumeration(encoded);
BERConstructedSequence.java 4 import java.util.Enumeration;
23 Enumeration e = getObjects();
BERSequence.java 4 import java.util.Enumeration;
45 Enumeration e = getObjects();
DERConstructedSequence.java 5 import java.util.Enumeration;
38 Enumeration e = this.getObjects();
LazyDERConstructionEnumeration.java 3 import java.util.Enumeration;
7 implements Enumeration
  /cts/tools/dasm/src/java_cup/
non_terminal.java 3 import java.util.Enumeration;
63 public static Enumeration all() {return _all.elements();};
123 Enumeration e;
165 Enumeration n;
166 Enumeration p;
209 public Enumeration productions() {return _productions.elements();};
262 for (Enumeration e = productions(); e.hasMoreElements(); )
symbol_set.java 4 import java.util.Enumeration;
41 public Enumeration all() {return _all.elements();};
77 for (Enumeration e = all(); e.hasMoreElements(); )
139 for (Enumeration e = other.all(); e.hasMoreElements(); )
155 for (Enumeration e = other.all(); e.hasMoreElements(); )
194 Enumeration e;
213 for (Enumeration e = all(); e.hasMoreElements(); )
  /dalvik/dx/src/junit/framework/
TestResult.java 4 import java.util.Enumeration;
35 for (Enumeration e= cloneListeners().elements(); e.hasMoreElements(); ) {
45 for (Enumeration e= cloneListeners().elements(); e.hasMoreElements(); ) {
71 for (Enumeration e= cloneListeners().elements(); e.hasMoreElements(); ) {
82 * Returns an Enumeration for the errors
84 public synchronized Enumeration errors() {
94 * Returns an Enumeration for the failures
96 public synchronized Enumeration failures() {
150 for (Enumeration e= cloneListeners().elements(); e.hasMoreElements(); ) {
  /external/junit/src/junit/framework/
TestResult.java 3 import java.util.Enumeration;
35 for (Enumeration e= cloneListeners().elements(); e.hasMoreElements(); ) {
45 for (Enumeration e= cloneListeners().elements(); e.hasMoreElements(); ) {
71 for (Enumeration e= cloneListeners().elements(); e.hasMoreElements(); ) {
82 * Returns an Enumeration for the errors
84 public synchronized Enumeration errors() {
94 * Returns an Enumeration for the failures
96 public synchronized Enumeration failures() {
150 for (Enumeration e= cloneListeners().elements(); e.hasMoreElements(); ) {

Completed in 5895 milliseconds

1 2 3 4 5 6 7 8 91011