Searched refs:types (Results 1 - 25 of 1068) sorted by relevance

1234567891011>>

/openjdk10/langtools/test/tools/jdeprscan/cases/jdk/deprcases/types/
H A DDeprecatedInterface.java24 package jdk.deprcases.types;
H A DDeprecatedClass.java24 package jdk.deprcases.types;
H A DDeprecatedException.java24 package jdk.deprcases.types;
H A DDeprecatedEnum.java24 package jdk.deprcases.types;
/openjdk10/hotspot/test/compiler/types/correctness/scenarios/
H A DProfilingType.java24 package compiler.types.correctness.scenarios;
27 /** type profiling of return values of reference types from an invoke */
/openjdk10/nashorn/test/script/basic/
H A DJDK-8071928.js32 var types = {};
46 types.A = defineType({ name: 'A' });
47 types.B = defineType({ name: 'B' });
48 types.C = defineType({ name: 'C' });
49 types.D = defineType({ name: 'D' });
51 var keys = Object.keys(types);
53 var t = types[keys[i]];
/openjdk10/langtools/src/java.compiler/share/classes/javax/lang/model/type/
H A DMirroredTypesException.java51 transient List<? extends TypeMirror> types; // cannot be serialized field in class:MirroredTypesException
60 types = Collections.unmodifiableList(tmp);
64 * Constructs a new MirroredTypesException for the specified types.
66 * @param types the types being accessed
68 public MirroredTypesException(List<? extends TypeMirror> types) { argument
70 (types = // defensive copy
71 new ArrayList<>(types)).toString() );
72 this.types = Collections.unmodifiableList(types);
[all...]
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/types/basic/
H A DVtblAccess.java25 package sun.jvm.hotspot.types.basic;
28 import sun.jvm.hotspot.types.*;
/openjdk10/jdk/src/java.base/unix/native/libjava/
H A Dgdefs_md.h34 #include <sys/types.h>
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/types/
H A DPointerType.java25 package sun.jvm.hotspot.types;
29 /** This interface describes C pointer types, specifically to be able
30 to model pointer fields within types more accurately. */
H A DCIntegerType.java25 package sun.jvm.hotspot.types;
30 C integer types. The observation is that, according to the C
31 specification, there is no guarantee that the integer types of
35 integer types, signed or unsigned. </P>
42 sign- or zero- extension for signed and unsigned types,
H A DWrongTypeException.java25 package sun.jvm.hotspot.types;
/openjdk10/jaxp/test/javax/xml/jaxp/unittest/stream/XMLStreamFilterTest/
H A DHasNextTypeFilter.java33 protected boolean[] types = new boolean[20]; field in class:HasNextTypeFilter
39 types[type] = true;
43 return types[e.getEventType()];
47 return types[r.getEventType()];
/openjdk10/hotspot/test/compiler/types/correctness/execution/
H A DExecution.java23 package compiler.types.correctness.execution;
25 import compiler.types.correctness.hierarchies.TypeHierarchy;
26 import compiler.types.correctness.scenarios.Scenario;
/openjdk10/jdk/test/javax/sql/testng/util/
H A DTestSQLDataImpl.java54 private final Object[] types = new Object[MAX_TYPES]; field in class:TestSQLDataImpl
81 types[stringPos] = stream.readString();
82 types[datePos] = stream.readDate();
83 types[timePos] = stream.readTime();
84 types[timestampPos] = stream.readTimestamp();
85 types[intPos] = stream.readInt();
86 types[longPos] = stream.readLong();
87 types[shortPos] = stream.readShort();
88 types[bigDecimalPos] = stream.readBigDecimal();
89 types[doublePo
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/com/sun/imageio/plugins/tiff/
H A DTIFFImageMetadataFormat.java80 String[] types = {
99 for (int i = 0; i < types.length; i++) {
100 if (!types[i].equals("TIFFUndefined")) {
102 childNames[0] = types[i];
105 elementInfoMap.put(types[i] + "s", einfo);
109 !types[i].equals("TIFFUndefined") &&
110 !types[i].equals("TIFFAscii") &&
111 !types[i].equals("TIFFRational") &&
112 !types[i].equals("TIFFSRational") &&
113 !types[
[all...]
/openjdk10/langtools/test/tools/javac/processing/model/util/
H A DTypesBadArg.java50 final Types types = processingEnv.getTypeUtils();
57 types.isSubtype(javaLang, javaLang);
62 types.isAssignable(javaLang, javaLang);
67 types.contains(javaLang, javaLang);
72 types.directSupertypes(javaLang);
77 types.erasure(javaLang);
82 types.capture(javaLang);
87 types.unboxedType(javaLang);
92 types.unboxedType(types
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/javax/sound/midi/spi/
H A DMidiFileWriter.java36 * implement this interface can write one or more types of MIDI file from a
45 * Obtains the set of MIDI file types for which file writing support is
48 * @return array of file types. If no file types are supported, an array of
54 * Obtains the file types that this file writer can write from the sequence
58 * @return array of file types. If no file types are supported, returns an
74 int types[] = getMidiFileTypes();
75 for(int i=0; i<types.length; i++) {
76 if( fileType == types[
[all...]
/openjdk10/hotspot/test/testlibrary/jittester/src/jdk/test/lib/jittester/types/
H A DTypeDouble.java24 package jdk.test.lib.jittester.types;
H A DTypeFloat.java24 package jdk.test.lib.jittester.types;
H A DTypeShort.java24 package jdk.test.lib.jittester.types;
H A DTypeByte.java24 package jdk.test.lib.jittester.types;
H A DTypeLong.java24 package jdk.test.lib.jittester.types;
H A DTypeInt.java24 package jdk.test.lib.jittester.types;
/openjdk10/jdk/src/java.desktop/unix/native/libawt/java2d/
H A Dj2d_md.h28 #include <sys/types.h>
31 * Linux and MACOSX's version of <sys/types.h> does not define intptr_t

Completed in 211 milliseconds

1234567891011>>