Searched refs:make (Results 1 - 25 of 304) sorted by relevance

1234567891011>>

/openjdk10/hotspot/test/
H A Djprt.config37 # make Full path to GNU make
91 # Find GNU make
92 make=/usr/bin/gmake
93 if [ ! -f ${make} ] ; then
94 make=/usr/gnu/bin/make
95 if [ ! -f ${make} ] ; then
96 make=${slashjava}/devtools/${solaris_arch}/bin/gnumake
99 fileMustExist "${make}" mak
[all...]
/openjdk10/langtools/test/tools/javac/lambda/
H A DLambdaConv22.java34 interface Factory<T> { T make(); } method in interface:LambdaConv22.Factory
36 U make() { return null; } method in class:LambdaConv22
40 Factory<U> fu2 = this::make;
H A DMethodReference60.java33 X make(int size); method in interface:MethodReference60.ArrayFactory
37 X make(); method in interface:MethodReference60.BadArrayFactory1
41 X make(int i1, int i2); method in interface:MethodReference60.BadArrayFactory2
45 X make(String s); method in interface:MethodReference60.BadArrayFactory3
H A DMethodReference59.java40 X make(int size); method in interface:MethodReference59.ArrayFactory
45 int[] i1 = factory1.make(5);
48 int[][] i2 = factory2.make(5);
H A DTargetType50.java36 F make(); method in interface:TargetType50.Factory
40 static <Z> Sink<Z> make() { return null; } method in class:TargetType50.Sink
47 List<?> l2 = m(Sink::make);
49 List<String> l4 = m(Sink::make);
/openjdk10/make/
H A DHelp.gmk38 $(info Common make targets)
39 $(info $(_) make [default] # Compile all modules in langtools, hotspot, jdk, jaxws,)
41 $(info $(_) make all # Compile everything, all repos, docs and images)
42 $(info $(_) make images # Create complete jdk and jre images (alias for product-images))
43 $(info $(_) make <name>-image # Build just the image (jdk, jre, test, docs etc))
44 $(info $(_) make <phase> # Build the specified phase and everything it depends on)
46 $(info $(_) make *-only # Applies to most targets and disables compling the)
49 $(info $(_) make docs # Create all docs)
50 $(info $(_) make docs-jdk-api # Create just JDK javadocs)
51 $(info $(_) make profile
[all...]
/openjdk10/jdk/test/
H A Djprt.config33 # make Full path to GNU make
87 # Find GNU make
88 make=/usr/bin/gmake
89 if [ ! -f ${make} ] ; then
90 make=${slashjava}/devtools/${solaris_arch}/bin/gnumake
92 fileMustExist "${make}" make
102 # Find GNU make
103 make
[all...]
/openjdk10/hotspot/src/share/vm/ci/
H A DciArrayKlass.cpp60 return ciType::make(as_type_array_klass()->element_type());
73 return ciType::make(as_type_array_klass()->element_type());
77 return ciType::make(ek->as_type_array_klass()->element_type());
99 ciArrayKlass* ciArrayKlass::make(ciType* element_type) { function in class:ciArrayKlass
101 return ciTypeArrayKlass::make(element_type->basic_type());
103 return ciObjArrayKlass::make(element_type->as_klass());
H A DciNullObject.hpp55 static ciNullObject* make();
H A DciNullObject.cpp43 // ciNullObject::make
46 ciNullObject* ciNullObject::make() { function in class:ciNullObject
/openjdk10/test/make/
H A DTestMake.gmk30 make-base:
40 all: make-base java-compilation test-idea
42 .PHONY: default all make-base java-compilation test-idea
/openjdk10/langtools/test/tools/javac/lambda/methodReference/
H A DMethodRef_neg.java26 static void make() { } method in class:MethodRef_neg
33 a = MethodRef_neg::make; //missing parameter
34 c = MethodRef_neg::make; //missing return type
H A DMethodRef6.java35 static interface A { String make(Integer i); } method in interface:MethodRef6.A
37 static interface B { String make(Number i); } method in interface:MethodRef6.B
62 assertTrue(a.make(1).equals("Integer 1"));//method parameter type inferred from SAM descriptor, boxing applied
64 assertTrue(b.make(1).equals("Number 1"));//method parameter type inferred from SAM descriptor, boxing and widen applied
/openjdk10/jdk/test/jdk/lambda/
H A DTestInnerCtorRef.java35 A<String> a = A.make(() -> "");
40 abstract T make(); method in class:A
46 public static<T> A<T> make(Supplier<T> factory) { method in class:A
59 T make() { method in class:A.Helper
/openjdk10/langtools/test/tools/javac/diags/examples/
H A DMrefInferAndExplicitParams.java31 X make(); method in interface:MrefInferAndExplicitParams.Supplier
/openjdk10/hotspot/src/share/vm/opto/
H A Dconnode.hpp49 static ConNode* make(const Type *t);
60 static ConINode* make(int con) { function in class:ConINode
61 return new ConINode( TypeInt::make(con) );
74 static ConPNode* make(address con) { function in class:ConPNode
78 return new ConPNode( TypeRawPtr::make(con) );
108 static ConLNode* make(jlong con) { function in class:ConLNode
109 return new ConLNode( TypeLong::make(con) );
122 static ConFNode* make(float con) { function in class:ConFNode
123 return new ConFNode( TypeF::make(con) );
136 static ConDNode* make(doubl function in class:ConDNode
[all...]
/openjdk10/jdk/src/java.base/share/classes/sun/reflect/generics/scope/
H A DConstructorScope.java55 return ClassScope.make(getEnclosingClass());
64 public static ConstructorScope make(Constructor<?> c) { method in class:ConstructorScope
H A DMethodScope.java55 return ClassScope.make(getEnclosingClass());
64 public static MethodScope make(Method m) { method in class:MethodScope
H A DClassScope.java54 return MethodScope.make(m);
60 return ConstructorScope.make(cnstr);
68 return ClassScope.make(c);
72 return DummyScope.make();
81 public static ClassScope make(Class<?> c) { return new ClassScope(c);} method in class:ClassScope
/openjdk10/langtools/test/tools/javac/generics/inference/8019824/
H A DT8019824.java9 Foo<?, ?> foo = make(cls);
12 <A, B, C extends Foo<A, B>> Foo<A, B> make(Class<C> cls) { return null; } method in class:T8019824
/openjdk10/langtools/test/tools/javac/generics/inference/
H A DCaptureLowerBoundNeg.java13 static <T> D<T> make(Class<? extends T> c) { return new D<T>(); } method in class:CaptureLowerBoundNeg.D
17 D.make(o.getClass()).take(o);
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/spi/copyobject/
H A DObjectCopierFactory.java35 ObjectCopier make() ; method in interface:ObjectCopierFactory
H A DCopyobjectDefaults.java47 public ObjectCopier make( )
57 public ObjectCopier make( )
68 public ObjectCopier make()
92 public ObjectCopier make()
94 ObjectCopier c1 = f1.make() ;
95 ObjectCopier c2 = f2.make() ;
/openjdk10/jdk/src/java.base/share/classes/sun/reflect/generics/parser/
H A DSignatureParser.java133 throw error("Failure to make progress!");
140 public static SignatureParser make() { method in class:SignatureParser
212 return ClassSignature.make(parseZeroOrMoreFormalTypeParameters(),
251 return FormalTypeParameter.make(id, bs);
311 return ClassTypeSignature.make(scts);
332 return SimpleClassTypeSignature.make(id, false, new TypeArgument[0]); // all done!
335 return SimpleClassTypeSignature.make(id, false, parseTypeArguments());
352 return SimpleClassTypeSignature.make(id, dollar, new TypeArgument[0]) ;
354 return SimpleClassTypeSignature.make(id, dollar, parseTypeArguments());
404 lb[0] = BottomSignature.make(); // botto
[all...]
/openjdk10/langtools/test/tools/javac/lambda/lambdaExpression/
H A DLambdaTest5.java40 int make (int i); method in interface:LambdaTest5.B
57 assertTrue(b.make(0) == 5);
76 a4 = ()-> ((B)(int i)-> ((A)()-> 9).m() ).make(0);

Completed in 187 milliseconds

1234567891011>>