MCPcopy Create free account

hub / github.com/Relph1119/JVMByPython / functions

Functions4,261 in github.com/Relph1119/JVMByPython

↓ 1 callersMethodland
(long a, long b)
java/code/jvmgo/book/ch07/test/instructions/MathTest.java:114
↓ 1 callersMethodldiv
(long a, long b)
java/code/jvmgo/book/ch07/test/instructions/MathTest.java:108
↓ 1 callersMethodline_number_table_attribute
(self)
src/develop_code/classfile/AttrCode.py:35
↓ 1 callersMethodline_number_table_attribute
(self)
src/ch10/classfile/AttrCode.py:35
↓ 1 callersMethodlink
(clazz: Class)
src/develop_code/rtda/heap/ClassLoader.py:122
↓ 1 callersMethodlink
(clazz: Class)
src/ch08/rtda/heap/ClassLoader.py:109
↓ 1 callersMethodlink
(clazz: Class)
src/ch09/rtda/heap/ClassLoader.py:122
↓ 1 callersMethodlink
(clazz: Class)
src/ch10/rtda/heap/ClassLoader.py:122
↓ 1 callersMethodlink
(clazz: Class)
src/ch06/rtda/heap/ClassLoader.py:88
↓ 1 callersMethodlink
(clazz: Class)
src/ch07/rtda/heap/ClassLoader.py:91
↓ 1 callersMethodlmul
(long a, long b)
java/code/jvmgo/book/ch07/test/instructions/MathTest.java:107
↓ 1 callersMethodlneg
(long a )
java/code/jvmgo/book/ch07/test/instructions/MathTest.java:110
↓ 1 callersMethodload_array_class
(self, name)
src/develop_code/rtda/heap/ClassLoader.py:49
↓ 1 callersMethodload_array_class
(self, name)
src/ch08/rtda/heap/ClassLoader.py:37
↓ 1 callersMethodload_array_class
(self, name)
src/ch09/rtda/heap/ClassLoader.py:49
↓ 1 callersMethodload_array_class
(self, name)
src/ch10/rtda/heap/ClassLoader.py:49
↓ 1 callersMethodload_basic_classes
(self)
src/develop_code/rtda/heap/ClassLoader.py:197
↓ 1 callersMethodload_basic_classes
(self)
src/ch09/rtda/heap/ClassLoader.py:197
↓ 1 callersMethodload_basic_classes
(self)
src/ch10/rtda/heap/ClassLoader.py:197
↓ 1 callersFunctionload_class
(class_name, class_path)
src/ch03/Main.py:50
↓ 1 callersFunctionload_class
(class_name, class_path: Classpath)
src/ch05/Main.py:57
↓ 1 callersMethodload_non_array_class
(self, name)
src/develop_code/rtda/heap/ClassLoader.py:64
↓ 1 callersMethodload_non_array_class
(self, name)
src/ch08/rtda/heap/ClassLoader.py:52
↓ 1 callersMethodload_non_array_class
(self, name)
src/ch09/rtda/heap/ClassLoader.py:64
↓ 1 callersMethodload_non_array_class
(self, name)
src/ch10/rtda/heap/ClassLoader.py:64
↓ 1 callersMethodload_non_array_class
(self, name)
src/ch06/rtda/heap/ClassLoader.py:32
↓ 1 callersMethodload_non_array_class
(self, name)
src/ch07/rtda/heap/ClassLoader.py:34
↓ 1 callersMethodload_primitive_class
有3点说明:1. void和基本类型的类名就是void、int、float等。 2. 基本类型的类没有超类,也没有实现任何接口。 3. 非基本类型的类对象是通过ldc指令加载到操作数栈中的。 而基本类型的类对象,虽然在Java代码中看
src/develop_code/rtda/heap/ClassLoader.py:213
↓ 1 callersMethodload_primitive_class
有3点说明:1. void和基本类型的类名就是void、int、float等。 2. 基本类型的类没有超类,也没有实现任何接口。 3. 非基本类型的类对象是通过ldc指令加载到操作数栈中的。 而基本类型的类对象,虽然在Java代码中看
src/ch09/rtda/heap/ClassLoader.py:213
↓ 1 callersMethodload_primitive_class
有3点说明:1. void和基本类型的类名就是void、int、float等。 2. 基本类型的类没有超类,也没有实现任何接口。 3. 非基本类型的类对象是通过ldc指令加载到操作数栈中的。 而基本类型的类对象,虽然在Java代码中看
src/ch10/rtda/heap/ClassLoader.py:213
↓ 1 callersMethodload_primitive_classes
(self)
src/develop_code/rtda/heap/ClassLoader.py:207
↓ 1 callersMethodload_primitive_classes
(self)
src/ch09/rtda/heap/ClassLoader.py:207
↓ 1 callersMethodload_primitive_classes
(self)
src/ch10/rtda/heap/ClassLoader.py:207
↓ 1 callersMethodlog_frames
(thread)
src/develop_code/Interpreter.py:61
↓ 1 callersMethodlog_frames
(thread)
src/ch08/Interpreter.py:61
↓ 1 callersMethodlog_frames
(thread)
src/ch09/Interpreter.py:61
↓ 1 callersMethodlog_frames
(thread)
src/ch10/Interpreter.py:61
↓ 1 callersMethodlog_frames
(thread)
src/ch07/Interpreter.py:56
↓ 1 callersMethodlog_instruction
(frame, inst)
src/develop_code/Interpreter.py:69
↓ 1 callersMethodlog_instruction
(frame, inst)
src/ch08/Interpreter.py:69
↓ 1 callersMethodlog_instruction
(frame, inst)
src/ch09/Interpreter.py:69
↓ 1 callersMethodlog_instruction
(frame, inst)
src/ch10/Interpreter.py:69
↓ 1 callersMethodlog_instruction
(frame, inst)
src/ch07/Interpreter.py:64
↓ 1 callersMethodlookup_field
首先在C的字段中查找,如果找不到,在C的直接接口递归应用这个查找过程。 如果还是找不到,在C的超类中递归应用这个查找过程。 如果仍然找不到,则查找失败。 :param c: :param name: :
src/develop_code/rtda/heap/CpFieldRef.py:50
↓ 1 callersMethodlookup_field
首先在C的字段中查找,如果找不到,在C的直接接口递归应用这个查找过程。 如果还是找不到,在C的超类中递归应用这个查找过程。 如果仍然找不到,则查找失败。 :param c: :param name: :
src/ch08/rtda/heap/CpFieldRef.py:50
↓ 1 callersMethodlookup_field
首先在C的字段中查找,如果找不到,在C的直接接口递归应用这个查找过程。 如果还是找不到,在C的超类中递归应用这个查找过程。 如果仍然找不到,则查找失败。 :param c: :param name: :
src/ch09/rtda/heap/CpFieldRef.py:50
↓ 1 callersMethodlookup_field
首先在C的字段中查找,如果找不到,在C的直接接口递归应用这个查找过程。 如果还是找不到,在C的超类中递归应用这个查找过程。 如果仍然找不到,则查找失败。 :param c: :param name: :
src/ch10/rtda/heap/CpFieldRef.py:50
↓ 1 callersMethodlookup_field
首先在C的字段中查找,如果找不到,在C的直接接口递归应用这个查找过程。 如果还是找不到,在C的超类中递归应用这个查找过程。 如果仍然找不到,则查找失败。 :param c: :param name: :
src/ch06/rtda/heap/CpFieldRef.py:50
↓ 1 callersMethodlookup_field
首先在C的字段中查找,如果找不到,在C的直接接口递归应用这个查找过程。 如果还是找不到,在C的超类中递归应用这个查找过程。 如果仍然找不到,则查找失败。 :param c: :param name: :
src/ch07/rtda/heap/CpFieldRef.py:50
↓ 1 callersMethodlookup_interface_method
(iface, name, descriptor)
src/develop_code/rtda/heap/CpInterfaceMethodRef.py:45
↓ 1 callersMethodlookup_interface_method
(iface, name, descriptor)
src/ch08/rtda/heap/CpInterfaceMethodRef.py:45
↓ 1 callersMethodlookup_interface_method
(iface, name, descriptor)
src/ch09/rtda/heap/CpInterfaceMethodRef.py:45
↓ 1 callersMethodlookup_interface_method
(iface, name, descriptor)
src/ch10/rtda/heap/CpInterfaceMethodRef.py:45
↓ 1 callersMethodlookup_interface_method
(iface, name, descriptor)
src/ch07/rtda/heap/CpInterfaceMethodRef.py:45
↓ 1 callersMethodlookup_method
先从C的继承层次中找,如果找不到,就去C的接口中找。 :param clazz: :param name: :param descriptor: :return:
src/develop_code/rtda/heap/CpMethodRef.py:52
↓ 1 callersMethodlookup_method
先从C的继承层次中找,如果找不到,就去C的接口中找。 :param clazz: :param name: :param descriptor: :return:
src/ch08/rtda/heap/CpMethodRef.py:52
↓ 1 callersMethodlookup_method
先从C的继承层次中找,如果找不到,就去C的接口中找。 :param clazz: :param name: :param descriptor: :return:
src/ch09/rtda/heap/CpMethodRef.py:52
↓ 1 callersMethodlookup_method
先从C的继承层次中找,如果找不到,就去C的接口中找。 :param clazz: :param name: :param descriptor: :return:
src/ch10/rtda/heap/CpMethodRef.py:52
↓ 1 callersMethodlookup_method
先从C的继承层次中找,如果找不到,就去C的接口中找。 :param clazz: :param name: :param descriptor: :return:
src/ch07/rtda/heap/CpMethodRef.py:52
↓ 1 callersMethodloop
(thread, log_inst)
src/develop_code/Interpreter.py:35
↓ 1 callersMethodloop
(thread, log_inst)
src/ch08/Interpreter.py:35
↓ 1 callersMethodloop
(thread, log_inst)
src/ch09/Interpreter.py:35
↓ 1 callersMethodloop
(thread, bytecode)
src/ch05/Interpreter.py:34
↓ 1 callersMethodloop
(thread, log_inst)
src/ch10/Interpreter.py:35
↓ 1 callersMethodloop
(thread, bytecode)
src/ch06/Interpreter.py:29
↓ 1 callersMethodloop
(thread, log_inst)
src/ch07/Interpreter.py:30
↓ 1 callersMethodlor
(long a, long b)
java/code/jvmgo/book/ch07/test/instructions/MathTest.java:115
↓ 1 callersMethodlrem
(long a, long b)
java/code/jvmgo/book/ch07/test/instructions/MathTest.java:109
↓ 1 callersMethodlshl
(long a, long b)
java/code/jvmgo/book/ch07/test/instructions/MathTest.java:111
↓ 1 callersMethodlshr
(long a, long b)
java/code/jvmgo/book/ch07/test/instructions/MathTest.java:112
↓ 1 callersMethodlsub
(long a, long b)
java/code/jvmgo/book/ch07/test/instructions/MathTest.java:106
↓ 1 callersMethodlushr
(long a, long b)
java/code/jvmgo/book/ch07/test/instructions/MathTest.java:113
↓ 1 callersMethodlxor
(long a, long b)
java/code/jvmgo/book/ch07/test/instructions/MathTest.java:116
↓ 1 callersFunctionmain
(input_args=None)
src/develop_code/Main.py:18
↓ 1 callersFunctionmain
(input_args=None)
src/ch08/Main.py:18
↓ 1 callersFunctionmain
(input_args=None)
src/ch09/Main.py:18
↓ 1 callersFunctionmain
(input_args)
src/ch03/Main.py:18
↓ 1 callersFunctionmain
(input_args)
src/ch02/Main.py:17
↓ 1 callersFunctionmain
(input_args=None)
src/ch05/Main.py:18
↓ 1 callersFunctionmain
(input_args=None)
src/ch10/Main.py:18
↓ 1 callersFunctionmain
(input_args=None)
src/ch06/Main.py:18
↓ 1 callersFunctionmain
(input_args=None)
src/ch04/Main.py:17
↓ 1 callersFunctionmain
(input_args=None)
src/ch07/Main.py:18
↓ 1 callersMethodmain
(String[] args)
java/code/jvmgo/book/ch07/test/instructions/SwitchTest.java:7
↓ 1 callersMethodmain
(String[] args)
java/code/jvmgo/book/ch07/test/instructions/MathTest.java:7
↓ 1 callersMethodmul
()
java/code/jvmgo/book/ch07/test/instructions/MathTest.java:35
↓ 1 callersMethodmultiply
(double s)
java/code/jvmgo/book/ch07/Vector2D.java:17
↓ 1 callersMethodmultiply
(double s)
java/code/jvmgo/book/ch07/Vector.java:5
↓ 1 callersFunctionnative_method
(frame: Frame)
src/develop_code/native/Registry.py:15
↓ 1 callersFunctionnative_method
(frame: Frame)
src/ch09/native/Registry.py:15
↓ 1 callersFunctionnative_method
(frame: Frame)
src/ch10/native/Registry.py:15
↓ 1 callersMethodneg
()
java/code/jvmgo/book/ch07/test/instructions/MathTest.java:56
↓ 1 callersMethodnestedCatch
()
java/code/jvmgo/book/ch10/JvmsExample.java:33
↓ 1 callersMethodnew_attribute_info
(attr_name, attr_len, constant_pool)
src/develop_code/classfile/AttributeInfo.py:41
↓ 1 callersMethodnew_attribute_info
(attr_name, attr_len, constant_pool)
src/ch08/classfile/AttributeInfo.py:41
↓ 1 callersMethodnew_attribute_info
(attr_name, attr_len, constant_pool)
src/ch09/classfile/AttributeInfo.py:41
↓ 1 callersMethodnew_attribute_info
(attr_name, attr_len, constant_pool)
src/ch03/classfile/AttributeInfo.py:41
↓ 1 callersMethodnew_attribute_info
(attr_name, attr_len, constant_pool)
src/ch05/classfile/AttributeInfo.py:41
↓ 1 callersMethodnew_attribute_info
(attr_name, attr_len, constant_pool)
src/ch10/classfile/AttributeInfo.py:41
↓ 1 callersMethodnew_attribute_info
(attr_name, attr_len, constant_pool)
src/ch06/classfile/AttributeInfo.py:41
← previousnext →1,101–1,200 of 4,261, ranked by callers