HomeSort by relevance Sort by last modified time
    Searched refs:enumeration (Results 26 - 50 of 112) sorted by null

12 3 4 5

  /libcore/crypto/src/main/java/org/conscrypt/
TrustedCertificateKeyStoreSpi.java 26 import java.util.Enumeration;
77 @Override public Enumeration<String> engineAliases() {
78 return Collections.enumeration(store.aliases());
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
PropertyBoxParserImpl.java 27 import java.util.Enumeration;
44 Enumeration<URL> enumeration = Thread.currentThread().getContextClassLoader().getResources("isoparser-custom.properties"); local
46 while (enumeration.hasMoreElements()) {
47 URL url = enumeration.nextElement();
  /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...]
  /libcore/luni/src/main/java/java/net/
NetworkInterface.java 26 import java.util.Enumeration;
83 * Returns an enumeration of the addresses bound to this network interface.
85 public Enumeration<InetAddress> getInetAddresses() {
86 return Collections.enumeration(addresses);
297 public static Enumeration<NetworkInterface> getNetworkInterfaces() throws SocketException {
298 return Collections.enumeration(getNetworkInterfacesList());
407 * Returns an enumeration of all the sub-interfaces of this network interface.
412 * @return an Enumeration of all the sub-interfaces of this network interface
415 public Enumeration<NetworkInterface> getSubInterfaces() {
416 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 
org.eclipse.equinox.frameworkadmin.equinox_1.0.200.v20100505.jar 
  /external/smack/src/org/apache/harmony/javax/security/sasl/
Sasl.java 28 import java.util.Enumeration;
102 Enumeration<Object> keys = pp[i].keys();
122 public static Enumeration<SaslClientFactory> getSaslClientFactories() {
124 return Collections.enumeration(res);
129 public static Enumeration<SaslServerFactory> getSaslServerFactories() {
131 return Collections.enumeration(res);
  /libcore/luni/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
ZipFileTest.java 31 import java.util.Enumeration;
195 // Test for method java.util.Enumeration java.util.zip.ZipFile.entries()
196 Enumeration<? extends ZipEntry> enumer = zfile.entries();
204 Enumeration<? extends ZipEntry> enumeration = zfile.entries(); local
207 enumeration.nextElement();
213 enumeration.hasMoreElements();
  /libcore/luni/src/main/java/java/sql/
DriverManager.java 25 import java.util.Enumeration;
248 * Returns an {@code Enumeration} that contains all of the loaded JDBC
251 * @return An {@code Enumeration} containing all the currently loaded JDBC
254 public static Enumeration<Driver> getDrivers() {
267 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();
  /external/chromium_org/v8/test/mjsunit/regress/
regress-convert-enum.js 42 // Install an enumeration cache in the descriptor array [a,c] at map B.
  /external/clang/bindings/python/clang/
cindex.py 109 def __init__(self, enumeration, message):
110 assert isinstance(enumeration, int)
112 if enumeration < 1 or enumeration > 3:
115 "value supported." % enumeration)
117 self.save_error = enumeration
118 Exception.__init__(self, 'Error %d: %s' % (enumeration, message))
463 """Register a new TokenKind enumeration.
500 """Get the enumeration name of this cursor kind."""
516 """Return all CursorKind enumeration instances.""
    [all...]
  /external/chromium/chrome/common/
json_schema_validator.cc 207 ListValue* enumeration = NULL; local
208 if (schema->GetList("enum", &enumeration)) {
209 ValidateEnum(instance, enumeration, path);
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/unstable/
idl_definitions_builder.py 73 enumeration = enum_node_to_idl_enum(child)
74 enumerations[enumeration.name] = enumeration
  /system/media/camera/docs/
camera_metadata_tags.mako 72 * before the section _END tag to preserve existing enumeration values. In
92 * Enumeration definitions for the various entries that need them
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/27/1/.cp/lib/
antsupportlib.jar 
  /external/emma/core/java12/com/vladium/util/exception/
ExceptionCommon.java 15 import java.util.Enumeration;
466 /*private*/ static final Enumeration EMPTY_ENUMERATION = Collections.enumeration (Collections.EMPTY_SET);
474 public Enumeration getKeys ()
  /external/guava/guava/src/com/google/common/collect/
Iterators.java 37 import java.util.Enumeration;
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Iterators.java 35 import java.util.Enumeration;
    [all...]
  /external/llvm/unittests/Support/
YAMLIOTest.cpp 302 static void enumeration(IO &io, Colors &value) { function in struct:llvm::yaml::ScalarEnumerationTraits
760 static void enumeration(IO &io, AFlags &value) { function in struct:llvm::yaml::ScalarEnumerationTraits
768 static void enumeration(IO &io, BFlags &value) { function in struct:llvm::yaml::ScalarEnumerationTraits
776 static void enumeration(IO &io, Kind &value) { function in struct:llvm::yaml::ScalarEnumerationTraits
  /libcore/libdvm/src/main/java/java/lang/
ClassLoader.java 44 import java.util.Enumeration;
143 * Returns an enumeration of URLs for the resource with the specified name.
147 * @return an enumeration of {@code URL} objects containing the requested
154 public static Enumeration<URL> getSystemResources(String resName) throws IOException {
397 * Returns an enumeration of URLs for the resource with the specified name.
400 * URLs. The returned enumeration contains the {@code URL} objects of both
403 * @return an enumeration of {@code URL} objects for the requested resource.
410 public Enumeration<URL> getResources(String resName) throws IOException {
412 Enumeration first = parent.getResources(resName);
413 Enumeration second = findResources(resName)
    [all...]
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
TestKeyStoreSpi.java 21 import java.util.Enumeration;
63 public Enumeration<String> engineAliases() {
64 return Collections.enumeration(aliases.keySet());

Completed in 874 milliseconds

12 3 4 5