/external/proguard/src/proguard/classfile/util/ |
D | InternalTypeEnumeration.java | 181 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()
|
D | DescriptorClassEnumeration.java | 222 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()
|
D | ClassReferenceInitializer.java | 443 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/ |
D | FetchValidator.java | 108 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()
|
D | CompileErrorCheck.java | 192 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/ |
D | HashtableTest.java | 460 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/ |
D | JarFileTest.java | 119 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/bluetooth/glib/gobject/ |
D | gmarshal.list | 13 # ENUM for enumeration types (gint) 14 # FLAGS for flag enumeration types (guint)
|
/external/junit/src/junit/framework/ |
D | TestResult.java | 91 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/ |
D | ConcurrentHashMap.java | 138 return Collections.enumeration(values()); in elements() 142 return Collections.enumeration(keySet()); in keys()
|
/external/clang/test/SemaObjC/ |
D | uninit-variables.m | 10 // Test ObjC fast enumeration.
|
/external/llvm/docs/CommandGuide/ |
D | tblgen.pod | 54 Print the enumeration list for this class. 62 Print enumeration values for a class
|
/external/chromium/chrome/common/ |
D | json_schema_validator.cc | 207 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/ |
D | Iterators.java | 1077 final Enumeration<T> enumeration) { 1078 checkNotNull(enumeration); 1082 return enumeration.hasMoreElements(); 1086 return enumeration.nextElement();
|
/external/guava/guava/src/com/google/common/collect/ |
D | Iterators.java | 1113 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/ |
D | ZipFileTest.java | 160 Enumeration<? extends ZipEntry> enumeration = zfile.entries(); in test_entries() local 165 enumeration.hasMoreElements(); in test_entries()
|
/external/proguard/examples/ |
D | applets.pro | 32 # Preserve the special static methods that are required in all enumeration
|
D | servlets.pro | 33 # Preserve the special static methods that are required in all enumeration
|
D | applications.pro | 38 # Preserve the special static methods that are required in all enumeration
|
D | library.pro | 50 # Preserve the special static methods that are required in all enumeration
|
/external/proguard/examples/annotations/ |
D | examples.pro | 40 # Preserve the special static methods that are required in all enumeration
|
/external/clang/include/clang/Basic/ |
D | LangOptions.def | 14 // incompatible way), ENUM_LANGOPT (for options that have enumeration, 16 // options that have enumeration type), and VALUE_LANGOPT is a language option
|
D | DiagnosticSemaKinds.td | 40 "integral constant expression must have integral or unscoped enumeration " 47 "conversion to %select{integral|enumeration}0 type %1 declared here">; 50 "enumeration type">; 379 def warn_enum_value_overflow : Warning<"overflow in enumeration value">; 718 "enumeration type %0 cannot be a friend">; 720 "befriending enumeration type %0 is incompatible with C++98">, 920 "enumeration type in nested name specifier is incompatible with C++98">, 1293 "enumeration redeclared with different underlying type %0 (was %1)">; 1295 "enumeration previously declared with %select{non|}0fixed underlying type">; 1297 "enumeration previously declared as %select{un|}0scoped">; [all …]
|
/external/clang/test/SemaObjCXX/ |
D | instantiate-stmt.mm | 26 // fast enumeration
|
/external/v8/src/ |
D | liveedit-debugger.js | 953 var enumeration = FunctionPatchabilityStatus; 954 for (name in enumeration) { 955 if (enumeration[name] == code) {
|