Uses of Class
org.jruby.util.collections.SinglyLinkedList

Packages that use SinglyLinkedList
org.jruby   
org.jruby.internal.runtime.methods   
org.jruby.runtime   
org.jruby.util.collections   
 

Uses of SinglyLinkedList in org.jruby
 

Fields in org.jruby declared as SinglyLinkedList
 SinglyLinkedList RubyModule.cref
           
 

Methods in org.jruby that return SinglyLinkedList
 SinglyLinkedList RubyModule.getCRef()
           
 

Methods in org.jruby with parameters of type SinglyLinkedList
 RubyClass Ruby.defineClassUnder(java.lang.String name, RubyClass superClass, ObjectAllocator allocator, SinglyLinkedList parentCRef)
           
 RubyModule Ruby.defineModuleUnder(java.lang.String name, SinglyLinkedList parentCRef)
           
static RubyClass RubyClass.createBootstrapMetaClass(Ruby runtime, java.lang.String className, RubyClass superClass, ObjectAllocator allocator, SinglyLinkedList cref)
          Create an initial Object meta class before Module and Kernel dependencies have squirreled themselves together.
static RubyClass RubyClass.newClass(Ruby runtime, RubyClass superClass, SinglyLinkedList parentCRef, java.lang.String name)
           
static RubyClass RubyClass.cloneClass(Ruby runtime, RubyClass metaClass, RubyClass superClass, ObjectAllocator allocator, SinglyLinkedList parentCRef, java.lang.String name)
           
 RubyClass RubyClass.newSubClass(java.lang.String name, ObjectAllocator allocator, SinglyLinkedList parentCRef, boolean invokeInherited, boolean warnOnRedefinition)
           
 RubyClass RubyClass.newSubClass(java.lang.String name, ObjectAllocator allocator, SinglyLinkedList parentCRef, boolean warnOnRedefinition)
           
static RubyModule RubyModule.newModule(Ruby runtime, java.lang.String name, SinglyLinkedList parentCRef)
           
static RubyModule RubyModule.newModule(Ruby runtime, RubyClass type, java.lang.String name, SinglyLinkedList parentCRef)
           
 RubyClass RubyObject.makeMetaClass(RubyClass superClass, SinglyLinkedList parentCRef)
          Create a new meta class.
 

Constructors in org.jruby with parameters of type SinglyLinkedList
MetaClass(Ruby runtime, RubyClass superClass, ObjectAllocator allocator, SinglyLinkedList parentCRef)
           
RubyClass(Ruby runtime, RubyClass metaClass, RubyClass superClass, ObjectAllocator allocator, SinglyLinkedList parentCRef, java.lang.String name)
           
RubyModule(Ruby runtime, RubyClass metaClass, RubyClass superClass, SinglyLinkedList parentCRef, java.lang.String name)
           
 

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

Methods in org.jruby.internal.runtime.methods with parameters of type SinglyLinkedList
 DynamicMethod DumpingInvocationMethodFactory.getCompiledMethod(RubyModule implementationClass, java.lang.Class type, java.lang.String method, Arity arity, Visibility visibility, SinglyLinkedList cref, StaticScope scope)
           
 DynamicMethod InvocationMethodFactory.getCompiledMethod(RubyModule implementationClass, java.lang.Class type, java.lang.String method, Arity arity, Visibility visibility, SinglyLinkedList cref, StaticScope scope)
           
 DynamicMethod ReflectionMethodFactory.getCompiledMethod(RubyModule implementationClass, java.lang.Class type, java.lang.String methodName, Arity arity, Visibility visibility, SinglyLinkedList cref, StaticScope scope)
           
 

Constructors in org.jruby.internal.runtime.methods with parameters of type SinglyLinkedList
CompiledMethod(RubyModule implementationClass, Arity arity, Visibility visibility, SinglyLinkedList cref, StaticScope staticScope)
           
DefaultMethod(RubyModule implementationClass, StaticScope staticScope, Node body, ArgsNode argsNode, Visibility visibility, SinglyLinkedList cref)
           
YARVMethod(RubyModule implementationClass, YARVMachine.InstructionSequence iseq, StaticScope staticScope, Visibility visibility, SinglyLinkedList cref)
           
 

Uses of SinglyLinkedList in org.jruby.runtime
 

Fields in org.jruby.runtime declared as SinglyLinkedList
protected  SinglyLinkedList Block.cref
           
 

Methods in org.jruby.runtime that return SinglyLinkedList
 SinglyLinkedList Block.getCRef()
           
 SinglyLinkedList MethodBlock.getCRef()
           
 SinglyLinkedList ThreadContext.peekCRef()
           
 SinglyLinkedList ThreadContext.pushCRef(RubyModule newModule)
           
 

Methods in org.jruby.runtime with parameters of type SinglyLinkedList
abstract  DynamicMethod MethodFactory.getCompiledMethod(RubyModule implementationClass, java.lang.Class type, java.lang.String method, Arity arity, Visibility visibility, SinglyLinkedList cref, StaticScope scope)
           
 void ThreadContext.setCRef(SinglyLinkedList newCRef)
           
 void ThreadContext.preDefMethodInternalCall(RubyModule clazz, java.lang.String name, IRubyObject self, IRubyObject[] args, int req, Block block, boolean noSuper, SinglyLinkedList cref, StaticScope staticScope, java.lang.Object jumpTarget)
           
 void ThreadContext.preCompiledMethod(RubyModule implementationClass, SinglyLinkedList cref)
           
 

Constructors in org.jruby.runtime with parameters of type SinglyLinkedList
Block(IterNode iterNode, IRubyObject self, Frame frame, SinglyLinkedList cref, Visibility visibility, RubyModule klass, DynamicScope dynamicScope)
           
MethodBlock(IRubyObject self, Frame frame, SinglyLinkedList cref, Visibility visibility, RubyModule klass, DynamicScope dynamicScope, Callback callback, RubyMethod method)
           
 

Uses of SinglyLinkedList in org.jruby.util.collections
 

Methods in org.jruby.util.collections that return SinglyLinkedList
 SinglyLinkedList SinglyLinkedList.getNext()
           
 

Methods in org.jruby.util.collections with parameters of type SinglyLinkedList
 void SinglyLinkedList.setNext(SinglyLinkedList next)
           
 

Constructors in org.jruby.util.collections with parameters of type SinglyLinkedList
SinglyLinkedList(java.lang.Object value, SinglyLinkedList next)
           
 



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