Uses of Class
org.jruby.internal.runtime.methods.CallConfiguration

Packages that use CallConfiguration
org.jruby.compiler   
org.jruby.internal.runtime.methods   
org.jruby.javasupport.util   
org.jruby.runtime   
 

Uses of CallConfiguration in org.jruby.compiler
 

Methods in org.jruby.compiler that return CallConfiguration
 CallConfiguration JITCompiler.JITClassGenerator.callConfig()
           
 

Uses of CallConfiguration in org.jruby.internal.runtime.methods
 

Fields in org.jruby.internal.runtime.methods declared as CallConfiguration
static CallConfiguration CallConfiguration.BACKTRACE_AND_SCOPE
           
static CallConfiguration CallConfiguration.BACKTRACE_ONLY
           
protected  CallConfiguration DynamicMethod.callConfig
           
static CallConfiguration CallConfiguration.FRAME_AND_SCOPE
           
static CallConfiguration CallConfiguration.FRAME_ONLY
           
static CallConfiguration CallConfiguration.NO_FRAME_NO_SCOPE
           
static CallConfiguration CallConfiguration.SCOPE_ONLY
           
 

Methods in org.jruby.internal.runtime.methods that return CallConfiguration
 CallConfiguration DynamicMethod.getCallConfig()
           
static CallConfiguration CallConfiguration.getCallConfig(boolean frame, boolean scope, boolean backtrace)
           
static CallConfiguration CallConfiguration.getCallConfigByAnno(JRubyMethod anno)
           
 CallConfiguration DefaultMethod.getJITCallConfig()
           
 

Methods in org.jruby.internal.runtime.methods with parameters of type CallConfiguration
 DynamicMethod InvocationMethodFactory.getCompiledMethod(RubyModule implementationClass, java.lang.String method, Arity arity, Visibility visibility, StaticScope scope, java.lang.Object scriptObject, CallConfiguration callConfig)
          Use code generation to provide a method handle for a compiled Ruby method.
 DynamicMethod ReflectionMethodFactory.getCompiledMethod(RubyModule implementationClass, java.lang.String methodName, Arity arity, Visibility visibility, StaticScope scope, java.lang.Object scriptObject, CallConfiguration callConfig)
          Use reflection to provide a method handle for a compiled Ruby method.
 void DynamicMethod.setCallConfig(CallConfiguration callConfig)
           
 void UndefinedMethod.setCallConfig(CallConfiguration callConfig)
           
 void DefaultMethod.setJITCallConfig(CallConfiguration jitCallConfig)
           
 

Constructors in org.jruby.internal.runtime.methods with parameters of type CallConfiguration
CompiledMethod(RubyModule implementationClass, Arity arity, Visibility visibility, StaticScope staticScope, java.lang.Object scriptObject, CallConfiguration callConfig)
           
DynamicMethod(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig)
           
JavaMethod.JavaMethodNoBlock(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig, StaticScope staticScope, Arity arity)
           
JavaMethod.JavaMethodOne(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig, StaticScope staticScope, Arity arity)
           
JavaMethod.JavaMethodOneBlock(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig, StaticScope staticScope, Arity arity)
           
JavaMethod.JavaMethodOneOrTwo(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig, StaticScope staticScope, Arity arity)
           
JavaMethod.JavaMethodOneOrTwoBlock(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig, StaticScope staticScope, Arity arity)
           
JavaMethod.JavaMethodOneOrTwoOrThree(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig, StaticScope staticScope, Arity arity)
           
JavaMethod.JavaMethodThree(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig, StaticScope staticScope, Arity arity)
           
JavaMethod.JavaMethodThreeBlock(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig, StaticScope staticScope, Arity arity)
           
JavaMethod.JavaMethodTwo(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig, StaticScope staticScope, Arity arity)
           
JavaMethod.JavaMethodTwoBlock(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig, StaticScope staticScope, Arity arity)
           
JavaMethod.JavaMethodTwoOrThree(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig, StaticScope staticScope, Arity arity)
           
JavaMethod.JavaMethodZero(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig, StaticScope staticScope, Arity arity)
           
JavaMethod.JavaMethodZeroBlock(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig, StaticScope staticScope, Arity arity)
           
JavaMethod.JavaMethodZeroOrOne(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig, StaticScope staticScope, Arity arity)
           
JavaMethod.JavaMethodZeroOrOneOrTwo(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig, StaticScope staticScope, Arity arity)
           
JavaMethod(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig, StaticScope staticScope, Arity arity)
           
ReflectedCompiledMethod(RubyModule implementationClass, Arity arity, Visibility visibility, StaticScope staticScope, java.lang.Object scriptObject, java.lang.reflect.Method method, CallConfiguration callConfig)
           
 

Uses of CallConfiguration in org.jruby.javasupport.util
 

Methods in org.jruby.javasupport.util with parameters of type CallConfiguration
static IRubyObject RuntimeHelpers.def(ThreadContext context, IRubyObject self, java.lang.Object scriptObject, java.lang.String name, java.lang.String javaName, java.lang.String[] scopeNames, int arity, int required, int optional, int rest, CallConfiguration callConfig)
           
static IRubyObject RuntimeHelpers.defs(ThreadContext context, IRubyObject self, IRubyObject receiver, java.lang.Object scriptObject, java.lang.String name, java.lang.String javaName, java.lang.String[] scopeNames, int arity, int required, int optional, int rest, CallConfiguration callConfig)
           
 

Uses of CallConfiguration in org.jruby.runtime
 

Methods in org.jruby.runtime with parameters of type CallConfiguration
abstract  DynamicMethod MethodFactory.getCompiledMethod(RubyModule implementationClass, java.lang.String method, Arity arity, Visibility visibility, StaticScope scope, java.lang.Object scriptObject, CallConfiguration callConfig)
          Get a new method handle based on the target JRuby-compiled method.
 



Copyright © 2002-2007 JRuby Team. All Rights Reserved.