MCPcopy Create free account

hub / github.com/chaoyangnz/gava / functions

Functions857 in github.com/chaoyangnz/gava

↓ 218 callersMethodpop
()
gava/vm_engine.go:770
↓ 168 callersMethodpush
(value Value)
gava/vm_engine.go:753
↓ 99 callersMethodRegisterNative
(qualifier string, function interface{})
gava/vm_natives.go:9
↓ 67 callersMethodThrow
(exception string, message string, args ...interface{})
gava/vm_engine.go:304
↓ 57 callersMethodIsNull
()
gava/value_reference.go:17
↓ 52 callersMethodClass
()
gava/value_reference.go:29
↓ 50 callersMethodreadU2
()
gava/class_file.go:26
↓ 39 callersFunctionFatal
(format string, args ...interface{})
gava/log.go:92
↓ 36 callersMethodstoreVar
(index uint, value Value)
gava/vm_engine.go:548
↓ 34 callersMethodClassObject
()
gava/type.go:23
↓ 31 callersMethodInfo
(format string, args ...interface{})
gava/log.go:74
↓ 29 callersMethodName
()
gava/type.go:21
↓ 28 callersMethodloadVar
(index uint)
gava/vm_engine.go:543
↓ 26 callersMethodSetInstanceVariableByName
(name string, descriptor string, value Value)
gava/value_reference.go:95
↓ 26 callersMethodcpUtf8
(index u2)
gava/class_file.go:254
↓ 23 callersMethodgetSecurityManager
Gets the system security interface. @return if a security manager has already been established for the current application, then that secur
example/src/java/lang/System.java:308
↓ 22 callersMethodCurrentThread
()
gava/vm_engine.go:53
↓ 21 callersMethodTrace
(format string, args ...interface{})
gava/log.go:62
↓ 21 callersMethodoffsetPc
(offset int16)
gava/vm_engine.go:527
↓ 20 callersFunctionBug
(format string, args ...interface{})
gava/log.go:99
↓ 20 callersMethodGetInstanceVariableByName
(name string, descriptor string)
gava/value_reference.go:85
↓ 20 callersMethodprint
(TreeNode root)
example/src/ds_util/TreeUtil.java:64
↓ 20 callersMethodtoNativeString
()
gava/value_reference.go:156
↓ 19 callersMethodArrayLength
()
gava/value_reference.go:126
↓ 19 callersMethodSetSystemProperty
(key string, value string)
gava/vm.go:13
↓ 19 callersMethodoperandIndex16
()
gava/vm_engine.go:608
↓ 17 callersMethodNewJavaLangString
* Create interned java.lang.String */
gava/vm_heap.go:147
↓ 17 callersMethodoperandOffset16
()
gava/vm_engine.go:617
↓ 16 callersMethodretrieveType
()
gava/value_reference.go:200
↓ 15 callersMethodInvokeMethod
* This method is used to run a method and return value (even void method return a void value) */
gava/vm_engine.go:188
↓ 15 callersMethodSetArrayElement
(index Int, value Value)
gava/value_reference.go:134
↓ 15 callersMethodcurrentFrame
()
gava/vm_engine.go:808
↓ 14 callersMethodDebug
(format string, args ...interface{})
gava/log.go:68
↓ 14 callersMethodget
(ListNode head, int i)
example/src/ds_util/ListUtil.java:33
↓ 13 callersMethodopcode
()
gava/vm_engine.go:556
↓ 13 callersMethodoperandIndex8
()
gava/vm_engine.go:601
↓ 12 callersMethodIsArray
()
gava/type_class.go:75
↓ 12 callersMethodisStatic
()
gava/type_class.go:335
↓ 11 callersMethodGetArrayElement
(index Int)
gava/value_reference.go:130
↓ 11 callersMethodResolveClass
* Always use current class's class loader to resolve class */
gava/vm_method_area.go:764
↓ 11 callersMethodResolvedClass
()
gava/type_class.go:386
↓ 10 callersMethodGetSystemProperty
(key string)
gava/vm.go:17
↓ 10 callersMethodNewArrayOfName
* arrayClassName is the full array class, not its component type */
gava/vm_heap.go:35
↓ 10 callersMethodindexOf
(frame *Frame)
gava/vm_engine.go:816
↓ 10 callersMethodstart
start thread
gava/vm_engine.go:343
↓ 9 callersMethodNewJavaLangClass
(type0 Type)
gava/vm_heap.go:184
↓ 9 callersMethodQualifier
()
gava/type_class.go:277
↓ 9 callersMethodreadU4
()
gava/class_file.go:20
↓ 9 callersMethodsleep
(millis int64)
gava/vm_engine.go:378
↓ 8 callersMethodIsStatic
()
gava/type_class.go:269
↓ 8 callersMethodNewObjectOfName
(className string)
gava/vm_heap.go:26
↓ 8 callersMethodcreateClass
(N string, Ld JavaLangClassLoader, triggerReason *ClassTriggerReason)
gava/vm_method_area.go:133
↓ 8 callersMethodgetClassLoader
(Class<?> caller)
example/src/java/lang/ClassLoader.java:1492
↓ 8 callersMethodprintWhitespaces
(int count)
example/src/ds_util/TreeUtil.java:136
↓ 8 callersFunctionrepeat
(str string, times int)
gava/utils.go:21
↓ 7 callersMethodFindMethod
** * Find field with its name and descriptor in the class hierarchy * Java doesn't permit a static and instance method with same name + signature *
gava/type_class.go:172
↓ 7 callersMethodcheckCreateClassLoader
()
example/src/java/lang/ClassLoader.java:255
↓ 7 callersMethodgetProperty
Gets the system property indicated by the specified key. <p> First, if there is a security manager, its <code>checkPropertyAccess</code> method is cal
example/src/java/lang/System.java:688
↓ 7 callersMethodloadLibrary0
(Class<?> fromClass, final File file)
example/src/java/lang/ClassLoader.java:1856
↓ 6 callersMethodExit
()
gava/object.go:71
↓ 6 callersMethodMonitor
()
gava/value_reference.go:32
↓ 6 callersMethodbuildTree
This way to build a tree is compatible with the leetcode Tree Node Visualizer <p>Print int the Leetcode way </p> @param arr @return
example/src/ds_util/TreeUtil.java:12
↓ 6 callersMethodlength
()
gava/class_file.go:42
↓ 6 callersMethodlog
(format string, args ...interface{})
gava/log.go:51
↓ 6 callersMethodnext
()
example/src/java/net/URLClassLoader.java:577
↓ 6 callersMethodsetw
(int length, String str)
example/src/ds_util/TreePrinter.java:26
↓ 6 callersMethodtoString
()
gava/value_reference.go:232
↓ 5 callersMethodFindField
** * Find field with its name and descriptor in the class hierarchy * Java doesn't permit a static and instance field with same name + signature */
gava/type_class.go:145
↓ 5 callersMethodGetMethod
Only find its own defined method
gava/type_class.go:159
↓ 5 callersMethodIsAssignableFrom
(class *Class)
gava/type_class.go:79
↓ 5 callersMethodIsInterface
()
gava/type_class.go:71
↓ 5 callersMethodIsTrue
()
gava/value_primitives.go:36
↓ 5 callersMethodNewLogger
(category string, level int, logfile string)
gava/log.go:22
↓ 5 callersMethodStderrPrintf
(format string, args ...interface{})
gava/vm_os.go:23
↓ 5 callersMethodassertObject
()
gava/value_reference.go:36
↓ 5 callersMethodgetInitiatedClass
(className string, classLoader JavaLangClassLoader)
gava/vm_method_area.go:89
↓ 5 callersMethodgetResource
Finds the resource with the given name. A resource is some data (images, audio, text, etc) that can be accessed by class code in a way that is indepe
example/src/java/lang/ClassLoader.java:1072
↓ 5 callersMethodinitialize
invoke <clinit> to execute initialization code
gava/vm_method_area.go:691
↓ 5 callersMethodpassReturn
(caller *Frame)
gava/vm_engine.go:703
↓ 5 callersMethodresolveClass
jvms 5.4.3.1
gava/vm_method_area.go:325
↓ 4 callersMethodArrayElements
()
gava/value_reference.go:122
↓ 4 callersMethodGetConstructor
(descriptor string)
gava/type_class.go:224
↓ 4 callersMethodNewArray
(arrayClass *Class, length Int)
gava/vm_heap.go:90
↓ 4 callersMethodNewObject
(class *Class)
gava/vm_heap.go:53
↓ 4 callersMethodResolvedField
()
gava/type_class.go:424
↓ 4 callersMethodResolvedMethod
()
gava/type_class.go:441
↓ 4 callersMethodassertArray
()
gava/value_reference.go:45
↓ 4 callersMethodcheckKey
(String key)
example/src/java/lang/System.java:811
↓ 4 callersMethodcheckName
(String name)
example/src/java/lang/ClassLoader.java:852
↓ 4 callersMethodgetSystemClassLoader
Returns the system class loader for delegation. This is the default delegation parent for new <tt>ClassLoader</tt> instances, and is typically the cl
example/src/java/lang/ClassLoader.java:1418
↓ 4 callersFunctionintCompatible
(value Value)
gava/instructions.go:248
↓ 4 callersMethodinterrupt
()
gava/vm_engine.go:368
↓ 4 callersFunctionjavaNameToBinaryName
(name JavaLangString)
gava/utils.go:64
↓ 4 callersMethodloadParameters
(callee *Method)
gava/vm_engine.go:652
↓ 4 callersMethodoffsetPc32
(offset int32)
gava/vm_engine.go:531
↓ 4 callersMethodoperandConst32
()
gava/vm_engine.go:590
↓ 4 callersMethodoperandOffset32
()
gava/vm_engine.go:627
↓ 4 callersMethodreadAttributes
read all attributes for class, field or method or attribute
gava/class_file.go:47
↓ 4 callersMethodreadU1s
(length uint32)
gava/class_file.go:36
↓ 3 callersMethodDo
()
gava/utils.go:34
next →1–100 of 857, ranked by callers