Lines Matching full:method
23 #include "ecmascript/method.h"
35 virtual void BytecodePcChanged(JSThread *thread, JSHandle<Method> method,
38 virtual bool HandleDebuggerStmt(JSHandle<Method> method, uint32_t bcOffset) = 0;
43 virtual void MethodEntry(JSHandle<Method> method, JSHandle<JSTaggedValue> envHandle) = 0;
44 virtual void MethodExit(JSHandle<Method> method) = 0;
77 void BytecodePcChangedEvent(JSThread *thread, Method *method, uint32_t bcOffset) const in BytecodePcChangedEvent() argument
80 JSHandle<Method> methodHandle(thread, method); in BytecodePcChangedEvent()
86 void DebuggerStmtEvent(JSThread *thread, Method *method, uint32_t bcOffset) const in DebuggerStmtEvent() argument
88 JSHandle<Method> methodHandle(thread, method); in DebuggerStmtEvent()
121 void MethodEntryEvent(JSThread *thread, Method *method, JSTaggedValue env) const in MethodEntryEvent() argument
123 JSHandle<Method> methodHandle(thread, method); in MethodEntryEvent()
129 void MethodExitEvent(JSThread *thread, Method *method) const in MethodExitEvent() argument
131 JSHandle<Method> methodHandle(thread, method); in MethodExitEvent()