Searched refs:FunctionType (Results 1 - 16 of 16) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/
H A DFunctionType.java27 public interface FunctionType extends Type { interface in inherits:Type
H A DMemberFunctionType.java27 public interface MemberFunctionType extends FunctionType {
H A DTypeVisitor.java37 public void doFunctionType(FunctionType t);
H A DType.java45 public FunctionType asFunction();
/openjdk7/jdk/src/windows/native/sun/windows/
H A DDllUtil.h51 template <class FunctionType> class Function {
56 inline FunctionType operator () () {
58 function = (FunctionType)dll->GetProcAddress(name);
67 FunctionType function;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicFunctionSym.java59 FunctionType type = (FunctionType) getType();
H A DBasicFunctionType.java31 public class BasicFunctionType extends BasicType implements FunctionType {
44 public FunctionType asFunction() { return this; }
H A DBasicType.java64 public FunctionType asFunction() { return null; }
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkContext.hpp71 const llvm::FunctionType* sig) {
126 const llvm::FunctionType* _entry_point_type;
127 const llvm::FunctionType* _osr_entry_point_type;
157 const llvm::FunctionType* entry_point_type() const {
160 const llvm::FunctionType* osr_entry_point_type() const {
H A DsharkType.hpp100 static const llvm::FunctionType* entry_point_type() {
103 static const llvm::FunctionType* osr_entry_point_type() {
H A DsharkFunction.hpp94 const llvm::FunctionType* entry_point_type() const {
H A DsharkContext.cpp83 _entry_point_type = FunctionType::get(jint_type(), params, false);
90 _osr_entry_point_type = FunctionType::get(jint_type(), params, false);
H A DsharkBuilder.cpp162 const FunctionType* SharkBuilder::make_ftype(const char* params,
171 return FunctionType::get(return_type, param_types, false);
H A DsharkBuilder.hpp89 static const llvm::FunctionType* make_ftype(const char* params,
H A DsharkNativeWrapper.cpp214 FunctionType::get(return_type, param_types, false)));
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/generator/
H A DWrapperGenerator.java572 private static class FunctionType extends BaseType { class in class:WrapperGenerator
581 public FunctionType(String _desc) method in class:WrapperGenerator.FunctionType
931 public void writeFunctionCallWrapper(String outputDir, FunctionType ft) {
1113 } else if (tp instanceof FunctionType) {
1114 writeFunctionCallWrapper(outputDir, (FunctionType)tp);
1268 } else if (bt instanceof FunctionType) {
1269 ((FunctionType)bt).addArgument(atp);
1281 FunctionType ft = new FunctionType(line);

Completed in 495 milliseconds