Searched refs:type (Results 226 - 250 of 4477) sorted by relevance

1234567891011>>

/openjdk10/hotspot/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/collect/
H A DSourceProvider.java29 boolean supports(String type); argument
/openjdk10/hotspot/src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/
H A DGotSymbol.java39 * @param type type of the symbol (UNDEFINED, FUNC, etc)
44 public GotSymbol(Kind type, Binding binding, ByteContainer container, String name) { argument
45 this(container.getByteStreamSize(), type, binding, container, name);
53 * @param type type of the symbol (UNDEFINED, FUNC, etc)
58 public GotSymbol(int offset, Kind type, Binding binding, ByteContainer sec, String name) { argument
59 super(offset, type, binding, sec, GOT_SIZE, name);
/openjdk10/hotspot/src/share/vm/metaprogramming/
H A DisSigned.hpp35 : public IntegralConstant<bool, std::numeric_limits<typename RemoveCV<T>::type>::is_signed>
H A DenableIf.hpp32 // For example typename EnableIf<IsPointer<T>::value>::type func(T ptr) would
33 // only become an overload the compiler chooses from if the type T is a pointer.
37 // typename EnableIf<!IsPointer<T>::value>::type func(T not_ptr)
44 typedef T type; typedef in struct:EnableIf
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/classfile/
H A DAnnotationElementValue.java35 public AnnotationElementValue(final int type, final AnnotationEntry annotationEntry, argument
38 super(type, cpool);
39 if (type != ANNOTATION) {
41 "Only element values of type annotation can be built with this ctor - type specified: " + type);
49 dos.writeByte(super.getType()); // u1 type of value (ANNOTATION == '@')
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/
H A DStripFilter.java30 public boolean stripSpace(DOM dom, int node, int type); argument
/openjdk10/hotspot/test/testlibrary/jittester/src/jdk/test/lib/jittester/
H A DVariableInfo.java41 public VariableInfo(String name, TypeKlass owner, Type type, int flags) { argument
42 super(name, owner, type, flags);
45 public VariableInfo(TypeKlass owner, Type type) { argument
46 super("", owner, type, Symbol.NONE);
/openjdk10/jaxp/src/java.xml/share/classes/javax/xml/catalog/
H A DBaseEntry.java40 CatalogEntryType type; field in class:BaseEntry
80 public boolean isType(String type) { argument
81 return literal.equals(type);
85 for (CatalogEntryType type : CatalogEntryType.values()) {
86 if (type.isType(entryType)) {
87 return type;
97 * @param type The type of the entry
99 public BaseEntry(CatalogEntryType type) { argument
100 this.type
109 BaseEntry(CatalogEntryType type, String base) argument
128 setType(CatalogEntryType type) argument
[all...]
/openjdk10/jaxp/src/jdk.xml.dom/share/classes/org/w3c/dom/html/
H A DHTMLUListElement.java59 * Bullet style. See the type attribute definition in HTML 4.0. This
63 public void setType(String type); argument
H A DHTMLLIElement.java52 * List item bullet style. See the type attribute definition in HTML
56 public void setType(String type); argument
/openjdk10/jdk/src/java.base/share/classes/sun/security/ssl/
H A DUnknownExtension.java34 UnknownExtension(HandshakeInStream s, int len, ExtensionType type) argument
36 super(type);
51 s.putInt16(type.id);
57 return "Unsupported extension " + type + ", data: " +
/openjdk10/jdk/src/java.desktop/share/classes/com/sun/beans/introspect/
H A DMethodInfo.java42 final Class<?> type; field in class:MethodInfo
44 MethodInfo(Method method, Class<?> type) { argument
46 this.type = type;
49 MethodInfo(Method method, Type type) { argument
51 this.type = resolve(method, type);
55 for (Class<?> type : this.method.getExceptionTypes()) {
56 if (type == exception) {
63 static Class<?> resolve(Method method, Type type) { argument
67 get(Class<?> type) argument
[all...]
/openjdk10/jdk/src/java.base/share/classes/java/security/cert/
H A DCertPath.java42 * All {@code CertPath} objects have a type, a list of
49 * The type is a {@code String} that identifies the type of
124 private String type; // the type of certificates in this chain field in class:CertPath
127 * Creates a {@code CertPath} of the specified type.
132 * @param type the standard name of the type of
135 protected CertPath(String type) { argument
136 this.type
306 private String type; field in class:CertPath.CertPathRep
317 CertPathRep(String type, byte[] data) argument
[all...]
/openjdk10/jdk/src/jdk.jdi/share/classes/com/sun/jdi/
H A DValue.java64 * <TH scope="col" style="width:15em">{@link Type} of value<br>{@link #type() Value.type()}</TH>
122 * <TH scope="col" style="width:15em">{@link Type} of value<br>{@link #type() Value.type()}</TH>
190 * Returns the run-time type of this value.
193 * @return a {@link Type} which mirrors the value's type in the
196 Type type(); method in interface:Value
/openjdk10/langtools/src/java.compiler/share/classes/javax/lang/model/type/
H A DIntersectionType.java26 package javax.lang.model.type;
31 * Represents an intersection type.
33 * <p>An intersection type can be either implicitly or explicitly
34 * declared in a program. For example, the bound of the type parameter
36 * type. This is represented by an {@code IntersectionType} with
40 * IntersectionType} is used to model the explicit target type of a
48 * Return the bounds comprising this intersection type.
50 * @return the bounds of this intersection type
H A DNoType.java26 package javax.lang.model.type;
32 * A pseudo-type used where no actual type is appropriate.
36 * <li>{@link TypeKind#PACKAGE PACKAGE} - the pseudo-type of a package element.
37 * <li>{@link TypeKind#MODULE MODULE} - the pseudo-type of a module element.
39 * where no actual type is appropriate; for example, the superclass
H A DUnionType.java26 package javax.lang.model.type;
31 * Represents a union type.
33 * Union types can appear as the type of a multi-catch exception
41 * Return the alternatives comprising this union type.
43 * @return the alternatives comprising this union type.
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/source/tree/
H A DPrimitiveTypeTree.java28 import javax.lang.model.type.TypeKind;
31 * A tree node for a primitive type.
46 * Returns the kind of this primitive type.
47 * @return the kind of the type
/openjdk10/nashorn/src/jdk.dynalink/share/classes/jdk/dynalink/linker/
H A DTypeBasedGuardingDynamicLinker.java89 * A guarding dynamic linker that can determine whether it can link the call site solely based on the type of the first
97 * Returns true if the linker can link an invocation where the first argument (receiver) is of the specified type.
99 * @param type the type to link
100 * @return true if the linker can link calls for the receiver type, or false otherwise.
102 public boolean canLinkType(Class<?> type); argument
/openjdk10/nashorn/samples/
H A Dcall_lambda.js34 var JFunction = Java.type("java.util.function.Function");
H A Dlocales.js36 var Arrays = Java.type("java.util.Arrays");
37 var Collectors = Java.type("java.util.stream.Collectors");
38 var JString = Java.type("java.lang.String");
39 var Locale = Java.type("java.util.Locale");
/openjdk10/nashorn/test/script/basic/
H A DJDK-8058545.js32 var File = Java.type("java.io.File");
H A DJDK-8044534.js31 var inspect = Java.type("jdk.nashorn.test.tools.StaticTypeInspector").inspect;
/openjdk10/nashorn/samples/engine/
H A Dcallfunc.js35 var ScriptEngineManager = Java.type("javax.script.ScriptEngineManager");
H A Dexposevar.js34 var ScriptEngineManager = Java.type("javax.script.ScriptEngineManager");

Completed in 175 milliseconds

1234567891011>>