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

1 2 3

  /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...]
DescriptorClassEnumeration.java 28 * A <code>DescriptorClassEnumeration</code> provides an enumeration of all
55 * is the number of class names that the enumeration will return.
77 * Returns whether the enumeration can provide more class names from the
211 * A main method for testing the class name enumeration.
222 DescriptorClassEnumeration enumeration = new DescriptorClassEnumeration(descriptor); local
223 System.out.println(" Fluff: ["+enumeration.nextFluff()+"]");
224 while (enumeration.hasMoreClassNames())
226 System.out.println(" Name: ["+enumeration.nextClassName()+"]");
227 System.out.println(" Fluff: ["+enumeration.nextFluff()+"]");
ClassReferenceInitializer.java 443 DescriptorClassEnumeration enumeration = local
446 enumeration.nextFluff();
448 if (enumeration.hasMoreClassNames())
450 return findClass(referencingClassName, enumeration.nextClassName());
464 DescriptorClassEnumeration enumeration = local
467 int classCount = enumeration.classCount();
476 String fluff = enumeration.nextFluff();
477 String name = enumeration.nextClassName();
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
FetchValidator.java 17 import java.util.Enumeration;
108 Enumeration enumeration = plugins.elements(); local
110 while (enumeration.hasMoreElements()) {
111 String plugin = (String) enumeration.nextElement();
120 enumeration = features.elements();
122 while (enumeration.hasMoreElements()) {
123 String feature = (String) enumeration.nextElement();
CompileErrorCheck.java 24 import java.util.Enumeration;
192 Enumeration enumeration = logsWithErrors.elements(); local
202 while (enumeration.hasMoreElements()) {
203 logFiles[i++]=((File) enumeration.nextElement()).getAbsolutePath();
208 while (enumeration.hasMoreElements()) {
209 String path=((File) enumeration.nextElement()).getAbsolutePath();
  /frameworks/base/test-runner/src/android/test/
TestCaseUtil.java 29 import java.util.Enumeration;
79 Enumeration enumeration = testSuite.tests(); local
80 while (enumeration.hasMoreElements()) {
81 Test childTest = (Test) enumeration.nextElement();
144 Enumeration enumeration = testSuite.tests(); local
145 while (enumeration.hasMoreElements()) {
146 Test test = (Test) enumeration.nextElement();
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
JarFileTest.java 26 import java.util.Enumeration;
106 Enumeration<JarEntry> e = jarFile.entries();
119 Enumeration<JarEntry> enumeration = jarFile.entries(); local
122 enumeration.hasMoreElements();
128 enumeration = jarFile.entries();
131 enumeration.nextElement();
150 Enumeration<JarEntry> enumeration = jarFile.entries(); local
151 assertTrue(enumeration.hasMoreElements())
183 Enumeration<JarEntry> enumeration = jarFile.entries(); local
    [all...]
  /libcore/luni/src/main/java/java/lang/
ThreadGroup.java 320 * Copies into <param>enumeration</param> starting at
328 * @param enumeration array into which the elements will be copied
330 * @param enumerationIndex Indicates in which position of the enumeration
336 private int enumerateGeneric(Object[] enumeration, boolean recurse, int enumerationIndex,
344 if (enumerationIndex >= enumeration.length) {
347 enumeration[enumerationIndex++] = thread;
354 if (enumerationIndex >= enumeration.length) {
357 enumeration[enumerationIndex++] = groups.get(i);
365 if (enumerationIndex >= enumeration.length) {
368 enumerationIndex = group.enumerateGeneric(enumeration, recurse
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
HashtableTest.java 24 import java.util.Enumeration;
123 Enumeration el = h.elements();
124 Enumeration keys = h.keys();
139 Enumeration org = htfull.keys();
140 Enumeration cpy = h.keys();
179 Enumeration e = elmVector.elements();
191 // Test for method java.util.Enumeration java.util.Hashtable.elements()
192 Enumeration elms = ht10.elements();
196 assertTrue("Missing key from enumeration", elmVector.contains(s));
202 // cast Enumeration to Iterato
460 Enumeration enumeration = (Enumeration) s.iterator(); local
773 Enumeration enumeration = hashTable.keys(); local
    [all...]
  /libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
mySSLSession.java 6 import java.util.Enumeration;
159 Enumeration enumeration = table.keys(); local
160 while (enumeration.hasMoreElements()) {
161 vector.addElement(enumeration.nextElement());
  /external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
ConcurrentHashMap.java 21 import java.util.Enumeration;
137 public Enumeration<V> elements() {
138 return Collections.enumeration(values());
141 public Enumeration<K> keys() {
142 return Collections.enumeration(keySet());
  /external/junit/src/junit/framework/
TestResult.java 5 import java.util.Enumeration;
88 * Returns an Enumeration for the errors
90 public synchronized Enumeration<TestFailure> errors() {
91 return Collections.enumeration(fErrors);
102 * Returns an Enumeration for the failures
104 public synchronized Enumeration<TestFailure> failures() {
105 return Collections.enumeration(fFailures);
  /libcore/luni/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
JarFileTest.java 33 import java.util.Enumeration;
241 Enumeration<JarEntry> e = jarFile.entries();
254 Enumeration<JarEntry> enumeration = jarFile.entries(); local
257 enumeration.hasMoreElements();
263 enumeration = jarFile.entries();
266 enumeration.nextElement();
289 Enumeration<JarEntry> enumeration = jarFile.entries(); local
290 assertTrue(enumeration.hasMoreElements())
326 Enumeration<JarEntry> enumeration = jarFile.entries(); local
    [all...]
  /external/v8/test/mjsunit/
enumeration-order.js 44 // Validate the enumeration order for object up to 100 named properties.
57 // Validate the enumeration order for object literals up to 100 named
66 // This enumeration order is not required by the specification, so
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
TrustedCertificateKeyStoreSpi.java 26 import java.util.Enumeration;
77 @Override public Enumeration<String> engineAliases() {
78 return Collections.enumeration(store.aliases());
  /libcore/luni/src/main/java/org/xml/sax/helpers/
NamespaceSupport.java 12 import java.util.Enumeration;
115 * An empty enumeration.
117 private static final Enumeration EMPTY_ENUMERATION = Collections.enumeration(Collections.emptyList());
381 * Return an enumeration of all prefixes whose declarations are
387 * returned in this enumeration; check for the default prefix
390 * @return An enumeration of prefixes (never empty).
394 public Enumeration getPrefixes ()
426 * Return an enumeration of all prefixes for a given URI whose
438 * in this enumeration; to check for the presence of a defaul
    [all...]
  /sdk/assetstudio/src/com/android/assetstudiolib/
GraphicGenerator.java 31 import java.util.Enumeration;
256 Enumeration<? extends ZipEntry> enumeration = zipFile.entries(); local
257 while (enumeration.hasMoreElements()) {
258 ZipEntry zipEntry = enumeration.nextElement();
  /libcore/luni/src/main/java/java/net/
NetworkInterface.java 28 import java.util.Enumeration;
85 * Returns an enumeration of the addresses bound to this network interface.
87 public Enumeration<InetAddress> getInetAddresses() {
88 return Collections.enumeration(addresses);
261 public static Enumeration<NetworkInterface> getNetworkInterfaces() throws SocketException {
262 return Collections.enumeration(getNetworkInterfacesList());
369 * Returns an enumeration of all the sub-interfaces of this network interface.
374 * @return an Enumeration of all the sub-interfaces of this network interface
377 public Enumeration<NetworkInterface> getSubInterfaces() {
378 return Collections.enumeration(children)
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
armVCM4P2_SetPredDir_s.s 36 ; * Standard OMXResult result. See enumeration for possible result codes.
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
armVCM4P2_SetPredDir_s.s 36 ; * Standard OMXResult result. See enumeration for possible result codes.
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-trax.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.frameworkadmin_2.0.0.v20100503.jar 
  /libcore/luni/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
ZipFileTest.java 31 import java.util.Enumeration;
197 // Test for method java.util.Enumeration java.util.zip.ZipFile.entries()
198 Enumeration<? extends ZipEntry> enumer = zfile.entries();
206 Enumeration<? extends ZipEntry> enumeration = zfile.entries(); local
209 enumeration.nextElement();
215 enumeration.hasMoreElements();
  /libcore/luni/src/main/java/java/sql/
DriverManager.java 25 import java.util.Enumeration;
244 * Returns an {@code Enumeration} that contains all of the loaded JDBC
247 * @return An {@code Enumeration} containing all the currently loaded JDBC
250 public static Enumeration<Driver> getDrivers() {
263 return Collections.enumeration(result);
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
ZipFileTest.java 25 import java.util.Enumeration;
151 // Test for method java.util.Enumeration java.util.zip.ZipFile.entries()
152 Enumeration<? extends ZipEntry> enumer = zfile.entries();
160 Enumeration<? extends ZipEntry> enumeration = zfile.entries(); local
165 enumeration.hasMoreElements();

Completed in 433 milliseconds

1 2 3