| /arkcompiler/ets_frontend/ets2panda/test/compiler/ts/ |
| D | tupleAssignability.ts | 20 var tuple4: [typeof tuple1, string] = [[], "foo"]; variable 24 var tuple7: [number, string] | number | string = [5, "foo"]; variable 27 var tuple9: [number, string | number, boolean | string]; variable 28 var tuple10: [number, string, string]; variable 66 var tuple19: [number, string] | [number, string]; variable 69 var tuple22: [number, string]; variable 77 var tuple24: number[][] | string[][] | [[number, number], [string, string]]; variable 82 var tuple25: number[] | [string, string] | number; variable
|
| /arkcompiler/ets_frontend/es2panda/test/parser/ts/type_checker/ |
| D | tupleAssignability.ts | 20 var tuple4: [typeof tuple1, string] = [[], "foo"]; variable 24 var tuple7: [number, string] | number | string = [5, "foo"]; variable 27 var tuple9: [number, string | number, boolean | string]; variable 28 var tuple10: [number, string, string]; variable 66 var tuple19: [number, string] | [number, string]; variable 69 var tuple22: [number, string]; variable 77 var tuple24: number[][] | string[][] | [[number, number], [string, string]]; variable 82 var tuple25: number[] | [string, string] | number; variable
|
| D | tupleAssignability23.ts | 17 var a: [[number, string], [number, string]] = [[1, "foo"], [2, 3]]; variable
|
| D | tupleAssignability8.ts | 17 var a: [number, string, boolean, number, string] = [1, "foo", true, 5, 6] variable
|
| /arkcompiler/ets_frontend/es2panda/aot/ |
| D | main.cpp | 61 static void DumpPandaFileSizeStatistic(std::map<std::string, size_t> &stat) in DumpPandaFileSizeStatistic() 82 static void DumpPandaFileSizePctStatistic(std::map<std::string, size_t> &stat) in DumpPandaFileSizePctStatistic() 111 static bool GenerateProgramsByWorkers(const std::map<std::string, panda::es2panda::util::ProgramCac… in GenerateProgramsByWorkers() 132 static void DumpProgramInfos(const std::map<std::string, panda::es2panda::util::ProgramCache*> &pro… in DumpProgramInfos() 160 static bool GenerateProgram(std::map<std::string, panda::es2panda::util::ProgramCache*> &programsIn… in GenerateProgram() 162 … const std::map<std::string, std::unordered_set<std::string>> &resolvedDepsRelation) in GenerateProgram() 207 … std::map<std::string, panda::es2panda::util::ProgramCache*> programsInfo) in CheckMergeModeConsistency() 249 static bool GenerateAbcFiles(std::map<std::string, panda::es2panda::util::ProgramCache*> &programsI… in GenerateAbcFiles() 251 … const std::map<std::string, std::unordered_set<std::string>> &resolvedDepsRelation) in GenerateAbcFiles() 267 static bool ResolveDepsRelations(const std::map<std::string, panda::es2panda::util::ProgramCache *>… in ResolveDepsRelations() [all …]
|
| D | emitFiles.h | 30 … std::map<std::string, size_t> *statp, uint8_t targetApi, std::string targetSubApi) in EmitSingleAbcJob() 49 … const std::map<std::string, panda::es2panda::util::ProgramCache*> &progsInfo, in EmitMergedAbcJob() 83 std::map<std::string, size_t> *statp, in EmitFileQueue() 84 … const std::map<std::string, panda::es2panda::util::ProgramCache*> &progsInfo) in EmitFileQueue()
|
| D | resolveDepsRelation.h | 32 …explicit DepsRelationResolver(const std::map<std::string, panda::es2panda::util::ProgramCache *> &… in DepsRelationResolver()
|
| /arkcompiler/runtime_core/static_core/platforms/ohos/ |
| D | default_target_options.cpp | 24 static uint32_t GetHardawareSpecificIntValue(const std::map<std::string, uint32_t> &modelMap) in GetHardawareSpecificIntValue() 33 uint32_t GetGcWorkersCount(const std::map<std::string, uint32_t> &modelMap) in GetGcWorkersCount() 38 uint32_t GetTaskmanagerWorkersCount(const std::map<std::string, uint32_t> &modelMap) in GetTaskmanagerWorkersCount()
|
| /arkcompiler/ets_frontend/ets2panda/test/ast/compiler/ts/ |
| D | tupleAssignability23.ts | 17 var a: [[number, string], [number, string]] = [[1, "foo"], [2, /* @@ label */3]]; variable
|
| D | tupleAssignability8.ts | 17 var a: [number, string, boolean, number, string] = [1, "foo", true, 5, 6] variable
|
| /arkcompiler/ets_runtime/ecmascript/dfx/cpu_profiler/tests/ |
| D | samples_record_test.cpp | 256 std::string) { return true; }; in HWTEST_F_L0() 264 sourceMapTranslateCallback_ = [](const std::string&, int, int, std::string) { return true; }; in HWTEST_F_L0() 272 sourceMapTranslateCallback_ = [](const std::string&, int, int, std::string) { return false; }; in HWTEST_F_L0() 280 sourceMapTranslateCallback_ = [](const std::string&, int, int, std::string) { return false; }; in HWTEST_F_L0() 288 sourceMapTranslateCallback_ = [](const std::string&, int, int, std::string) { return false; }; in HWTEST_F_L0() 296 sourceMapTranslateCallback_ = [](const std::string&, int, int, std::string) { return false; }; in HWTEST_F_L0()
|
| /arkcompiler/ets_frontend/es2panda/test/parser/ts/ |
| D | test_satisfies14.ts | 17 let a = "abc" satisfies "abc" satisfies string satisfies string; variable
|
| D | test-ts-conditional-type.ts | 21 var c: A | number extends string ? number : string; variable 22 var d: boolean | A & string extends string ? number : string; variable 23 var e: boolean & number | string extends string ? number : string; variable
|
| D | test-tuple-type5.ts | 17 var x1 : [number, string]; variable 18 var x2 : [string, ...number[], string]; variable 27 var x8 : [number, ...ForTupleTest[], string]; variable
|
| D | test-tuple-type.ts | 18 var b: [string, string, string]; variable
|
| /arkcompiler/ets_frontend/ets2panda/test/parser/ts/ |
| D | test-ts-conditional-type.ts | 21 var c: A | number extends string ? number : string; variable 22 var d: boolean | A & string extends string ? number : string; variable 23 var e: boolean & number | string extends string ? number : string; variable
|
| D | test-tuple-type.ts | 18 var b: [string, string, string]; variable
|
| /arkcompiler/runtime_core/static_core/platforms/common/ |
| D | default_target_options.cpp | 20 uint32_t GetGcWorkersCount(const std::map<std::string, uint32_t> &modelMap) in GetGcWorkersCount() 25 uint32_t GetTaskmanagerWorkersCount(const std::map<std::string, uint32_t> &modelMap) in GetTaskmanagerWorkersCount()
|
| /arkcompiler/ets_frontend/es2panda/util/ |
| D | dumper.cpp | 19 void Dumper::DumpLiterals(std::map<std::string, panda::pandasm::LiteralArray> const &literalTable) in DumpLiterals() 49 for (auto &string : strings) { in DumpStrings() local
|
| /arkcompiler/runtime_core/static_core/templates/ |
| D | messages.rb | 25 def escape_string_literal(string) argument 55 def split_words(string) argument
|
| /arkcompiler/runtime_core/templates/ |
| D | messages.rb | 25 def escape_string_literal(string) argument 55 def split_words(string) argument
|
| /arkcompiler/ets_runtime/test/moduletest/builtins/ |
| D | builtins.js | 22 var string = "builtins test start" variable
|
| /arkcompiler/ets_runtime/test/moduletest/hugearray/ |
| D | hugearray.js | 22 var string = "hugearray test start" variable
|
| /arkcompiler/ets_runtime/test/moduletest/asyncgenerator/ |
| D | asyncgenerator.js | 23 var string = "async generator start" variable
|
| /arkcompiler/ets_runtime/test/moduletest/container/ |
| D | container.js | 50 var string = "container test end" variable
|