/arkcompiler/ets_runtime/test/typeinfer/automatedcases/ |
D | stringRawType.ts | 21 String.raw({ raw: ["foo", "bar", "baz"] }, 1, 2); 22 AssertType(String.raw({ raw: ["foo", "bar", "baz"] }, 1, 2), "string"); 23 AssertType(String.raw, "({ raw: union; }, ...any[]) => string"); 24 AssertType({ raw: ["foo", "bar", "baz"] }, "{ raw: string[]; }"); 25 AssertType(raw, "string[]");
|
D | abstractPropertyBasics.ts | 23 raw: string; 28 abstract raw: string; property in B 41 raw = "edge";
|
/arkcompiler/ets_frontend/es2panda/test/parser/js/ |
D | test-template-literal-expected.txt | 13 "raw": "", 89 "raw": "", 106 "raw": "", 152 "raw": "almafa", 257 "raw": "", 274 "raw": "", 291 "raw": "", 367 "raw": "alma", 384 "raw": "", 460 "raw": "", [all …]
|
D | test-tagged-template-expression-expected.txt | 29 "raw": "", 132 "raw": "", 149 "raw": "", 222 "raw": "almafa", 354 "raw": "", 371 "raw": "", 388 "raw": "", 491 "raw": "alma", 508 "raw": "", 611 "raw": "", [all …]
|
D | test-octal-escape-in-template-string-expected.txt | 30 "raw": "\x22\0\x23",
|
D | test-special-character-processing-in-template-string-expected.txt | 50 "raw": "
|
/arkcompiler/ets_runtime/test/moduletest/wrapperclassfunc/ |
D | expect_output.txt | 15 raw function 17 raw function 19 raw function
|
/arkcompiler/ets_frontend/es2panda/test/parser/ts/ |
D | test-ts-ternary-operator-1-expected.txt | 114 "raw": ".", 131 "raw": "", 209 "raw": "[", 226 "raw": "]",
|
D | test-type-template-literal1-expected.txt | 109 "raw": "Today is ", 126 "raw": "",
|
D | test-type-template-literal3-expected.txt | 97 "raw": "OpenHarmony-", 114 "raw": "", 299 "raw": "OpenHarmony-", 316 "raw": "",
|
D | test-type-template-literal2-expected.txt | 412 "raw": "", 429 "raw": "_", 446 "raw": "",
|
/arkcompiler/ets_frontend/es2panda/ir/base/ |
D | templateElement.h | 37 explicit TemplateElement(util::StringView raw, util::StringView cooked) in TemplateElement() argument 38 : Expression(AstNodeType::TEMPLATE_ELEMENT), raw_(raw), cooked_(cooked) in TemplateElement()
|
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/emitMemberAccessExpression/ |
D | emitMemberAccessExpression_file2.ts | 27 public populate(raw: any) {
|
/arkcompiler/ets_runtime/ecmascript/ |
D | template_string.cpp | 57 JSHandle<JSTaggedValue> raw(factory->NewFromASCII("raw")); in GetTemplateObject() local 59 JSArray::DefineOwnProperty(thread, templateObj, raw, desc); in GetTemplateObject()
|
/arkcompiler/runtime_core/docs/diagrams/ |
D | static-analyzer-warnings-generation.puactivity | 29 raw pointers of ObjectHeader after calling the function: 32 - in case if it is a store to raw pointer - mark it as safe
|
/arkcompiler/runtime_core/tests/cts-coverage-tool/lib/ |
D | spec.rb | 186 raw = read_test_data(File.join(testdir, file)) 187 tdata = YAML.safe_load(raw) 190 …ned << { 'file' => file, 'error' => 'Bad test format, expected array of titles', 'comment' => raw }
|
/arkcompiler/ets_frontend/test/scripts/auto_xts_test/ |
D | readme_zh.md | 15 <br />![](https://gitee.com/huyunhui1/images/raw/build/%E6%8D%95%E8%8E%B7.PNG)
|
D | readme.md | 18 <br />![](https://gitee.com/huyunhui1/images/raw/build/%E6%8D%95%E8%8E%B7.PNG)
|
/arkcompiler/ets_runtime/test/typeinfer/builtins/ |
D | builtins.ts | 209 AssertType(String.raw`Multiline\nstring`, "string");
|
/arkcompiler/runtime_core/docs/ |
D | design-of-interpreter.md | 89 1. The format uses raw offsets as the main access method to the actual data and doesn't 161 the size of up to 64 bits, floating point numbers of single and double precision, raw pointers
|
/arkcompiler/ets_frontend/test262/ |
D | harness.patch | 220 } else if (!ranToFinish && !test.attrs.flags.raw) {
|
D | eshost.patch | 98 // raw source code.
|
D | CI_tests.txt | 1138 built-ins/String/raw/length.js 1139 built-ins/String/raw/name.js 1140 built-ins/String/raw/nextkey-is-symbol-throws.js 1141 built-ins/String/raw/raw.js 1142 built-ins/String/raw/return-empty-string-if-length-is-negative-infinity.js 1143 built-ins/String/raw/return-empty-string-from-empty-array-length.js 1144 built-ins/String/raw/return-empty-string-if-length-is-not-defined.js 1145 built-ins/String/raw/returns-abrupt-from-substitution-symbol.js 1146 built-ins/String/raw/returns-abrupt-from-substitution.js 1147 built-ins/String/raw/special-characters.js [all …]
|
/arkcompiler/ets_runtime/ecmascript/ts_types/ |
D | lib_ark_builtins.d.ts | 674 …static raw(template: { raw: readonly string[] | ArrayLike<string> }, ...substitutions: any[]): str…
|
/arkcompiler/ets_frontend/es2panda/parser/ |
D | expressionParser.cpp | 856 auto [raw, end, scanExpression] = lexer_->ScanTemplateString(); in ParseTemplateLiteral() 858 auto *element = AllocNode<ir::TemplateElement>(raw.View(), cooked); in ParseTemplateLiteral()
|