| /arkcompiler/runtime_core/static_core/runtime/include/ |
| D | class_linker-inl.h | 38 auto *ext = GetExtension(ctx); in GetClass() local 51 auto *ext = GetExtension(ctx); in AddClassRoot() local
|
| /arkcompiler/runtime_core/static_core/tests/vm-benchmarks/src/vmb/ |
| D | unit.py | 140 def src(self, *ext, die_on_zero_matches=False) -> Path: 150 def libs(self, *ext) -> Iterable[Path]: 158 def src_device(self, *ext) -> Path: 163 def libs_device(self, *ext) -> Iterable[Path]:
|
| D | tool.py | 189 def x_src(self, bu: BenchUnit, *ext) -> Path: 194 def x_libs(self, bu: BenchUnit, *ext) -> Iterable[Path]:
|
| /arkcompiler/runtime_core/static_core/runtime/tests/ |
| D | class_linker_test.cpp | 99 auto *ext = classLinker->GetExtension(ctx); in TEST_F() local 176 auto *ext = classLinker->GetExtension(panda_file::SourceLang::PANDA_ASSEMBLY); in TEST_F() local 213 static void TestPrimitiveClassRoots(const ClassLinkerExtension &ext) in TestPrimitiveClassRoots() 275 static void TestArrayClassRoots(const ClassLinkerExtension &ext) in TestArrayClassRoots() 296 auto *ext = classLinker->GetExtension(ctx); in TEST_F() local 516 auto *ext = classLinker->GetExtension(panda_file::SourceLang::PANDA_ASSEMBLY); in TEST_F() local 596 auto *ext = classLinker->GetExtension(panda_file::SourceLang::PANDA_ASSEMBLY); in TEST_F() local 645 auto *ext = classLinker->GetExtension(panda_file::SourceLang::PANDA_ASSEMBLY); in TEST_F() local 661 auto *ext = classLinker->GetExtension(panda_file::SourceLang::PANDA_ASSEMBLY); in GetMethod() local 705 auto *ext = classLinker->GetExtension(panda_file::SourceLang::PANDA_ASSEMBLY); in TEST_F() local [all …]
|
| D | interpreter_test_resolve_ctor_class.cpp | 99 auto *ext = classLinker->GetExtension(panda_file::SourceLang::PANDA_ASSEMBLY); in TEST_F() local
|
| D | getmethod_test.cpp | 93 auto *ext = classLinker->GetExtension(panda_file::SourceLang::PANDA_ASSEMBLY); in TEST_F() local
|
| /arkcompiler/ets_frontend/ets2panda/linter/src/lib/utils/functions/ |
| D | GetScriptKind.ts | 21 const ext = path.extname(fileName).toLowerCase(); constant
|
| /arkcompiler/ets_frontend/es2panda/test/type_extractor/testcases_with_assert/ |
| D | test-type-bind-instruction-with-branch.ts | 28 ext:string; property in FileItem
|
| /arkcompiler/ets_frontend/ets2panda/ |
| D | es2panda.cpp | 72 Compiler::Compiler(ScriptExtension ext) : Compiler(ext, DEFAULT_THREAD_COUNT, {}) {} in Compiler() 74 Compiler::Compiler(ScriptExtension ext, size_t threadCount) : Compiler(ext, threadCount, {}) {} in Compiler() 76 Compiler::Compiler(ScriptExtension ext, size_t threadCount, std::vector<util::Plugin> &&plugins) in Compiler()
|
| D | es2panda.h | 67 inline Language ToLanguage(ScriptExtension ext) in ToLanguage()
|
| /arkcompiler/ets_frontend/ets2panda/checker/typeChecker/ |
| D | TypeChecker.cpp | 29 bool RunTypeChecker(Checker *checker, ScriptExtension ext, ir::AstNode *node) in RunTypeChecker()
|
| /arkcompiler/runtime_core/static_core/runtime/ |
| D | field.cpp | 38 auto *ext = classLinker->GetExtension(ctx); in ResolveTypeClass() local
|
| D | class_linker.cpp | 154 for (auto &ext : extensions) { in ClassLinker() local 177 for (auto &ext : extensions_) { in Initialize() local 194 for (auto &ext : extensions_) { in InitializeRoots() local 408 const LanguageContext &ctx, const ClassLinkerExtension *ext) in LoadMethod() 499 auto *ext = GetExtension(ctx); in LoadMethods() local 809 auto *ext = GetExtension(ctx); in LoadBaseClass() local 892 ClassLinkerExtension *ext, ClassLinkerErrorHandler *errorHandler) in LoadClass() 1031 auto *ext = GetExtension(ctx); in LoadClass() local 1092 …lassLinker::LinkEntitiesAndInitClass(Class *klass, ClassInfo *classInfo, ClassLinkerExtension *ext, in LinkEntitiesAndInitClass() 1125 auto *ext = GetExtension(baseClass->GetSourceLang()); in BuildClass() local [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/runtime/ |
| D | ets_class_linker_extension.h | 104 static EtsClassLinkerExtension *FromCoreType(ClassLinkerExtension *ext) in FromCoreType()
|
| D | ets_class_linker.cpp | 38 ClassLinkerExtension *ext = classLinker_->GetExtension(panda_file::SourceLang::ETS); in Initialize() local
|
| /arkcompiler/runtime_core/static_core/plugins/ets/runtime/integrate/ |
| D | ets_ani_expo.cpp | 123 ClassLinkerExtension *ext = classLinker->GetExtension(SourceLanguage::ETS); in PreCreateExclusiveWorkerForTaskpool() local 144 ClassLinkerExtension *ext = classLinker->GetExtension(SourceLanguage::ETS); in DestroyExclusiveWorkerForTaskpoolIfExists() local
|
| /arkcompiler/ets_frontend/ets2panda/compiler/core/ |
| D | compilerImpl.h | 43 ScriptExtension ext; variable
|
| /arkcompiler/runtime_core/static_core/tests/vm-benchmarks/src/vmb/plugins/platforms/ |
| D | arkts_device.py | 79 def push_unit(self, bu: BenchUnit, *ext) -> None:
|
| /arkcompiler/ets_frontend/arkguard/src/transformers/rename/ |
| D | RenameFileNameTransformer.ts | 282 …const { path: filePathWithoutSuffix, ext: extension } = FileUtils.getFileSuffix(originalCompletePa… constant 309 …const { path: filePathWithoutSuffix, ext: extension } = FileUtils.getFileSuffix(pathAndExtension.p… constant
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/runtime/types/ |
| D | ets_runtime_linker_test.cpp | 99 auto *ext = static_cast<ark::ets::EtsClassLinkerExtension *>( in TEST_F() local
|
| /arkcompiler/ets_frontend/ets2panda/compiler/lowering/ |
| D | phase.h | 95 … PhaseManager(ScriptExtension ext, ArenaAllocator *allocator) : allocator_ {allocator}, ext_ {ext} in PhaseManager()
|
| /arkcompiler/ets_frontend/es2panda/ |
| D | es2panda.cpp | 34 Compiler::Compiler(ScriptExtension ext) : Compiler(ext, DEFAULT_THREAD_COUNT) {} in Compiler() 36 Compiler::Compiler(ScriptExtension ext, size_t threadCount) in Compiler()
|
| /arkcompiler/ets_frontend/ets2panda/linter/homecheck/src/utils/common/ |
| D | FileUtils.ts | 246 const ext = path.extname(filePath).toLowerCase(); constant
|
| /arkcompiler/ets_frontend/ets2panda/linter/src/lib/ts-compiler/ |
| D | ResolveSdks.ts | 142 const ext = exts[i]; constant 295 const ext = path.extname(filePath); constant
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/runtime/ |
| D | ets_vm_test.cpp | 175 EtsClassLinkerExtension *ext = classLinker->GetEtsClassLinkerExtension(); in TEST_F() local
|