Home
last modified time | relevance | path

Searched full:strings (Results 1 – 25 of 108) sorted by relevance

12345

/arkcompiler/ets_runtime/test/typeinfer/automatedcases/
DjsDeclarationsExportAssignmentExpressionPlusSecondary.ts21 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; }");
DjsDeclarationsExportSubAssignments.ts21 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; }");
DjsDeclarationsClassStatic.ts38 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; }");
DtypeGuardsTypeParameters.ts69 const strings: string[] = []; constant
70 AssertType(strings, "string[]");
89 strings.push(value);
90 AssertType(strings.push(value), "number");
91 AssertType(strings.push, "(...string[]) => number");
DrestParameterInDownlevelGenerator.ts22 function * mergeStringLists(...strings: string[]) {
23 for (let str of strings);
25 AssertType(strings, "string[]");
DgenericTemplateOverloadResolution.ts22 (strings: TemplateStringsArray): Promise<{}>;
23 <T>(strings: TemplateStringsArray): Promise<T>;
DthisTypeInTaggedTemplateCall.ts22 static m<T>(this: new () => T, strings: TemplateStringsArray | string) {
DstringLiteralTypesAndTuples01.ts21 // Should all be strings.
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/jsDeclarationsClassExtendsVisibility/
Dcls.js27 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/
Dname_space.ts38 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/
Dtest-tuple-type10.ts17 type STRINGS = string[] alias
18 type WithMutipleRest4 = [...first: STRINGS, ...second: string[]];
/arkcompiler/ets_frontend/merge_abc/src/
DassemblyProgramProto.cpp43 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/
Dir_interface.h46 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/
Dins_emit.h.erb24 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/
Dtest-multi-line-string-expected.txt1 SyntaxError: Newline is not allowed in strings [test-multi-line-string.js:16:610]
/arkcompiler/runtime_core/compiler/docs/
Daot_resolve_string.md29 - `--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/
Dpandasm.ts127 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/
Dlda.str.yaml81 # 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/
DassemblyProgram.proto46 repeated bytes strings = 6; field
/arkcompiler/ets_runtime/ecmascript/base/tests/
Djson_parser_test.cpp117 * 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/
Dbug_2107_1.pa37 # Load different values (objects, strings, types, 64-bit floating point values, 32-bit integer va…
Dbug_2107_2.pa39 # Load different values (objects, strings, types, 64-bit floating point values, 32-bit integer va…
/arkcompiler/ets_runtime/ecmascript/
Decma_string_table.cpp89 // 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/
Dassembly-program.h38 std::set<std::string> strings; member
/arkcompiler/ets_runtime/
DREADME.md46 * Functions cannot be dynamically created using strings, such as new Function("console.log(1);")).

12345