/arkcompiler/ets_runtime/test/typeinfer/automatedcases/ |
D | jsDeclarationsExportAssignmentExpressionPlusSecondary.ts | 21 const Strings = { 22 AssertType(Strings, "{ a: string; b: string; }"); 35 …em: "ok" }}, "{ thing: string; also: string; desc: { item: string; }; Strings: { a: string; b: … 36 AssertType(module.exports, "{ thing: string; also: string; desc: { item: string; }; Strings: { a: s… 56 module.exports.Strings = Strings; 57 AssertType(module.exports.Strings = Strings, "{ a: string; b: string; }"); 58 AssertType(module.exports.Strings, "{ a: string; b: string; }"); 59 AssertType(Strings, "{ a: string; b: string; }");
|
D | jsDeclarationsExportSubAssignments.ts | 21 const Strings = { 22 AssertType(Strings, "{ a: string; b: string; }"); 40 module.exports.Strings = Strings; 41 AssertType(module.exports.Strings = Strings, "{ a: string; b: string; }"); 42 AssertType(module.exports.Strings, "{ a: string; b: string; }"); 43 AssertType(Strings, "{ a: string; b: string; }");
|
D | jsDeclarationsClassStatic.ts | 38 const Strings = { constant 39 AssertType(Strings, "{ a: string; b: string; }"); 56 module.exports.Strings = Strings 57 AssertType(module.exports.Strings = Strings, "{ a: string; b: string; }"); 58 AssertType(module.exports.Strings, "{ a: string; b: string; }"); 59 AssertType(Strings, "{ a: string; b: string; }");
|
D | typeGuardsTypeParameters.ts | 69 const strings: string[] = []; constant 70 AssertType(strings, "string[]"); 89 strings.push(value); 90 AssertType(strings.push(value), "number"); 91 AssertType(strings.push, "(...string[]) => number");
|
D | restParameterInDownlevelGenerator.ts | 22 function * mergeStringLists(...strings: string[]) { 23 for (let str of strings); 25 AssertType(strings, "string[]");
|
D | genericTemplateOverloadResolution.ts | 22 (strings: TemplateStringsArray): Promise<{}>; 23 <T>(strings: TemplateStringsArray): Promise<T>;
|
D | thisTypeInTaggedTemplateCall.ts | 22 static m<T>(this: new () => T, strings: TemplateStringsArray | string) {
|
D | stringLiteralTypesAndTuples01.ts | 21 // Should all be strings.
|
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/jsDeclarationsClassExtendsVisibility/ |
D | cls.js | 27 const Strings = { constant 28 AssertType(Strings, "{ a: string; b: string; }"); 46 module.exports.Strings = Strings; 47 AssertType(module.exports.Strings = Strings, "{ a: string; b: string; }"); 48 AssertType(module.exports.Strings, "{ a: string; b: string; }"); 49 AssertType(Strings, "{ a: string; b: string; }");
|
/arkcompiler/ets_frontend/arkguard/test/grammar/module_validation/ |
D | name_space.ts | 38 let strings = ["Hello", "98052", "101"]; variable 46 assert(validators["Letters only"].isAcceptable(strings[0]), 'success'); 47 assert(validators["ZIP code"].isAcceptable(strings[1]), 'success');
|
/arkcompiler/ets_frontend/es2panda/test/parser/ts/ |
D | test-tuple-type10.ts | 17 type STRINGS = string[] alias 18 type WithMutipleRest4 = [...first: STRINGS, ...second: string[]];
|
/arkcompiler/ets_frontend/merge_abc/src/ |
D | assemblyProgramProto.cpp | 43 for (const auto &str : program.strings) { in Serialize() 83 for (const auto &protoString : protoProgram.strings()) { in Deserialize() 84 program.strings.insert(protoString); in Deserialize()
|
/arkcompiler/runtime_core/bytecode_optimizer/ |
D | ir_interface.h | 46 auto it = maps_->strings.find(offset); in GetStringIdByOffset() 47 ASSERT(it != maps_->strings.cend()); in GetStringIdByOffset() 55 ASSERT(it != maps_->strings.cend()); in GetLiteralArrayByOffset()
|
/arkcompiler/runtime_core/assembler/templates/ |
D | ins_emit.h.erb | 24 const std::unordered_map<std::string, panda_file::StringItem *> &strings, 79 % ops << "strings.find(ids[#{num_id}])->second->GetIndex(method)" 112 if ((ids.size() == 0) || (strings.find(ids[<%= num_id %>]) == strings.cend())) {
|
/arkcompiler/ets_frontend/es2panda/test/parser/js/ |
D | test-multi-line-string-expected.txt | 1 SyntaxError: Newline is not allowed in strings [test-multi-line-string.js:16:610]
|
/arkcompiler/runtime_core/compiler/docs/ |
D | aot_resolve_string.md | 29 - `--resolve-string-aot-threshold` controls how many strings could be save to PLT-slots (option app… 54 PLT-slots referencing a subset of strings references by the `StringTable`).
|
/arkcompiler/ets_frontend/ts2panda/src/ |
D | pandasm.ts | 127 public strings: Set<string>; property in Program 139 this.strings = new Set(); 150 this.strings_arr = Array.from(this.strings);
|
/arkcompiler/runtime_core/tests/cts-generator/cts-template/ |
D | lda.str.yaml | 81 # pandasm expects strings in mutf8 format, not \u or \U 333 …description: Check that two strings created by 'lda.str' instructions are the same in the string c… 346 # empty strings 386 …description: Check that two strings created by 'lda.str' instructions are different in the string …
|
/arkcompiler/ets_frontend/merge_abc/protos/ |
D | assemblyProgram.proto | 46 repeated bytes strings = 6; field
|
/arkcompiler/ets_runtime/ecmascript/base/tests/ |
D | json_parser_test.cpp | 117 * Test with for Nesting of numbers, strings, objects, arrays, Booleans. 137 * Test with for Nesting of numbers, strings, arrays. 164 * Test without for Nesting of numbers, strings, objects.
|
/arkcompiler/runtime_core/tests/verifier-tests/ |
D | bug_2107_1.pa | 37 # Load different values (objects, strings, types, 64-bit floating point values, 32-bit integer va…
|
D | bug_2107_2.pa | 39 # Load different values (objects, strings, types, 64-bit floating point values, 32-bit integer va…
|
/arkcompiler/ets_runtime/ecmascript/ |
D | ecma_string_table.cpp | 89 // Strings in string table should not be in the young space. in InternString() 131 This function is used to create global constant strings from non-movable sapce only. 222 … // Strings in string table should not be in the young space. Only old gc will sweep string table. in SweepWeakReference()
|
/arkcompiler/runtime_core/assembler/ |
D | assembly-program.h | 38 std::set<std::string> strings; member
|
/arkcompiler/ets_runtime/ |
D | README.md | 46 * Functions cannot be dynamically created using strings, such as new Function("console.log(1);")).
|