/arkcompiler/runtime_core/cmake/ark-third-party/icu/ |
D | CMakeLists.txt | 4 ${ICU_ROOT}/icu4c/source/common 5 ${ICU_ROOT}/icu4c/source/i18n 6 ${ICU_ROOT}/icu4c/source 22 ${ICU_ROOT}/icu4c/source/common/appendable.cpp 23 ${ICU_ROOT}/icu4c/source/common/bmpset.cpp 24 ${ICU_ROOT}/icu4c/source/common/brkeng.cpp 25 ${ICU_ROOT}/icu4c/source/common/brkiter.cpp 26 ${ICU_ROOT}/icu4c/source/common/bytesinkutil.cpp 27 ${ICU_ROOT}/icu4c/source/common/bytestream.cpp 28 ${ICU_ROOT}/icu4c/source/common/bytestrie.cpp [all …]
|
/arkcompiler/toolchain/build/third_party_gn/icu/icu4c/ |
D | BUILD.gn | 18 "//third_party/icu/icu4c/source/common", 19 "//third_party/icu/icu4c/source/i18n", 20 "//third_party/icu/icu4c/source", 25 include_dirs = [ "//third_party/icu/icu4c/source/common" ] 34 sources = [ "//third_party/icu/icu4c/source/stubdata/stubdata.cpp" ] 51 "//third_party/icu/icu4c/source/common/ubiditransform.cpp", 52 "//third_party/icu/icu4c/source/common/locutil.cpp", 53 "//third_party/icu/icu4c/source/common/cstring.cpp", 54 "//third_party/icu/icu4c/source/common/rbbiscan.cpp", 55 "//third_party/icu/icu4c/source/common/utrie.cpp", [all …]
|
/arkcompiler/runtime_core/gn/ark-third-party/icu/ |
D | BUILD.gn | 20 "$ark_root/ark-third-party/icu/icu4c/source/common", 21 "$ark_root/ark-third-party/icu/icu4c/source/i18n", 22 "$ark_root/ark-third-party/icu/icu4c/source", 33 [ "$ark_root/ark-third-party/icu/icu4c/source/stubdata/stubdata.cpp" ] 50 source = "$ark_root/ark-third-party/icu/ohos_icu4j/data/icudt67l.dat" 57 "$ark_root/ark-third-party/icu/icu4c/source/common/ubiditransform.cpp", 58 "$ark_root/ark-third-party/icu/icu4c/source/common/locutil.cpp", 59 "$ark_root/ark-third-party/icu/icu4c/source/common/cstring.cpp", 60 "$ark_root/ark-third-party/icu/icu4c/source/common/rbbiscan.cpp", 61 "$ark_root/ark-third-party/icu/icu4c/source/common/utrie.cpp", [all …]
|
/arkcompiler/ets_frontend/legacy_bin/ |
D | BUILD.gn | 18 source = "./api8/bin/linux/js2abc" 19 output = "js_linux/${source}" 25 source = "./api8/bin/win/js2abc.exe" 26 output = "js_win/${source}" 32 source = "./api8/bin/mac/js2abc" 33 output = "js_mac/${source}" 39 source = "./api8/src/index.js" 40 output = "js_linux/${source}" 46 source = "./api8/src/index.js" 47 output = "js_win/${source}" [all …]
|
/arkcompiler/ets_frontend/es2panda/test/compiler/js/language/arguments-object/ |
D | test-key-named-called-func-bound-value-expected.txt | 2 "show source" 6 "show source" 10 "show source" 14 "show source" 18 "show source" 22 "show source" 26 "show source" 30 "show source" 34 "show source" 38 "show source" [all …]
|
D | test-key-named-called-func-bound-value.js | 18 "show source" 22 "show source" 26 "show source" 30 "show source" 34 "show source" 38 "show source" 42 "show source" 46 "show source" 50 "show source" 54 "show source" [all …]
|
/arkcompiler/ets_frontend/es2panda/typescript/core/ |
D | typeRelation.cpp | 22 bool Checker::IsAllTypesAssignableTo(Type *source, Type *target) in IsAllTypesAssignableTo() argument 24 if (source->TypeFlags() == TypeFlag::UNION) { in IsAllTypesAssignableTo() 25 auto &types = source->AsUnionType()->ConstituentTypes(); in IsAllTypesAssignableTo() 31 return relation_->IsAssignableTo(source, target); in IsAllTypesAssignableTo() 34 bool Checker::IsTypeIdenticalTo(Type *source, Type *target) in IsTypeIdenticalTo() argument 36 return relation_->IsIdenticalTo(source, target); in IsTypeIdenticalTo() 39 bool Checker::IsTypeIdenticalTo(Type *source, Type *target, const std::string &errMsg, in IsTypeIdenticalTo() argument 42 if (!IsTypeIdenticalTo(source, target)) { in IsTypeIdenticalTo() 49 bool Checker::IsTypeIdenticalTo(Type *source, Type *target, std::initializer_list<TypeErrorMessageE… in IsTypeIdenticalTo() argument 52 if (!IsTypeIdenticalTo(source, target)) { in IsTypeIdenticalTo() [all …]
|
/arkcompiler/ets_runtime/ecmascript/regexp/tests/ |
D | regexp_test.cpp | 110 CString source("0{2,1}"); in HWTEST_F_L0() local 111 … parser.Init(const_cast<char *>(reinterpret_cast<const char *>(source.c_str())), source.size(), 0); in HWTEST_F_L0() 120 CString source("^[z-a]$"); in HWTEST_F_L0() local 121 … parser.Init(const_cast<char *>(reinterpret_cast<const char *>(source.c_str())), source.size(), 0); in HWTEST_F_L0() 130 CString source("\\"); in HWTEST_F_L0() local 131 … parser.Init(const_cast<char *>(reinterpret_cast<const char *>(source.c_str())), source.size(), 0); in HWTEST_F_L0() 140 CString source("a**"); in HWTEST_F_L0() local 141 … parser.Init(const_cast<char *>(reinterpret_cast<const char *>(source.c_str())), source.size(), 0); in HWTEST_F_L0() 150 CString source("a***"); in HWTEST_F_L0() local 151 … parser.Init(const_cast<char *>(reinterpret_cast<const char *>(source.c_str())), source.size(), 0); in HWTEST_F_L0() [all …]
|
/arkcompiler/ets_frontend/es2panda/typescript/types/ |
D | typeRelation.cpp | 51 RelationResult TypeRelation::CacheLookup(const Type *source, const Type *target, const RelationHold… in CacheLookup() argument 58 RelationKey relationKey {source->Id(), target->Id()}; in CacheLookup() 75 bool TypeRelation::IsIdenticalTo(Type *source, Type *target) in IsIdenticalTo() argument 77 if (source == target) { in IsIdenticalTo() 82 result_ = CacheLookup(source, target, checker_->IdenticalResults(), RelationType::IDENTICAL); in IsIdenticalTo() 84 checker_->ResolveStructuredTypeMembers(source); in IsIdenticalTo() 87 target->Identical(this, source); in IsIdenticalTo() 88 …checker_->IdenticalResults().cached.insert({{source->Id(), target->Id()}, {result_, RelationType::… in IsIdenticalTo() 94 bool TypeRelation::IsIdenticalTo(Signature *source, Signature *target) in IsIdenticalTo() argument 96 if (source == target) { in IsIdenticalTo() [all …]
|
D | objectType.cpp | 31 …l_of(sourceSignatures.begin(), sourceSignatures.end(), [relation, &targetCopy](Signature *source) { in EachSignatureRelatedToSomeSignature() argument 32 return SignatureRelatedToSomeSignature(relation, source, &targetCopy); in EachSignatureRelatedToSomeSignature() 114 void ObjectType::AssignProperties(TypeRelation *relation, ObjectType *source) in AssignProperties() argument 121 binder::LocalVariable *found = source->GetProperty(it->Name(), true); in AssignProperties() 155 void ObjectType::AssignSignatures(TypeRelation *relation, ObjectType *source, bool assignCallSignat… in AssignSignatures() argument 159 assignCallSignatures ? source->CallSignatures() : source->ConstructSignatures(); in AssignSignatures() 179 void ObjectType::AssignIndexInfo([[maybe_unused]] TypeRelation *relation, ObjectType *source, bool … in AssignIndexInfo() argument 182 … IndexInfo *sourceInfo = assignNumberInfo ? source->NumberIndexInfo() : source->StringIndexInfo(); in AssignIndexInfo() 190 for (auto *it : source->Properties()) { in AssignIndexInfo() 202 void ObjectType::checkExcessProperties(TypeRelation *relation, ObjectType *source) in checkExcessProperties() argument [all …]
|
D | arrayType.cpp | 43 void ArrayType::AssignmentTarget(TypeRelation *relation, Type *source) in AssignmentTarget() argument 45 if (source->IsArrayType()) { in AssignmentTarget() 46 relation->IsAssignableTo(source->AsArrayType()->ElementType(), element_); in AssignmentTarget() 47 } else if (source->IsObjectType() && source->AsObjectType()->IsTupleType()) { in AssignmentTarget() 48 ObjectType *sourceObj = source->AsObjectType(); in AssignmentTarget()
|
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/ |
D | thisInGenericStaticMembers.ts | 25 static one<T>(source:T, value: number): T { 26 AssertType(source, "T"); 27 return source; 30 static two<T>(source: T): T { 31 AssertType(this.one<T>(source, 42), "T"); 34 AssertType(source, "T"); 36 return this.one<T>(source, 42); 42 static one(source: B, value: number): B { 43 AssertType(source, "B"); 44 return source; [all …]
|
D | genericStaticAnyTypeFunction.ts | 23 static one<T>(source: T, value: number): T { 25 AssertType(source, "T"); 26 return source; 34 static two<T>(source: T): T { 35 AssertType(this.one<T>(source, 42), "T"); 38 AssertType(source, "T"); 40 return this.one<T>(source, 42); // should not error
|
D | contextualTypeAppliedToVarArgs.ts | 30 delegate(this, function (source, args2) 31 AssertType(delegate(this, function (source, args2) { let a = source.node; … 34 AssertType(function (source, args2) { let a = source.node; let b = arg… 35 AssertType(source, "any"); 38 let a = source.node; 40 AssertType(source.node, "any");
|
D | NOTICE | 1 OPEN SOURCE SOFTWARE NOTICE 3 …source software notice for the third party open source software along with this software and/or th… 6 THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, BUT WIT…
|
D | LICENSE.txt | 19 "Source" form shall mean the preferred form for making modifications, including but not limited to … 21 …an any form resulting from mechanical transformation or translation of a Source form, including bu… 23 "Work" shall mean the work of authorship, whether in Source or Object form, made available under th… 25 "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or deri… 27 … including but not limited to communication on electronic mailing lists, source code control syste… 31 …ly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 35 …ative Works thereof in any medium, with or without modifications, and in Source or Object form, pr… 41 …in, in the Source form of any Derivative Works that You distribute, all copyright, patent, tradema… 43 …NOTICE text file distributed as part of the Derivative Works; within the Source form or documentat…
|
/arkcompiler/toolchain/build/templates/cxx/ |
D | prebuilt.gni | 17 assert(defined(invoker.source), "source must be defined for ${target_name}.") 22 _copy_output = "${target_out_dir}/${invoker.source}" 52 source_path = rebase_path(invoker.source, root_build_dir) 76 # Open source license related 80 sources = [ invoker.source ] 86 assert(defined(invoker.source), "source must be defined for ${target_name}.") 91 _copy_output = "${target_out_dir}/${invoker.source}" 124 source_path = rebase_path(invoker.source, root_build_dir) 148 # Open source license related 152 sources = [ invoker.source ] [all …]
|
/arkcompiler/runtime_core/compiler/tests/ |
D | ir_builder_test.cpp | 48 std::string source = ".function " + curr_type + " main("; in CheckSimple() local 49 source += curr_type + " a0){\n"; in CheckSimple() 51 source += "mov" + inst_type + " v0, a0\n"; in CheckSimple() 52 source += "lda" + inst_type + " v0\n"; in CheckSimple() 54 source += "lda" + inst_type + " a0\n"; in CheckSimple() 56 source += "lda" + inst_type + " a0\n"; in CheckSimple() 57 source += "sta" + inst_type + " v0\n"; in CheckSimple() 58 source += "lda" + inst_type + " v0\n"; in CheckSimple() 62 source += "return" + inst_type + "\n"; in CheckSimple() 63 source += "}"; in CheckSimple() [all …]
|
D | panda_runner.h | 42 void Parse(std::string_view source) in Parse() argument 46 auto res = parser.Parse(source.data()); in Parse() 59 void Run(std::string_view source) in Run() argument 61 return Run(source, std::vector<std::string> {}); in Run() 64 void Run(std::string_view source, Callback hook) in Run() argument 67 return Run(source, ssize_t(0)); in Run() 70 void Run(std::string_view source, ssize_t expected_result) in Run() argument 73 return Run(source, std::vector<std::string> {}); in Run() 76 void Run(std::string_view source, const std::vector<std::string> &args) in Run() argument 86 Run(CreateRuntime(), source, args); in Run() [all …]
|
/arkcompiler/runtime_core/cmake/ |
D | CodeStyle.cmake | 55 get_filename_component(source ${src} ABSOLUTE) 56 file(RELATIVE_PATH src ${PANDA_ROOT} ${source}) 59 add_clang_format(${source} ${src}) 60 add_clang_force_format(${source} ${src}) 62 add_check_concurrency_format(${source} ${src}) 63 add_check_atomic_format(${source} ${src}) 68 get_filename_component(source ${src} ABSOLUTE) 69 file(RELATIVE_PATH src ${PANDA_ROOT} ${source}) 72 add_clang_format(${source} ${src}) 73 add_clang_force_format(${source} ${src}) [all …]
|
/arkcompiler/runtime_core/bytecode_optimizer/tests/ |
D | common.h | 184 …bool ParseToGraph(const std::string &source, const std::string &func_name, const char *file_name =… 187 auto res = parser.Parse(source, file_name); 434 std::string source = ".function " + curr_type + " main("; in CheckSimple() local 435 source += curr_type + " a0){\n"; in CheckSimple() 437 source += "mov" + inst_type + " v0, a0\n"; in CheckSimple() 438 source += "lda" + inst_type + " v0\n"; in CheckSimple() 440 source += "lda" + inst_type + " a0\n"; in CheckSimple() 442 source += "lda" + inst_type + " a0\n"; in CheckSimple() 443 source += "sta" + inst_type + " v0\n"; in CheckSimple() 444 source += "lda" + inst_type + " v0\n"; in CheckSimple() [all …]
|
/arkcompiler/ets_runtime/ecmascript/jspandafile/tests/ |
D | js_pandafile_test.cpp | 57 std::shared_ptr<JSPandaFile> CreateJSPandaFile(const char *source, const CString filename) in CreateJSPandaFile() argument 61 auto res = parser.Parse(source, fn); in CreateJSPandaFile() 73 const char *source = R"( in HWTEST_F_L0() local 77 std::shared_ptr<JSPandaFile> pf = CreateJSPandaFile(source, fileName); in HWTEST_F_L0() 83 const char *source = R"( in HWTEST_F_L0() local 87 std::shared_ptr<JSPandaFile> pf = CreateJSPandaFile(source, fileName);; in HWTEST_F_L0() 94 const char *source = R"( in HWTEST_F_L0() local 98 std::shared_ptr<JSPandaFile> pf = CreateJSPandaFile(source, fileName);; in HWTEST_F_L0() 105 const char *source = R"( in HWTEST_F_L0() local 111 std::shared_ptr<JSPandaFile> pf = CreateJSPandaFile(source, fileName);; in HWTEST_F_L0() [all …]
|
/arkcompiler/ets_frontend/arkguard/src/ |
D | IObfuscator.ts | 18 * interface for obfuscating source code 20 * @param code string sequence of source code 25 * interface for obfuscating source file 27 * @param file path of single source file. 32 * interface for obfuscating source files; 34 * @param files a list of source files
|
/arkcompiler/ets_frontend/ts2panda/tests/expression/ |
D | functionExpression.test.ts | 52 let source: string = ` variable 57 let pandaGens = compileAllSnippet(source, passes); 84 let source: string = ` variable 88 let pandaGens = compileAllSnippet(source); 111 let source: string = ` variable 116 let pandaGens = compileAllSnippet(source); 140 let source: string = ` variable 145 let pandaGens = compileAllSnippet(source); 168 let source: string = ` variable 171 let pandaGens = compileAllSnippet(source); [all …]
|
/arkcompiler/ets_runtime/ |
D | LICENSE | 27 "Source" form shall mean the preferred form for making modifications, 28 including but not limited to software source code, documentation 29 source, and configuration files. 32 transformation or translation of a Source form, including but 36 "Work" shall mean the work of authorship, whether in Source or 41 "Derivative Works" shall mean any work, whether in Source or Object 57 communication on electronic mailing lists, source code control systems, 72 Work and such Derivative Works in Source or Object form. 92 modifications, and in Source or Object form, provided that You 101 (c) You must retain, in the Source form of any Derivative Works [all …]
|