/arkcompiler/ets_frontend/es2panda/compiler/core/emitter/ |
D | moduleRecordEmitter.cpp | 43 panda::pandasm::LiteralArray::Literal localName = { in GenRegularImportEntries() local 65 panda::pandasm::LiteralArray::Literal localName = { in GenNamespaceImportEntries() local 84 panda::pandasm::LiteralArray::Literal localName = { in GenLocalExportEntries() local
|
/arkcompiler/ets_frontend/ets2panda/varbinder/ |
D | declaration.h | 311 explicit ImportDecl(util::StringView importName, util::StringView localName) in ImportDecl() 316 explicit ImportDecl(util::StringView importName, util::StringView localName, ir::AstNode *node) in ImportDecl() 343 explicit ExportDecl(util::StringView exportName, util::StringView localName) in ExportDecl() 348 explicit ExportDecl(util::StringView exportName, util::StringView localName, ir::AstNode *node) in ExportDecl()
|
D | ETSBinder.cpp | 590 const auto &localName = [this, importSpecifier, &imported, &importPath]() { in AddImportSpecifiersToTopBindings() local
|
/arkcompiler/ets_frontend/es2panda/parser/module/ |
D | sourceTextModuleRecord.cpp | 192 util::StringView localName = parser::SourceTextModuleRecord::DEFAULT_LOCAL_NAME; in RemoveDefaultLocalExportEntry() local 196 int SourceTextModuleRecord::GetModuleRequestIdx(const util::StringView localName) in GetModuleRequestIdx()
|
/arkcompiler/ets_frontend/ts2panda/src/ |
D | pandasm.ts | 207 public localName: string; property in RegularImportEntry 219 public localName: string; property in NamespaceImportEntry 229 public localName: string; property in LocalExportEntry
|
D | ecmaModule.ts | 28 localName: string | undefined; property in Entry
|
/arkcompiler/ets_runtime/ecmascript/jspandafile/accessor/ |
D | module_data_accessor.cpp | 52 JSMutableHandle<JSTaggedValue> localName(thread, globalConstants->GetUndefined()); in EnumerateImportEntry() local 114 JSHandle<JSTaggedValue> localName(thread, factory->GetRawStringFromStringTable(sd)); in EnumerateLocalExportEntry() local
|
/arkcompiler/ets_runtime/ecmascript/module/ |
D | js_module_manager.cpp | 674 JSTaggedValue ModuleManager::GetModuleNamespace(JSTaggedValue localName) in GetModuleNamespace() 680 JSTaggedValue ModuleManager::GetModuleNamespace(JSTaggedValue localName, JSTaggedValue currentFunc) in GetModuleNamespace() 686 JSTaggedValue ModuleManager::GetModuleNamespaceInternal(JSTaggedValue localName, JSTaggedValue curr… in GetModuleNamespaceInternal()
|
D | js_module_source_text.cpp | 696 JSMutableHandle<JSTaggedValue> localName(thread, globalConstants->GetUndefined()); in ModuleDeclarationEnvironmentSetup() local 1429 JSTaggedValue localName = ee->GetLocalName(); in FindByExport() local 1616 JSMutableHandle<JSTaggedValue> localName(thread, thread->GlobalConstants()->GetUndefined()); in ResolveLocalExport() local
|
/arkcompiler/ets_frontend/es2panda/parser/ |
D | statementParser.cpp | 2226 auto localName = specifier->AsImportSpecifier()->Local()->Name(); in AddImportEntryItemForImportSpecifier() local 2243 auto localName = specifier->AsImportDefaultSpecifier()->Local()->Name(); in AddImportEntryItemForImportDefaultOrNamespaceSpecifier() local 2250 auto localName = specifier->AsImportNamespaceSpecifier()->Local()->Name(); in AddImportEntryItemForImportDefaultOrNamespaceSpecifier() local 2294 auto localName = exportSpecifier->Local()->Name(); in AddExportNamedEntryItem() local 2357 util::StringView localName = parser::SourceTextModuleRecord::DEFAULT_LOCAL_NAME; in AddExportDefaultEntryItem() local
|
/arkcompiler/ets_frontend/es2panda/binder/ |
D | scope.cpp | 508 …eScope::ConvertLocalVariableToModuleVariable(ArenaAllocator *allocator, util::StringView localName) in ConvertLocalVariableToModuleVariable()
|
D | binder.cpp | 217 auto localName = it->AsExportSpecifier()->Local()->Name(); in ValidateExportDecl() local
|
/arkcompiler/ets_frontend/ts2panda/ts2abc/ |
D | ts2abc.cpp | 1152 panda::pandasm::LiteralArray::Literal localName = { in ParseRegularImportEntries() local 1174 panda::pandasm::LiteralArray::Literal localName = { in ParseNamespaceImportEntries() local 1192 panda::pandasm::LiteralArray::Literal localName = { in ParseLocalExportEntries() local
|
/arkcompiler/ets_runtime/ecmascript/debugger/ |
D | debugger_api.cpp | 455 JSTaggedValue localName = ee->GetLocalName(); in GetImportModule() local 500 std::string localName = EcmaStringAccessor(localKey).ToStdString(); in GetModuleVariableIndex() local 770 JSTaggedValue localName = ee->GetLocalName(); in GetImportVariables() local
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
D | bytecode_info_collector.cpp | 653 JSHandle<JSTaggedValue> localName(thread, currentExportEntry->GetLocalName()); in CollectExportIndexs() local
|
/arkcompiler/ets_runtime/ecmascript/module/tests/ |
D | ecma_module_test.cpp | 151 CString localName = "foo"; in HWTEST_F_L0() local
|
/arkcompiler/ets_runtime/ecmascript/stubs/ |
D | runtime_stubs-inl.h | 1225 JSTaggedValue RuntimeStubs::RuntimeGetModuleNamespace(JSThread *thread, JSTaggedValue localName) in RuntimeGetModuleNamespace() 1230 JSTaggedValue RuntimeStubs::RuntimeGetModuleNamespace(JSThread *thread, JSTaggedValue localName, in RuntimeGetModuleNamespace()
|
D | runtime_stubs.cpp | 1616 JSTaggedValue localName = GetArg(argv, argc, 0); // 0: means the zeroth parameter in DEF_RUNTIME_STUBS() local
|
/arkcompiler/ets_runtime/ecmascript/ |
D | object_factory.cpp | 4329 const JSHandle<JSTaggedValue> &localName) in NewImportEntry() 4348 const JSHandle<JSTaggedValue> &localName, const uint32_t index) in NewLocalExportEntry()
|
/arkcompiler/ets_runtime/ecmascript/interpreter/ |
D | slow_runtime_stub.cpp | 1163 JSTaggedValue SlowRuntimeStub::GetModuleNamespace(JSThread *thread, JSTaggedValue localName) in GetModuleNamespace()
|
D | interpreter-inl.h | 6049 auto localName = GET_STR_FROM_CACHE(stringId); in RunInternal() local
|
D | interpreter_assembly.cpp | 4167 auto localName = ConstantPool::GetStringFromCache(thread, constpool, stringId); in HandleDeprecatedGetmodulenamespacePrefId32() local
|
/arkcompiler/ets_frontend/es2panda/test/compiler/js/ |
D | cocos_worker_test.js | 7327 localName: null, property
|