/dalvik/libcore/support/src/test/java/org/apache/harmony/security/tests/support/acl/ |
AclImpl.java | 88 public synchronized Enumeration getPermissions(Principal principal) {
89 Enumeration enumeration2 = subtract(getGroupPositive(principal), getGroupNegative(principal));
90 Enumeration enumeration3 = subtract(getGroupNegative(principal), getGroupPositive(principal));
91 Enumeration enumeration = subtract(getIndividualPositive(principal), getIndividualNegative(principal));
local 92 Enumeration enumeration1 = subtract(getIndividualNegative(principal), getIndividualPositive(principal));
93 Enumeration enumeration4 = subtract(enumeration2, enumeration1);
94 Enumeration enumeration5 = union(enumeration, enumeration4);
95 enumeration = subtract(getIndividualPositive(principal), getIndividualNegative(principal)); 167 Enumeration enumeration = zeroSet.elements(); local 182 Enumeration enumeration = zeroSet.elements(); local 197 Enumeration enumeration = zeroSet.elements(); local 205 Enumeration enumeration = zeroSet.elements(); local [all...] |
AclEntryImpl.java | 22 import java.util.Enumeration;
81 public Enumeration permissions() {
96 Enumeration enumeration = permissions();
local 98 if(!enumeration.hasMoreElements())
100 Permission permission = (Permission)enumeration.nextElement();
102 if(enumeration.hasMoreElements())
|
AclEnumerator.java | 23 final class AclEnumerator implements Enumeration {
26 Enumeration u1;
27 Enumeration u2;
28 Enumeration g1;
29 Enumeration g2;
|
OwnerImpl.java | 22 import java.util.Enumeration;
56 Enumeration enumeration = ownerGroup.members();
local 57 Object obj = enumeration.nextElement();
58 if(enumeration.hasMoreElements()) {
|
GroupImpl.java | 22 import java.util.Enumeration;
53 public Enumeration members() {
94 for(Enumeration enumeration = members(); enumeration.hasMoreElements();) {
96 Principal principal1 = (Principal)enumeration.nextElement();
|
/dalvik/dx/src/junit/runner/ |
TestCollector.java | 13 * Returns an enumeration of Strings with qualified class names 15 public Enumeration collectTests();
|
/dalvik/libcore/luni/src/test/java/junit/runner/ |
TestCollector.java | 13 * Returns an enumeration of Strings with qualified class names 15 public Enumeration collectTests();
|
/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/libcore/security/src/main/java/org/bouncycastle/jce/interfaces/ |
PKCS12BagAttributeCarrier.java | 3 import java.util.Enumeration; 20 public Enumeration getBagAttributeKeys();
|
/frameworks/base/test-runner/src/junit/runner/ |
TestCollector.java | 14 * Returns an enumeration of Strings with qualified class names 16 public Enumeration collectTests();
|
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/ |
BERConstructedSequence.java | 4 import java.util.Enumeration; 23 Enumeration e = getObjects();
|
BERSequence.java | 4 import java.util.Enumeration; 45 Enumeration e = getObjects();
|
BERSet.java | 4 import java.util.Enumeration; 55 Enumeration e = getObjects();
|
DERConstructedSequence.java | 5 import java.util.Enumeration; 38 Enumeration e = this.getObjects();
|
/dalvik/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}.
|
PropertyResourceBundle.java | 52 private Enumeration<String> getLocalKeys() { 53 return (Enumeration<String>) resources.propertyNames(); 60 * @return an Enumeration of the resource names 63 public Enumeration<String> getKeys() { 67 return new Enumeration<String>() { 68 Enumeration<String> local = getLocalKeys(); 70 Enumeration<String> pEnum = parent.getKeys();
|
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();
|
/dalvik/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.
|
/external/proguard/src/proguard/classfile/util/ |
InternalTypeEnumeration.java | 27 * An <code>InternalTypeEnumeration</code> provides an enumeration of all 70 * Returns whether the enumeration can provide more types from the method 170 * A main method for testing the type enumeration. 181 InternalTypeEnumeration enumeration = new InternalTypeEnumeration(descriptor); local 183 if (enumeration.firstIndex >= 0) 185 System.out.println(" Formal type parameters ["+enumeration.formalTypeParameters()+"]"); 188 while (enumeration.hasMoreTypes()) 190 System.out.println(" Type ["+enumeration.nextType()+"]"); 193 if (enumeration.lastIndex < descriptor.length()) 195 System.out.println(" Return type ["+enumeration.returnType()+"]") [all...] |
/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(); ) {
|
/dalvik/libcore/junit/src/main/java/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/icu4c/common/ |
uenumimp.h | 28 * is returned. If close is NULL, the enumeration 40 * @param en enumeration to be closed 49 * in this enumeration 51 * @param en enumeration to be counted 53 * @return number of elements in enumeration 64 * @param en enumeration 81 * @param en enumeration 95 * This function should reset the enumeration 98 * @param en enumeration
|
/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(); ) {
|
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/pkcs/ |
PBES2Parameters.java | 3 import java.util.Enumeration; 21 Enumeration e = obj.getObjects();
|
/dalvik/libcore/xml/src/main/java/javax/xml/validation/ |
SecuritySupport.java | 31 import java.util.Enumeration; 114 static Enumeration getResources(final ClassLoader cl, 118 return (Enumeration) 121 Enumeration enumeration; 123 enumeration = ClassLoader.getSystemResources(name); 126 enumeration = cl.getResources(name); 128 return enumeration;
|