Home
last modified time | relevance | path

Searched defs:name (Results 1 – 25 of 325) sorted by relevance

12345678910>>...13

/arkcompiler/toolchain/docs/
Ddebugger-and-profiler-tools-introduction.md10 ### 断点调
14 ### 单步调
17 ### Watch功
20 ### 多实例调
23 ### 热重
26 ### 混合调
30 ### 性能调
33 ### 内存调
40 ### 附
/arkcompiler/ets_runtime/ecmascript/
Druntime_call_id.h1084 #define INTERPRETER_CALLER_ID(name) INTERPRETER_ID_##name, argument
1085 #define RUNTIME_CALLER_ID(name) RUNTIME_ID_##name, argument
1088 #define BUILTINS_API_ID(class, name) BUILTINS_ID_##class##_##name, argument
1090 #define ABSTRACT_OPERATION_ID(class, name) ABSTRACT_ID_##class##_##name, argument
1092 #define MEM_ALLOCATE_AND_GC_ID(name) MEM_ID##name, argument
1098 #define DEF_RUNTIME_ID(name) RUNTIME_ID_##name, argument
1106 #define INTERPRETER_TRACE(thread, name) … argument
1112 #define RUNTIME_TRACE(thread, name) … argument
1118 #define RUNTIME_TRACE(thread, name) … argument
1124 #define INTERPRETER_TRACE(thread, name) static_cast<void>(0) // NOLINT(cppcoreguidelines-macro-usag… argument
[all …]
Dmessage_string.cpp26 #define DEF_COMMON_MESSAGE(name, string) (string), argument
29 #define DEF_ASM_INTERPRETER_STUB_MESSAGE(name) #name, argument
34 #define DEF_ASM_INTERPRETER_STUB_MESSAGE_DYN(name, ...) DEF_ASM_INTERPRETER_STUB_MESSAGE(name) argument
37 #define DEF_BUILTINS_STUB_MESSAGE(name) "Builtins Stub "#name, argument
42 #define DEF_ISHEAPOBJECT_MESSAGE(name) #name"DebugCheck IR:line:%d", argument
Dmessage_string.h64 #define DEF_MESSAGE_ID(name, string) Message_##name, argument
67 #define DEF_MESSAGE_ID(name) Message_##name, argument
71 #define DEF_MESSAGE_ID_DYN(name, ...) DEF_MESSAGE_ID(name) argument
92 #define GET_MESSAGE_STRING_ID(name) static_cast<int>((MessageString::MessageId::Message_##name)) argument
/arkcompiler/ets_runtime/docs/
Ddevelopment-example.md10 ### Preparations
38 ### Running **hello-world.js**
75 ### Disassembling **hello-world.abc**
122 ### Preparations
138 ### Running Test262
243 ### Example
/arkcompiler/ets_runtime/test/moduletest/ldmodulensbyic/
Danimals.js16 name : "panda" property
20 name : "lion " property
24 name : "monkey" property
/arkcompiler/ets_frontend/es2panda/binder/
Ddeclaration.h140 explicit MultiDecl(ArenaAllocator *allocator, util::StringView name) in MultiDecl()
161 …explicit EnumLiteralDecl(ArenaAllocator *allocator, util::StringView name, bool isExport, bool isC… in EnumLiteralDecl()
197 …explicit InterfaceDecl(ArenaAllocator *allocator, util::StringView name) : MultiDecl(allocator, na… in InterfaceDecl()
217 explicit PropertyDecl(util::StringView name) : Decl(name) {} in PropertyDecl()
227 explicit MethodDecl(util::StringView name) : Decl(name) {} in MethodDecl()
237 explicit EnumDecl(util::StringView name) : Decl(name) {} in EnumDecl()
247 explicit TypeAliasDecl(util::StringView name) : Decl(name) {} in TypeAliasDecl()
257 explicit NamespaceDecl(ArenaAllocator *allocator, util::StringView name) in NamespaceDecl()
272 explicit VarDecl(util::StringView name) : Decl(name) {} in VarDecl()
282 explicit LetDecl(util::StringView name) : Decl(name) {} in LetDecl()
[all …]
DtsBinding.h29 explicit TSBinding(ArenaAllocator *allocator, util::StringView name) in TSBinding()
35 static std::string ToTSBinding(util::StringView name) in ToTSBinding()
/arkcompiler/runtime_core/assembler/tests/
Dassembler_mangling_test.cpp45 std::string name = "Asm.main"; variable
58 std::string name = "Asm.main:type1;type2;type3;type4;"; variable
77 std::string name = "Asm.main"; variable
90 std::string name = "Asm.main:(type1,type2,type3,type4)"; variable
Dmangling_tests.cpp33 std::string name = "Asm.main"; in TEST() local
39 std::string name = "Asm.main:type1;type2;type3;type4;"; in TEST() local
51 std::string name = "Asm.main"; in TEST() local
57 std::string name = "Asm.main:(type1,type2,type3,type4)"; in TEST() local
/arkcompiler/ets_frontend/es2panda/test/compiler/js/language/destructuring/
Dtest-obj-expr-destructring-in-for.js16 let robotA = {name: "mower", skill: "mowing"}; property
20 for ({name: nameA} = robotA, i = 0; i < 1; i++) { property
24 for ({name: nameA = "name"} = robotA, i = 0; i < 1; i++) { property
/arkcompiler/ets_frontend/
DREADME_zh.md55 ### 使用说明<a name="section33105542504"></a>
57 #### es2panda使用方式 ####
210 #### ts2panda使用方式 ####
DREADME.md55 ### Usage Guidelines<a name="section33105542504"></a>
57 #### Usage For Es2panda ####
210 #### Usage For Ts2panda ####
/arkcompiler/ets_runtime/ecmascript/compiler/
Drt_call_signature.h26 #define DEF_RUNTIME_STUB_ID(name) ID_##name, argument
33 #define DEF_RUNTIME_STUB_ID(name) NOGCSTUB_ID_##name, argument
41 #define DEF_RUNTIME_STUB_ID(name) ASM_STUB_ID_##name, argument
66 #define DEF_STUB_NAME(name) case ID_##name: { return std::string("RTStub_") + #name; } in GetRTName() argument
94 #define RTSTUB_ID(name) kungfu::RuntimeStubCSigns::ID_##name argument
Dassembler_module.cpp265 #define DECLARE_JSCALL_TRAMPOLINE_X64_GENERATE(name) \ argument
273 #define DECLARE_FAST_CALL_TRAMPOLINE_X64_GENERATE(name) \ argument
281 #define DECLARE_ASM_INTERPRETER_TRAMPOLINE_X64_GENERATE(name) \ argument
290 #define DECLARE_JSCALL_TRAMPOLINE_AARCH64_GENERATE(name) … argument
297 #define DECLARE_FAST_CALL_TRAMPOLINE_AARCH64_GENERATE(name) … argument
304 #define DECLARE_ASM_INTERPRETER_TRAMPOLINE_AARCH64_GENERATE(name) … argument
Drt_call_signature.cpp29 #define INIT_SIGNATURES(name) \ in Initialize() argument
42 #define INIT_ASM_SIGNATURES(name) \ in Initialize() argument
57 #define INIT_ASM_SIGNATURES(name) \ in GetASMCSigns() argument
Dbc_call_signature.cpp29 #define INIT_SIGNATURES(name) \ in Initialize() argument
41 #define INIT_SIGNATURES_DYN(name, ...) \ in Initialize() argument
48 #define INIT_HELPER_SIGNATURES(name) \ in Initialize() argument
/arkcompiler/runtime_core/
Dbundle.json2 "name": "@arkcompiler/runtime_core", string
14 "name": "runtime_core", string
37 "name": "//arkcompiler/runtime_core/libpandafile:arkfile_header_deps", string
44 "name": "//arkcompiler/runtime_core/libpandafile:libarkfile_static", string
51 "name": "//arkcompiler/runtime_core/libpandabase:libarkbase_static", string
58 "name": "//arkcompiler/runtime_core/assembler:libarkassembler_frontend_static", string
65 "name": "//arkcompiler/runtime_core/libpandabase:libarkbase_frontend_static", string
72 "name": "//arkcompiler/runtime_core/libpandafile:libarkfile_frontend_static", string
79 … "name": "//arkcompiler/runtime_core/libziparchive:libarkziparchive_frontend_static", string
86 … "name": "//arkcompiler/runtime_core/bytecode_optimizer:libarkbytecodeopt_frontend_static", string
[all …]
DREADME.md71 ### Usage Guidelines<a name="section1312121216216"></a>
73 #### Assembler ark\_asm
99 #### Disassembler ark\_disasm
DREADME_zh.md70 ### 使用说明<a name="section1312121216216"></a>
72 #### 汇编器工具概
96 #### 反汇编器工具概
/arkcompiler/ets_frontend/es2panda/test/
Dtest262harness.js30 getGlobal(name) { argument
33 setGlobal(name, value) { argument
53 $262.getGlobal = function (name) { argument
56 $262.setGlobal = function (name, value) { argument
/arkcompiler/toolchain/tooling/backend/
Ddebugger_executor.cpp39 Local<JSValueRef> name = runtimeCallInfo->GetCallArgRef(0); in DebuggerGetValue() local
70 Local<JSValueRef> name = runtimeCallInfo->GetCallArgRef(0); in DebuggerSetValue() local
88 …buggerExecutor::GetValue(const EcmaVM *vm, const FrameHandler *frameHandler, Local<StringRef> name) in GetValue()
112 Local<StringRef> name, Local<JSValueRef> value) in SetValue()
138 Local<StringRef> name) in GetLocalValue()
152 Local<StringRef> name, Local<JSValueRef> value) in SetLocalValue()
166 Local<StringRef> name) in GetLexicalValue()
180 Local<StringRef> name, Local<JSValueRef> value) in SetLexicalValue()
193 Local<JSValueRef> DebuggerExecutor::GetGlobalValue(const EcmaVM *vm, Local<StringRef> name) in GetGlobalValue()
198 bool DebuggerExecutor::SetGlobalValue(const EcmaVM *vm, Local<StringRef> name, Local<JSValueRef> va… in SetGlobalValue()
[all …]
/arkcompiler/runtime_core/assembler/
Dassembly-type.cpp40 panda_file::Type::TypeId Type::GetId(std::string_view name, bool ignore_primitive) in GetId()
44 #define PANDATYPE(name, inst_code) {std::string_view(name), panda_file::Type::TypeId::inst_code}, in GetId() argument
64 std::string name(component_name); in GetName() local
100 Type Type::FromName(std::string_view name, bool ignore_primitive) in FromName()
117 bool Type::IsStringType(const std::string &name, panda::panda_file::SourceLang lang) in IsStringType()
128 bool Type::IsPandaPrimitiveType(const std::string &name) in IsPandaPrimitiveType()
Dmangling.h33 inline std::string DeMangleName(const std::string &name) in DeMangleName()
42 inline std::string MangleFunctionName(const std::string &name, const std::vector<pandasm::Function:… in MangleFunctionName()
55 inline std::string MangleFieldName(const std::string &name, const pandasm::Type &type) in MangleFieldName()
63 inline std::string GetFunctionSignatureFromName(std::string name, in GetFunctionSignatureFromName()
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/
DinfinitelyExpandingTypes3.ts28 name: string; property
32 name: string; property

12345678910>>...13