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

1234567891011

/openjdk7/hotspot/src/share/vm/ci/
H A DciInstanceKlassKlass.cpp38 ciInstanceKlassKlass* ciInstanceKlassKlass::make() { function in class:ciInstanceKlassKlass
H A DciKlassKlass.cpp38 ciKlassKlass* ciKlassKlass::make() { function in class:ciKlassKlass
H A DciMethodKlass.cpp38 ciMethodKlass* ciMethodKlass::make() { function in class:ciMethodKlass
H A DciObjArrayKlassKlass.cpp38 ciObjArrayKlassKlass* ciObjArrayKlassKlass::make() { function in class:ciObjArrayKlassKlass
H A DciTypeArrayKlassKlass.cpp38 ciTypeArrayKlassKlass* ciTypeArrayKlassKlass::make() { function in class:ciTypeArrayKlassKlass
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 DciInstanceKlassKlass.hpp39 : ciKlassKlass(h_k, ciSymbol::make("unique_instanceKlassKlass")) {
54 static ciInstanceKlassKlass* make();
H A DciKlassKlass.hpp41 : ciKlass(h_k, ciSymbol::make("unique_klassKlass")) {
56 static ciKlassKlass* make();
H A DciMethodKlass.hpp40 ciKlass(h_k, ciSymbol::make("unique_methodKlass")) {
53 static ciMethodKlass* make();
H A DciObjArrayKlassKlass.hpp39 : ciArrayKlassKlass(h_k, ciSymbol::make("unique_objArrayKlassKlass")) {
54 static ciObjArrayKlassKlass* make();
H A DciTypeArrayKlassKlass.hpp39 : ciArrayKlassKlass(h_k, ciSymbol::make("unique_typeArrayKlassKlass")) {
55 static ciTypeArrayKlassKlass* make();
H A DciNullObject.cpp43 // ciNullObject::make
46 ciNullObject* ciNullObject::make() { function in class:ciNullObject
/openjdk7/hotspot/make/windows/projectfiles/compiler1/
H A DMakefile25 !include ../local.make
27 !include $(HOTSPOTWORKSPACE)/make/windows/projectfiles/common/Makefile
/openjdk7/hotspot/make/windows/projectfiles/core/
H A DMakefile25 !include ../local.make
27 !include $(HOTSPOTWORKSPACE)/make/windows/projectfiles/common/Makefile
/openjdk7/
H A Dget_source.sh29 sh ./make/scripts/hgforest.sh clone $*
32 sh ./make/scripts/hgforest.sh pull -u
/openjdk7/jdk/test/
H A Djprt.config33 # make Full path to GNU make
87 # Find GNU make
88 make=/usr/sfw/bin/gmake
89 if [ ! -f ${make} ] ; then
90 make=/opt/sfw/bin/gmake
91 if [ ! -f ${make} ] ; then
92 make=${slashjava}/devtools/${solaris_arch}/bin/gnumake
95 fileMustExist "${make}" make
[all...]
/openjdk7/hotspot/test/
H A Djprt.config37 # make Full path to GNU make
91 # Find GNU make
92 make=/usr/sfw/bin/gmake
93 if [ ! -f ${make} ] ; then
94 make=/opt/sfw/bin/gmake
95 if [ ! -f ${make} ] ; then
96 make=${slashjava}/devtools/${solaris_arch}/bin/gnumake
99 fileMustExist "${make}" make
[all...]
/openjdk7/jdk/make/launchers/
H A DMakefile36 # $(call make-launcher, name, mainclass, java-args, main-args)
37 define make-corba-launcher
48 define make-appletviewer
49 $(call make-launcher, appletviewer, sun.applet.Main, , )
52 define make-appletviewer
56 define make-all-launchers
57 $(make-appletviewer)
58 $(call make-launcher, apt, com.sun.tools.apt.Main, , )
59 $(call make-launcher, extcheck, com.sun.tools.extcheck.Main, , )
60 $(call make
[all...]
/openjdk7/hotspot/make/windows/projectfiles/common/
H A DMakefile56 !include $(HOTSPOTWORKSPACE)/make/windows/makefiles/projectcreator.make
57 !include $(WorkSpace)/make/windows/makefiles/compile.make
61 !include $(HOTSPOTWORKSPACE)/make/windows/makefiles/jvmti.make
65 !include $(HOTSPOTWORKSPACE)/make/windows/makefiles/trace.make
69 !include $(HOTSPOTWORKSPACE)/make/windows/makefiles/adlc.make
[all...]
/openjdk7/hotspot/make/windows/projectfiles/compiler2/
H A DMakefile25 !include ../local.make
29 !include $(HOTSPOTWORKSPACE)/make/windows/projectfiles/common/Makefile
/openjdk7/hotspot/make/windows/projectfiles/tiered/
H A DMakefile25 !include ../local.make
29 !include $(HOTSPOTWORKSPACE)/make/windows/projectfiles/common/Makefile
/openjdk7/jdk/src/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
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/copyobject/
H A DObjectCopierFactory.java35 ObjectCopier make() ; method in interface:ObjectCopierFactory

Completed in 559 milliseconds

1234567891011