Home
last modified time | relevance | path

Searched refs:enumeration (Results 1 – 25 of 78) sorted by relevance

1234

/external/proguard/src/proguard/classfile/util/
DInternalTypeEnumeration.java181 InternalTypeEnumeration enumeration = new InternalTypeEnumeration(descriptor); in main() local
183 if (enumeration.firstIndex >= 0) in main()
185 … System.out.println(" Formal type parameters ["+enumeration.formalTypeParameters()+"]"); in main()
188 while (enumeration.hasMoreTypes()) in main()
190 System.out.println(" Type ["+enumeration.nextType()+"]"); in main()
193 if (enumeration.lastIndex < descriptor.length()) in main()
195 System.out.println(" Return type ["+enumeration.returnType()+"]"); in main()
DDescriptorClassEnumeration.java222 DescriptorClassEnumeration enumeration = new DescriptorClassEnumeration(descriptor); in main() local
223 System.out.println(" Fluff: ["+enumeration.nextFluff()+"]"); in main()
224 while (enumeration.hasMoreClassNames()) in main()
226 System.out.println(" Name: ["+enumeration.nextClassName()+"]"); in main()
227 System.out.println(" Fluff: ["+enumeration.nextFluff()+"]"); in main()
DClassReferenceInitializer.java443 DescriptorClassEnumeration enumeration = in findReferencedClass() local
446 enumeration.nextFluff(); in findReferencedClass()
448 if (enumeration.hasMoreClassNames()) in findReferencedClass()
450 return findClass(referencingClassName, enumeration.nextClassName()); in findReferencedClass()
464 DescriptorClassEnumeration enumeration = in findReferencedClasses() local
467 int classCount = enumeration.classCount(); in findReferencedClasses()
476 String fluff = enumeration.nextFluff(); in findReferencedClasses()
477 String name = enumeration.nextClassName(); in findReferencedClasses()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
DFetchValidator.java108 Enumeration enumeration = plugins.elements(); in allPresent() local
110 while (enumeration.hasMoreElements()) { in allPresent()
111 String plugin = (String) enumeration.nextElement(); in allPresent()
120 enumeration = features.elements(); in allPresent()
122 while (enumeration.hasMoreElements()) { in allPresent()
123 String feature = (String) enumeration.nextElement(); in allPresent()
DCompileErrorCheck.java192 Enumeration enumeration = logsWithErrors.elements(); in sendNotice() local
202 while (enumeration.hasMoreElements()) { in sendNotice()
203 logFiles[i++]=((File) enumeration.nextElement()).getAbsolutePath(); in sendNotice()
208 while (enumeration.hasMoreElements()) { in sendNotice()
209 String path=((File) enumeration.nextElement()).getAbsolutePath(); in sendNotice()
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
DHashtableTest.java460 Enumeration enumeration = (Enumeration) s.iterator(); in test_keySet() local
461 assertTrue(enumeration.hasMoreElements()); in test_keySet()
773 Enumeration enumeration = hashTable.keys(); in test_keys_elements_keySet_Exceptions() local
774 iterator = (Iterator) enumeration; in test_keys_elements_keySet_Exceptions()
775 assertTrue(enumeration.hasMoreElements()); in test_keys_elements_keySet_Exceptions()
779 enumeration.nextElement(); in test_keys_elements_keySet_Exceptions()
784 assertFalse(enumeration.hasMoreElements()); in test_keys_elements_keySet_Exceptions()
787 enumeration.nextElement(); in test_keys_elements_keySet_Exceptions()
800 enumeration = hashTable.elements(); in test_keys_elements_keySet_Exceptions()
801 iterator = (Iterator) enumeration; in test_keys_elements_keySet_Exceptions()
[all …]
/external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
DJarFileTest.java119 Enumeration<JarEntry> enumeration = jarFile.entries(); in testEntriesIterator() local
122 enumeration.hasMoreElements(); in testEntriesIterator()
128 enumeration = jarFile.entries(); in testEntriesIterator()
131 enumeration.nextElement(); in testEntriesIterator()
150 Enumeration<JarEntry> enumeration = jarFile.entries(); in test_getEntryLjava_lang_String() local
151 assertTrue(enumeration.hasMoreElements()); in test_getEntryLjava_lang_String()
152 while (enumeration.hasMoreElements()) { in test_getEntryLjava_lang_String()
153 JarEntry je = enumeration.nextElement(); in test_getEntryLjava_lang_String()
157 enumeration = jarFile.entries(); in test_getEntryLjava_lang_String()
158 assertTrue(enumeration.hasMoreElements()); in test_getEntryLjava_lang_String()
[all …]
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
DPropertyBoxParserImpl.java44 …Enumeration<URL> enumeration = Thread.currentThread().getContextClassLoader().getResources("isopar… in PropertyBoxParserImpl() local
46 while (enumeration.hasMoreElements()) { in PropertyBoxParserImpl()
47 URL url = enumeration.nextElement(); in PropertyBoxParserImpl()
/external/junit/src/junit/framework/
DTestResult.java91 return Collections.enumeration(fErrors); in errors()
105 return Collections.enumeration(fFailures); in failures()
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
DConcurrentHashMap.java138 return Collections.enumeration(values()); in elements()
142 return Collections.enumeration(keySet()); in keys()
/external/llvm/docs/CommandGuide/
Dtblgen.rst68 Print the enumeration list for this class.
80 Print enumeration values for a class
/external/clang/bindings/python/clang/
Dcindex.py109 def __init__(self, enumeration, message): argument
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))
2266 def __init__(self, enumeration, message): argument
2267 assert isinstance(enumeration, int)
2269 if enumeration > 1:
2272 "value supported." % enumeration)
[all …]
/external/clang/test/SemaObjC/
Duninit-variables.m10 // Test ObjC fast enumeration.
/external/chromium/chrome/common/
Djson_schema_validator.cc207 ListValue* enumeration = NULL; in Validate() local
208 if (schema->GetList("enum", &enumeration)) { in Validate()
209 ValidateEnum(instance, enumeration, path); in Validate()
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DIterators.java1077 final Enumeration<T> enumeration) {
1078 checkNotNull(enumeration);
1082 return enumeration.hasMoreElements();
1086 return enumeration.nextElement();
/external/guava/guava/src/com/google/common/collect/
DIterators.java1113 final Enumeration<T> enumeration) {
1114 checkNotNull(enumeration);
1118 return enumeration.hasMoreElements();
1122 return enumeration.nextElement();
/external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
DZipFileTest.java160 Enumeration<? extends ZipEntry> enumeration = zfile.entries(); in test_entries() local
165 enumeration.hasMoreElements(); in test_entries()
/external/proguard/examples/
Dapplets.pro32 # Preserve the special static methods that are required in all enumeration
Dapplications.pro38 # Preserve the special static methods that are required in all enumeration
Dservlets.pro33 # Preserve the special static methods that are required in all enumeration
Dlibrary.pro50 # Preserve the special static methods that are required in all enumeration
/external/proguard/examples/annotations/
Dexamples.pro40 # Preserve the special static methods that are required in all enumeration
/external/clang/include/clang/Basic/
DLangOptions.def14 // incompatible way), ENUM_LANGOPT (for options that have enumeration,
16 // options that have enumeration type), and VALUE_LANGOPT is a language option
/external/clang/test/SemaObjCXX/
Dinstantiate-stmt.mm26 // fast enumeration
/external/v8/src/
Dliveedit-debugger.js953 var enumeration = FunctionPatchabilityStatus;
954 for (name in enumeration) {
955 if (enumeration[name] == code) {

1234