Home
last modified time | relevance | path

Searched defs:method (Results 1 – 25 of 132) sorted by relevance

123456

/arkcompiler/runtime_core/compiler/optimizer/ir/
Druntime_interface.h74 virtual BinaryFilePtr GetBinaryFileForMethod([[maybe_unused]] MethodPtr method) const in GetBinaryFileForMethod()
79 virtual MethodId GetMethodId([[maybe_unused]] MethodPtr method) const in GetMethodId()
85 virtual size_t GetMethodTotalArgumentsCount([[maybe_unused]] MethodPtr method) const in GetMethodTotalArgumentsCount()
93 virtual size_t GetMethodArgumentsCount([[maybe_unused]] MethodPtr method) const in GetMethodArgumentsCount()
97 virtual size_t GetMethodRegistersCount([[maybe_unused]] MethodPtr method) const in GetMethodRegistersCount()
101 virtual const uint8_t *GetMethodCode([[maybe_unused]] MethodPtr method) const in GetMethodCode()
105 virtual size_t GetMethodCodeSize([[maybe_unused]] MethodPtr method) const in GetMethodCodeSize()
110 virtual SourceLanguage GetMethodSourceLanguage([[maybe_unused]] MethodPtr method) const in GetMethodSourceLanguage()
115 virtual std::string GetClassNameFromMethod([[maybe_unused]] MethodPtr method) const in GetClassNameFromMethod()
120 virtual ClassPtr GetClass([[maybe_unused]] MethodPtr method) const in GetClass()
[all …]
/arkcompiler/runtime_core/bytecode_optimizer/
Druntime_adapter.h40 BinaryFilePtr GetBinaryFileForMethod([[maybe_unused]] MethodPtr method) const override in GetBinaryFileForMethod()
50 MethodId GetMethodId(MethodPtr method) const override in GetMethodId()
55 size_t GetMethodTotalArgumentsCount(MethodPtr method) const override in GetMethodTotalArgumentsCount()
73 size_t GetMethodRegistersCount(MethodPtr method) const override in GetMethodRegistersCount()
83 const uint8_t *GetMethodCode(MethodPtr method) const override in GetMethodCode()
93 size_t GetMethodCodeSize(MethodPtr method) const override in GetMethodCodeSize()
103 compiler::SourceLanguage GetMethodSourceLanguage(MethodPtr method) const override in GetMethodSourceLanguage()
115 size_t GetClassIdForMethod(MethodPtr method) const override in GetClassIdForMethod()
122 std::string GetClassNameFromMethod(MethodPtr method) const override in GetClassNameFromMethod()
131 std::string GetMethodName(MethodPtr method) const override in GetMethodName()
[all …]
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/
DbaseTypeAfterDerivedType.ts27 method(...args: any[]): void; method
31 method(...args: any[]): void { } method in Derived2
35 method(...args: any[]): void; method
DcontextualTypeShouldBeLiteral.ts30 method(): void; method
67 method(): void; method
73 method(): void; method
141 method(): void; method
148 method(): void; method
DbaseTypeWrappingInstantiationChain.ts30 method(t: T4) { } method in Parameter
51 public method(t: Wrapper<T1>) { } method in C
DinterfaceClassMerging.ts41 method(a: number) { method in Bar
81 method(a: number): string; variable
DrequiredInitializedParameter3.ts27 method(a = 0, b?) { } method in C1
DclassWithProtectedProperty.ts43 method() { method in D
DclassConstructorAccessibility4.ts41 method() { method in D
DsuperMethodCall.ts26 method() { method in Derived
DunusedLocalsAndParametersOverloadSignatures.ts38 method(details: number, message: string, ...args: any[]): void; method in C
DthisConditionalOnMethodReturnOfGenericInstance.ts26 method(): string | (this extends C ? undefined : null) { method in B
DconstraintCheckInGenericBaseTypeReference.ts32 public method() { method in TypeArg
DasyncMethodWithSuper_es6.ts479 method(x: string): any {} method in Base
484 static method(x: string): any {} method in Base
/arkcompiler/ets_runtime/ecmascript/debugger/
Dnotification_manager.h68 void BytecodePcChangedEvent(JSThread *thread, Method *method, uint32_t bcOffset) const in BytecodePcChangedEvent()
77 void DebuggerStmtEvent(JSThread *thread, Method *method, uint32_t bcOffset) const in DebuggerStmtEvent()
105 void MethodEntryEvent(JSThread *thread, Method *method) const in MethodEntryEvent()
112 void MethodExitEvent(JSThread *thread, Method *method) const in MethodExitEvent()
Djs_debugger.cpp75 void JSDebugger::BytecodePcChanged(JSThread *thread, JSHandle<Method> method, uint32_t bcOffset) in BytecodePcChanged()
86 bool JSDebugger::HandleBreakpoint(JSHandle<Method> method, uint32_t bcOffset) in HandleBreakpoint()
119 bool JSDebugger::HandleDebuggerStmt(JSHandle<Method> method, uint32_t bcOffset) in HandleDebuggerStmt()
131 void JSDebugger::HandleExceptionThrowEvent(const JSThread *thread, JSHandle<Method> method, uint32_… in HandleExceptionThrowEvent()
142 bool JSDebugger::HandleStep(JSHandle<Method> method, uint32_t bcOffset) in HandleStep()
153 std::optional<JSBreakpoint> JSDebugger::FindBreakpoint(JSHandle<Method> method, uint32_t bcOffset) … in FindBreakpoint()
210 void JSDebugger::MethodEntry(JSHandle<Method> method) in MethodEntry()
223 void JSDebugger::MethodExit([[maybe_unused]] JSHandle<Method> method) in MethodExit()
/arkcompiler/ets_frontend/es2panda/test/parser/js/
Dtest-class-expression.js20 method() { method in cls1
30 method() { } method in cls2
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/caseInsensitiveFileSystemWithCapsImportTypeDeclarations/
Dindex.ts24 method () { method in Broken
/arkcompiler/ets_frontend/es2panda/test/parser/ts/
Dtest-class-definiton19.ts18 method(this: this, ...args: number[]) {} method in C
/arkcompiler/runtime_core/libpandafile/
Ddebug_info_extractor.cpp257 for (const auto &method : methods_) { in GetLineNumberTable() local
269 for (const auto &method : methods_) { in GetColumnNumberTable() local
281 for (const auto &method : methods_) { in GetLocalVariableTable() local
293 for (const auto &method : methods_) { in GetParameterInfo() local
305 for (const auto &method : methods_) { in GetSourceFile() local
315 for (const auto &method : methods_) { in GetSourceCode() local
327 for (const auto &method : methods_) { in GetMethodIdList() local
/arkcompiler/ets_runtime/ecmascript/dfx/vmstat/
Dfunction_call_timer.cpp38 void FunctionCallTimer::StopCount(Method *method) in StopCount()
52 CString FunctionCallTimer::GetFullName(Method *method) in GetFullName()
60 void FunctionCallTimer::InitialStatAndTimer(Method *method, size_t methodId, bool isAot) in InitialStatAndTimer()
/arkcompiler/runtime_core/compiler/tests/
Dprofiling_runner_test.cpp67 auto method = runner.GetMethod("foo"); in TEST_F() local
/arkcompiler/ets_runtime/ecmascript/
Djs_function.h45 JSTaggedValue method = GetMethod(); in SetCallNapi() local
51 JSTaggedValue method = GetMethod(); in IsCallNapi() local
57 JSTaggedValue method = GetMethod(); in GetFunctionKind() local
/arkcompiler/ets_runtime/ecmascript/compiler/
Dbytecode_info_collector.cpp136 MethodLiteral *method = jsPandaFile_->GetMethodLiteralByIndex(index.GetOffset()); in ProcessClasses() local
152 void BytecodeInfoCollector::CollectClassLiteralInfo(const MethodLiteral *method, in CollectClassLiteralInfo()
179 void BytecodeInfoCollector::CollectInnerFuncType(const MethodLiteral *method, uint32_t innerMethodI… in CollectInnerFuncType()
194 void BytecodeInfoCollector::IterateLiteral(const MethodLiteral *method, in IterateLiteral()
234 MethodLiteral *method, std::vector<std::string> &classNameVec, const CString &recordName, in CollectMethodPcsFromBC()
307 void BytecodeInfoCollector::CollectInnerMethods(const MethodLiteral *method, in CollectInnerMethods()
355 void BytecodeInfoCollector::CollectInnerMethodsFromLiteral(const MethodLiteral *method, uint64_t in… in CollectInnerMethodsFromLiteral()
364 void BytecodeInfoCollector::NewLexEnvWithSize(const MethodLiteral *method, uint64_t numOfLexVars) in NewLexEnvWithSize()
380 void BytecodeInfoCollector::CollectInnerMethodsFromNewLiteral(const MethodLiteral *method, in CollectInnerMethodsFromNewLiteral()
391 const MethodLiteral *method, std::vector<std::string> &classNameVec, int32_t bcIndex, in CollectMethodInfoFromBC()
[all …]
Dprofiler_stub_builder.cpp62 GateRef method = Load(VariableType::JS_ANY(), func, IntPtr(JSFunctionBase::METHOD_OFFSET)); in ProfileOpType() local
97 … GateRef method = Load(VariableType::JS_ANY(), func, IntPtr(JSFunctionBase::METHOD_OFFSET)); in ProfileOpType() local
115 GateRef method = Load(VariableType::JS_ANY(), func, IntPtr(JSFunctionBase::METHOD_OFFSET)); in ProfileDefineClass() local
158 GateRef method = Load(VariableType::JS_ANY(), func, IntPtr(JSFunctionBase::METHOD_OFFSET)); in ProfileCreateObject() local
179 GateRef method = Load(VariableType::JS_ANY(), func, IntPtr(JSFunctionBase::METHOD_OFFSET)); in ProfileObjLayout() local
209 … GateRef method = Load(VariableType::JS_ANY(), func, IntPtr(JSFunctionBase::METHOD_OFFSET)); in ProfileCall() local

123456