Searched refs:types (Results 51 - 75 of 1070) sorted by relevance

1234567891011>>

/openjdk9/langtools/test/tools/javac/lambda/methodReference/
H A DBridgeMethod.java76 Set<String> types = setOfStringObject();
83 assertTrue(types.remove(parameterTypes[0].getName()));
85 assertTrue(types.isEmpty() || (types.size() == 1 && types.contains("java.lang.String")));
91 types = setOfStringObject();
98 assertTrue(types.remove(parameterTypes[0].getName()));
100 assertTrue(types.isEmpty());
107 types = setOfStringObject();
113 assertTrue(types
[all...]
/openjdk9/langtools/make/tools/propertiesparser/parser/
H A DMessageInfo.java43 List<MessageType> types = new ArrayList<>(); field in class:MessageInfo
50 types = new ArrayList<>();
52 types.add(parseType(seg));
58 return types;
62 return types.isEmpty();
67 return types.toString();
82 MessageType[] types = new MessageType[alternatives.length];
84 types[i] = parseAlternative(alternatives[i].trim());
86 return types.length > 1 ?
87 new OrType(types)
[all...]
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/types/basic/
H A DBasicAddressFieldWrapper.java25 package sun.jvm.hotspot.types.basic;
28 import sun.jvm.hotspot.types.*;
34 types in the Type system. */
H A DBasicPointerType.java25 package sun.jvm.hotspot.types.basic;
29 import sun.jvm.hotspot.types.*;
32 interface and describes all C pointer types. */
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/
H A DTypeCheckTest.java58 protected JavaTypeProfile profile(Class<?>... types) { argument
59 return profile(TriState.FALSE, types);
62 protected JavaTypeProfile profile(TriState nullSeen, Class<?>... types) { argument
63 if (types.length == 0) {
66 ProfiledType[] ptypes = new ProfiledType[types.length];
67 for (int i = 0; i < types.length; i++) {
68 ptypes[i] = new ProfiledType(getMetaAccess().lookupJavaType(types[i]), 1.0D / types.length);
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/
H A DDOMEnhancedForDTM.java37 public short[] getMapping(String[] names, String[] uris, int[] types); argument
38 public int[] getReverseMapping(String[] names, String[] uris, int[] types); argument
/openjdk9/jdk/src/java.management/share/classes/javax/management/
H A DMBeanNotificationInfo.java51 * strings containing the notification types that the MBean may
55 * be used to send notifications of several types. All of these types
72 * @serial The different types of the notification.
74 private String[] types; field in class:MBeanNotificationInfo
83 * containing the notification types that the MBean may emit.
99 * containing the notification types that the MBean may emit.
121 this.types = (notifTypes != null && notifTypes.length > 0) ?
148 * notification types that the MBean may emit.
154 if (types
[all...]
/openjdk9/jdk/test/java/util/Locale/
H A DBug8008577.java45 List<LocaleProviderAdapter.Type> types = LocaleProviderAdapter.getAdapterPreference();
47 if (!types.equals(expectedList)) {
/openjdk9/langtools/test/tools/javac/processing/model/util/
H A DNoSupers.java47 PrimitiveType intType = types.getPrimitiveType(TypeKind.INT);
48 if (! types.directSupertypes(intType).isEmpty())
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/compiler/
H A DOopMapStream.java47 public OopMapStream(ImmutableOopMap oopMap, OopMapValue.OopTypes[] types) { argument
49 mask = computeMask(types);
75 private int computeMask(OopMapValue.OopTypes[] types) { argument
77 if (types != null) {
78 for (int i = 0; i < types.length; i++) {
79 mask |= types[i].getValue();
/openjdk9/jdk/src/java.desktop/share/classes/com/sun/beans/finder/
H A DPrimitiveWrapperMap.java41 * Replaces all primitive types in specified array with wrappers.
43 * @param types array of classes where all primitive types
46 static void replacePrimitivesWithWrappers(Class<?>[] types) { argument
47 for (int i = 0; i < types.length; i++) {
48 if (types[i] != null) {
49 if (types[i].isPrimitive()) {
50 types[i] = getType(types[i].getName());
/openjdk9/jdk/src/java.desktop/share/classes/javax/sound/sampled/spi/
H A DAudioFileWriter.java40 * implementations can write one or more types of audio file from an audio
49 * Obtains the file types for which file writing support is provided by this
52 * @return array of file types. If no file types are supported, an array of
69 Type types[] = getAudioFileTypes();
71 for(int i=0; i<types.length; i++) {
72 if( fileType.equals( types[i] ) ) {
80 * Obtains the file types that this audio file writer can write from the
85 * @return array of file types. If no file types ar
[all...]
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DBaseDVFactory.java44 // there are 27 types. 53 is the closest prime number to 27*2=54.
53 * ur-types and if all simple types should be derived from a
66 * get all built-in simple types, which are stored in a hashtable keyed by
69 * @return a hashtable which contains all built-in simple types
110 * simple types.
115 * @param memberTypes member types of the union type
129 // create all built-in types
130 static void createBuiltInTypes(SymbolHash types) { argument
163 types
[all...]
H A DFullDVFactory.java42 // there are 45 types. 89 is the closest prime number to 45*2=90.
51 * ur-types and if all simple types should be derived from a
64 * get all built-in simple types, which are stored in a hashtable keyed by
67 * @return a hashtable which contains all built-in simple types
73 // create all built-in types
74 static void createBuiltInTypes(SymbolHash types) { argument
75 // create base types first
76 BaseDVFactory.createBuiltInTypes(types);
102 XSSimpleTypeDecl stringDV = (XSSimpleTypeDecl)types
[all...]
/openjdk9/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/processor/modeler/annotation/
H A DMakeSafeTypeVisitor.java56 public TypeMirror visitDeclared(DeclaredType t, Types types) { argument
63 safeArgs[i++] = visit(arg, types);
65 return types.getDeclaredType((TypeElement) t.asElement(), safeArgs);
67 return types.erasure(t);
71 public TypeMirror visitNoType(NoType type, Types types) { argument
75 protected TypeMirror defaultAction(TypeMirror e, Types types) { argument
76 return types.erasure(e);
/openjdk9/langtools/test/tools/javac/types/
H A DScopeListenerTest.java54 Types types = Types.instance(context);
57 types.membersClosure(syms.stringType, true);
58 types.membersClosure(syms.stringType, false);
63 types.membersClosure(syms.stringType, true);
64 types.membersClosure(syms.stringType, false);
74 for (Symbol s : types.membersClosure(syms.stringType, true).getSymbols())
76 for (Symbol s : types.membersClosure(syms.stringType, false).getSymbolsByName(names.fromString("substring")))
/openjdk9/hotspot/test/compiler/types/correctness/
H A DCorrectnessTest.java39 * -XX:CompileCommand=exclude,compiler.types.correctness.execution.*::methodNotToCompile
40 * -XX:CompileCommand=dontinline,compiler.types.correctness.scenarios.Scenario::collectReturnType
41 * compiler.types.correctness.CorrectnessTest RETURN
45 * -XX:CompileCommand=exclude,compiler.types.correctness.execution.*::methodNotToCompile
46 * -XX:CompileCommand=dontinline,compiler.types.correctness.scenarios.Scenario::collectReturnType
47 * compiler.types.correctness.CorrectnessTest PARAMETERS
51 * -XX:CompileCommand=exclude,compiler.types.correctness.execution.*::methodNotToCompile
52 * -XX:CompileCommand=dontinline,compiler.types.correctness.scenarios.Scenario::collectReturnType
53 * compiler.types.correctness.CorrectnessTest ARGUMENTS
56 package compiler.types
[all...]
/openjdk9/corba/src/java.corba/share/classes/com/sun/tools/corba/se/idl/
H A DForwardEntry.java114 // Replace the entry's whose types are forward declarations:
115 for ( Enumeration types = forwardEntry.types.elements ();
116 types.hasMoreElements (); )
117 ((SymtabEntry)types.nextElement ()).type (interfaceEntry);
140 Vector types = new Vector (); // Vector of the entry's whose type is a forward declaration. field in class:ForwardEntry
/openjdk9/hotspot/test/testlibrary/jittester/src/jdk/test/lib/jittester/factories/
H A DVariableDeclarationFactory.java34 import jdk.test.lib.jittester.types.TypeKlass;
53 LinkedList<Type> types = new LinkedList<>(TypeList.getAll());
54 PseudoRandom.shuffle(types);
55 if (types.isEmpty()) {
58 resultType = types.getFirst();
/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/reader/relaxng/
H A DDatatypeLib.java48 private final Map<String,TypeUse> types; field in class:DatatypeLib
50 public DatatypeLib(String nsUri, Map<String,TypeUse> types) { argument
52 this.types = Collections.unmodifiableMap(types);
59 return types.get(name);
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/utilities/
H A DIntArray.java8 import sun.jvm.hotspot.types.Type;
9 import sun.jvm.hotspot.types.TypeDataBase;
10 import sun.jvm.hotspot.types.WrongTypeException;
H A DU1Array.java32 import sun.jvm.hotspot.types.Type;
33 import sun.jvm.hotspot.types.TypeDataBase;
34 import sun.jvm.hotspot.types.WrongTypeException;
H A DU2Array.java32 import sun.jvm.hotspot.types.Type;
33 import sun.jvm.hotspot.types.TypeDataBase;
34 import sun.jvm.hotspot.types.WrongTypeException;
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/
H A DBasicObjectLock.java30 import sun.jvm.hotspot.types.*;
48 private static sun.jvm.hotspot.types.Field lockField;
49 private static sun.jvm.hotspot.types.OopField objField;
/openjdk9/hotspot/test/compiler/types/correctness/execution/
H A DTypeProfile.java24 package compiler.types.correctness.execution;
26 import compiler.types.correctness.hierarchies.TypeHierarchy;
27 import compiler.types.correctness.scenarios.Scenario;
31 * in a loop without any manipulation with types or instances.

Completed in 219 milliseconds

1234567891011>>