Searched refs:type (Results 276 - 300 of 4477) sorted by relevance

<<11121314151617181920>>

/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/spi/
H A DStampProvider.java25 import org.graalvm.compiler.core.common.type.ObjectStamp;
26 import org.graalvm.compiler.core.common.type.Stamp;
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/
H A DWin32VtblAccess.java32 a given C++ type. As it happens, on Win32 (at least for Visual C++
44 protected String vtblSymbolForType(Type type) { argument
45 return "??_7" + type.getName() + "@@6B@";
/openjdk10/corba/src/java.corba/share/classes/com/sun/tools/corba/se/idl/
H A DToken.java47 // Should escaped Identifier should be a type rather than an attribute?
52 * Token has a type. Depending on its type and on the supported version
54 * (identifier, e.g.), and whether it is escaped, deprecated, or is a type
256 return type >= FirstKeyword && type <= LastKeyword;
289 // 3.0: adds components, attr exceptions, local interfaces, type repository
424 return type >= FirstDirective && type <= LastDirective;
454 * @return a Token of the supplied type
537 toString(int type) argument
581 equals(int type) argument
659 int type; field in class:Token
[all...]
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/types/basic/
H A DBasicVtblAccess.java46 public Address getVtblForType(Type type) { argument
47 if (type == null) {
50 Object result = typeToVtblMap.get(type);
57 String vtblSymbol = vtblSymbolForType(type);
59 typeToVtblMap.put(type, nullAddress);
65 typeToVtblMap.put(type, addr);
69 typeToVtblMap.put(type, nullAddress);
77 protected abstract String vtblSymbolForType(Type type); argument
/openjdk10/hotspot/src/share/vm/gc/g1/
H A Dg1HeapRegionTraceType.hpp46 static const char* to_string(G1HeapRegionTraceType::Type type) { argument
47 switch (type) {
/openjdk10/hotspot/src/share/vm/gc/parallel/
H A DvmPSOperations.hpp36 virtual VMOp_Type type() const { function in class:VM_ParallelGCFailedAllocation
45 virtual VMOp_Type type() const { return VMOp_ParallelGCSystemGC; } function in class:VM_ParallelGCSystemGC
/openjdk10/hotspot/test/native/metaprogramming/
H A Dtest_enableIf.cpp34 static typename EnableIf<condition, char>::type test();
36 static typename EnableIf<!condition, long>::type test();
H A Dtest_removeReference.cpp38 typedef RemoveReference<cvAref>::type rr_cvAref;
42 typedef RemoveReference<cvAptrcv>::type rr_cvAptrcv;
H A Dtest_removeCV.cpp44 typedef RemoveCV<A>::type rcv_A;
48 typedef RemoveCV<cA>::type rcv_cA;
52 typedef RemoveCV<vA>::type rcv_vA;
56 typedef RemoveCV<cvA>::type rcv_cvA;
60 typedef RemoveCV<cAptr>::type rcv_cAptr;
64 typedef RemoveCV<Aptrc>::type rcv_Aptrc;
68 typedef RemoveCV<cAptrc>::type rcv_cAptrc;
72 typedef RemoveCV<cAref>::type rcv_cAref;
H A Dtest_removePointer.cpp38 typedef RemovePointer<cvAref>::type rp_cvAref;
42 typedef RemovePointer<cvAptrcv>::type rp_cvAptrcv;
/openjdk10/jaxp/src/java.xml/share/classes/org/w3c/dom/events/
H A DEventTarget.java68 * @param type The event type for which the user is registering
74 * events of the specified type will be dispatched to the registered
80 public void addEventListener(String type, argument
93 * @param type Specifies the event type of the <code>EventListener</code>
104 public void removeEventListener(String type, argument
115 * @param evt Specifies the event type, behavior, and contextual
122 * UNSPECIFIED_EVENT_TYPE_ERR: Raised if the <code>Event</code>'s type
125 * <code>Event</code>'s type a
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/com/sun/imageio/plugins/bmp/
H A DBMPCompressionTypes.java40 static String getName(int type) { argument
41 return compressionTypeNames[type];
/openjdk10/jdk/src/java.desktop/share/classes/java/awt/geom/
H A DQuadIterator.java74 * Returns the coordinates and type of the current path segment in
76 * The return value is the path segment type:
95 int type;
99 type = SEG_MOVETO;
105 type = SEG_QUADTO;
110 return type;
114 * Returns the coordinates and type of the current path segment in
116 * The return value is the path segment type:
135 int type;
139 type
[all...]
H A DCubicIterator.java74 * Returns the coordinates and type of the current path segment in
76 * The return value is the path segment type:
95 int type;
99 type = SEG_MOVETO;
107 type = SEG_CUBICTO;
112 return type;
116 * Returns the coordinates and type of the current path segment in
118 * The return value is the path segment type:
137 int type;
141 type
[all...]
H A DLineIterator.java74 * Returns the coordinates and type of the current path segment in
76 * The return value is the path segment type:
95 int type;
99 type = SEG_MOVETO;
103 type = SEG_LINETO;
108 return type;
112 * Returns the coordinates and type of the current path segment in
114 * The return value is the path segment type:
133 int type;
137 type
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/sun/java2d/cmm/
H A DProfileDeferralInfo.java43 public ProfileDeferralInfo(String fn, int type, int ncomp, int pclass) { argument
47 colorSpaceType = type;
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/xsom/util/
H A DSimpleTypeSet.java51 public boolean contains(XSType type) { argument
52 return typeSet.contains(type);
/openjdk10/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/processor/model/java/
H A DJavaStructureMember.java36 public JavaStructureMember(String name, JavaType type, Object owner) { argument
37 this(name, type, owner, false);
39 public JavaStructureMember(String name, JavaType type, argument
43 this.type = type;
58 return type;
62 type = t;
121 private JavaType type; field in class:JavaStructureMember
H A DJavaParameter.java38 public JavaParameter(String name, JavaType type, Parameter parameter) { argument
39 this(name, type, parameter, false);
42 public JavaParameter(String name, JavaType type, Parameter parameter, argument
46 this.type = type;
60 return type;
64 type = t;
92 private JavaType type; field in class:JavaParameter
/openjdk10/jdk/src/java.base/share/classes/java/lang/invoke/
H A DVolatileCallSite.java49 * of the given type which will throw an {@code IllegalStateException} if called.
50 * @param type the method type that this call site will have
51 * @throws NullPointerException if the proposed type is null
53 public VolatileCallSite(MethodType type) { argument
54 super(type);
87 * The type of the new target must agree with the type of the old target.
95 * has a method type that differs from the previous target
/openjdk10/jdk/src/demo/share/java2d/J2DBench/src/j2dbench/ui/
H A DEnableButton.java58 private int type; field in class:EnableButton
67 public EnableButton(Group group, int type) { argument
68 super(icons[type]);
70 this.type = type;
78 String newval = (type == SET) ? "enabled" : "disabled";
81 if (type == DEFAULT) {
85 if (type == INVERT) {
/openjdk10/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/internal/
H A DResourcePoolEntryFactory.java35 ResourcePoolEntry.Type type, byte[] content) {
36 return new ByteArrayResourcePoolEntry(moduleFrom(path), path, type, content);
40 ResourcePoolEntry.Type type, Path file) {
41 return new PathResourcePoolEntry(moduleFrom(path), path, type, file);
46 original.path(), original.type(), content);
51 original.path(), original.type(), file);
55 ResourcePoolEntry.Type type,
57 return new SymLinkResourcePoolEntry(moduleFrom(path), path, type, target);
34 create(String path, ResourcePoolEntry.Type type, byte[] content) argument
39 create(String path, ResourcePoolEntry.Type type, Path file) argument
54 createSymbolicLink(String path, ResourcePoolEntry.Type type, ResourcePoolEntry target) argument
/openjdk10/jdk/src/jdk.rmic/share/classes/sun/tools/tree/
H A DBinaryShiftExpression.java41 super(op, where, left.type, left, right);
63 * Select the type
66 if (left.type == Type.tLong) {
67 type = Type.tLong;
68 } else if (left.type.inMask(TM_INTEGER)) {
69 type = Type.tInt;
70 left = convert(env, ctx, type, left);
72 type = Type.tError;
74 if (right.type.inMask(TM_INTEGER)) {
/openjdk10/jdk/test/com/sun/jmx/remote/NotificationMarshalVersions/Client/
H A DTestNotification.java33 public TestNotification(String type, Object source, long sequenceNumber) { argument
34 super(type, source, sequenceNumber);
/openjdk10/jdk/test/com/sun/jmx/remote/NotificationMarshalVersions/Server/
H A DTestNotification.java33 public TestNotification(String type, Object source, long sequenceNumber) { argument
34 super(type, source, sequenceNumber);

Completed in 188 milliseconds

<<11121314151617181920>>