| /arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/reports/ |
| D | arkts-spec-config.yaml | 16 title: Introduction 19 title: Common Description 22 title: Lexical and Syntactic Notation 25 title: Terms and Definitions 28 title: Lexical Elements 31 title: Use of Unicode Characters 34 title: Lexical Input Elements 37 title: White Spaces 40 title: Line Separators 43 title: Tokens [all …]
|
| D | spec_node.py | 22 def __init__(self, title: str, prefix: str, status: str, parent: Optional[SpecNode]): 23 self.title = title 52 'title': self.title
|
| D | report_template.html | 5 <title>${Title}</title> 69 <h1 class="test_header">${Title}</h1>
|
| D | index_template.html | 5 <title>${Title}</title> 59 <h1>${Title}</h1>
|
| D | pdf_loader.py | 56 title: str = str(item.title) if item and item.title else "" 59 node = SpecNode(title, new_prefix, status, parent)
|
| /arkcompiler/ets_frontend/ets2panda/test/ast/compiler/ets/ |
| D | switchcaseDuplicate.ets | 17 public static readonly TITLE: string = 'title' 22 indexField: string = "title" 25 /* @@ label */case IndexField.TITLE: 26 assertEQ(this.indexField, IndexField.TITLE) 28 case IndexField.TITLE: 29 assertEQ(this.indexField, IndexField.TITLE)
|
| /arkcompiler/runtime_core/static_core/tests/cts-coverage-tool/config/ |
| D | non_testable.yaml | 16 - title: Conversions between integer and floating point types 20 - title: Load accumulator from string constant pool 23 - title: Static call 27 - title: Create and initialize new constant array 31 - title: Load accumulator from type constant pool 35 - title: Dynamic move register-to-register 48 - title: Dynamic load accumulator from register 61 - title: Dynamic store accumulator 74 - title: Dynamic load accumulator from immediate
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_sdk/api/@ohos/xml/ |
| D | XmlPullParserTest2.ets | 58 "<!--Hello, World!--> <company>John & Hans</company> <title>Happy</title>", 59 "<title>Happy</title> <todo>Work</todo> <todo>Play</todo> <?go there?>", 86 "{ title : Happy }", 87 "{ title : Happy }", 97 <title>Happy</title><title>Happy</title> <todo>Work</todo> <todo>Play</todo> <?go there?><a><b/></a… 110 "<!--Hello, World!--> <company>John & Hans</company> <title>Happy</title>", 111 "<title>Happy</title> <todo>Work</todo> <todo>Play</todo> <?go there?>", 137 "{ title : Happy }", 138 "{ title : Happy }", 147 …><!--Hello, World!--> <company>John & Han</company> <title>Happy</title><title>Happy</title> <… [all …]
|
| D | XmlPullParserTest.ets | 64 "<!--Hello, World!--> <company>John & Hans</company> <title>Happy</title>", 65 "<title>Happy</title> <todo>Work</todo> <todo>Play</todo> <?go there?>", 85 …}; { company : }; { : John & Hans }; { company : }; { title : }; { : Happy }; { title : }… 86 { title : }; { : Happy }; { title : }; { todo : }; { : Work }; { todo : }; { todo : }; { : … 98 "<!--Hello, World!--> <company>John & Hans</company> <title>Happy</title>", 99 "<title>Happy</title> <todo>Work</todo> <todo>Play</todo> <?go there?>", 119 … company : }; { : John & Hans }; { company : }; { title : }; { : Happy }; { title : }; { tit… 120 { : Happy }; { title : }; { todo : }; { : Work }; { todo : }; { todo : }; { : Play }; { todo… 131 "<!--Hello, World!--> <company>John & Hans</company> <title>Happy</title>", 132 "<title>Happy</title> <todo>Work</todo> <todo>Play</todo> <?go there?>", [all …]
|
| D | XmlPullParserTest7.ets | 75 " <!--Hello, World!--> <company>John & Hans</company> <title>Happy</title>", 76 " <title>Happy</title> <todo>Work</todo> <todo>Play</todo> <?go there?>", 105 " <!--Hello, World!--> <company>John & Hans</company> <title>Happy</title>", 106 " <title>Happy</title> <todo>Work</todo> <todo>Play</todo> <?go there?>", 135 " <title>Happy</title>", 156 let expectedTextStr = '{ note : 2 }; { title : 0 }; { todo : 0 }; { todo : 0 }; ' 271 ' <title>Happy</title>' + 294 ' <title>Happy</title>' +
|
| /arkcompiler/runtime_core/tests/cts-coverage-tool/config/ |
| D | non_testable.yaml | 16 - title: Conversions between integer and floating point types 20 - title: Load accumulator from string constant pool 23 - title: Static call 27 - title: Create and initialize new constant array 31 - title: Load accumulator from type constant pool 35 - title: Dynamic move register-to-register 48 - title: Dynamic load accumulator from register 61 - title: Dynamic store accumulator 74 - title: Dynamic load accumulator from immediate 92 - title: Dynamic return from method [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/10.interfaces/07.interface_inheritance/boundary_situation/transfer_parent_interface/ |
| D | transfer_interface_05.ets | 21 title: string; 28 title: "Sample Title" 31 assertEQ(obj.title, "Sample Title");
|
| /arkcompiler/ets_frontend/ets2panda/test/runtime/ets/ |
| D | stringInSwitchCase.ets | 17 public static readonly TITLE: string = 'title' 21 indexField: string = "title" 24 case IndexField.TITLE: 25 assertEQ(this.indexField, IndexField.TITLE)
|
| D | return_this_type_over_child_class.ets | 22 title: string = ""; 25 return this.title; 29 this.title = t;
|
| D | this_type.ets | 31 title: string = ""; 34 return this.title; 38 this.title = t;
|
| /arkcompiler/ets_frontend/ets2panda/linter/test/interop/ |
| D | object_literal_constructor.ets | 25 const base = { title: 'value' }; 35 return { title: 'item' }; 43 return { title: 'item' }; //legal 48 item: X = { title: 'invalid' }; 56 const x = { title: 'value' } as X; 62 const value: X = condition ? { title: 'hello' } : new X("cfe");
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/05.generics/03.utility_types/01.partial_utility_type/ |
| D | partial_example_transform.ets | 20 title?: string 26 title: string 31 if (issue.title != undefined) { 38 assertEQ(process({title: "aa"}), 0) // description is undefined
|
| /arkcompiler/runtime_core/static_core/runtime/tooling/ |
| D | perf_counter.cpp | 280 …virtual void Report(std::ostream &out, const char *title, CounterValue counter, const Perf *p) con… 290 static void ReportNanCounter(std::ostream &out, const char *title); 292 static void ReportLongCounter(std::ostream &out, const char *title, CounterValue counter); 293 static void ReportLongCounter(std::ostream &out, const char *title, CounterValue counter, 295 static void ReportTimeCounter(std::ostream &out, const char *title, CounterValue counter); 331 void CounterReporter::ReportNanCounter(std::ostream &out, const char *title) in ReportNanCounter() argument 334 << " " << title << std::endl; in ReportNanCounter() 337 void CounterReporter::ReportLongCounter(std::ostream &out, const char *title, CounterValue counter) in ReportLongCounter() argument 340 ReportNanCounter(out, title); in ReportLongCounter() 347 out << buf << " " << title; in ReportLongCounter() [all …]
|
| /arkcompiler/ets_frontend/arkguard/test/ut/arkobfuscator/ |
| D | ArkObfuscator.spec.ts | 43 constructor(public title: string, public content: string, public mark: number) { 44 this.title = title 56 constructor(public title: string, public content: string, public mark: number) { 57 this.title = title 67 constructor(public title: string, public content: string, public mark: number) { 68 this.title = title 95 constructor(public title: string, public content: string, public mark: number) { 96 this.title = title; 133 constructor(public title: string, public content: string, public mark: number) { 134 this.title = title; [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/spec/16.Support_for_GUI_Programming/annotations/ |
| D | annotation_@Prop.ets | 27 public title: string; 31 constructor(title: string, pages: number) { 33 this.title = title; 44 Text(this.book.title)
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/05.generics/03.utility_types/03.readonly_utility_type/ |
| D | example_edit_readonly_field.ets | 24 title: string 28 title: "One" 31 myIssue.title = "Two" // compile-time error: readonly property
|
| /arkcompiler/ets_frontend/ets2panda/linter/test/main/ |
| D | utility_types.ets | 36 title: string; 40 title: 'Delete inactive users', 43 console.log(todo.title); 48 title: string; 53 type TodoPreview = Pick<Todo, 'title' | 'completed'>; 56 title: 'Clean room', 65 title: string; 74 title: 'Clean room', 84 title: 'Pick up kids',
|
| /arkcompiler/runtime_core/static_core/plugins/ets/isa/ |
| D | isa.yaml | 27 - title: Get field from object by name 78 - title: Store accumulator content into object field by name 132 - title: Call method from object by name 190 - title: Load 'nullvalue' reference into accumulator 206 - title: Move 'nullvalue' reference into a register 222 - title: Check if accumulator value is 'nullvalue' 243 - title: Check if two references are loosely equal 272 - title: Strict check if two references are strictly equal 301 - title: Evaluate typeof string 317 - title: Check if value is 'true' in extended conditional semantics
|
| /arkcompiler/runtime_core/static_core/tests/tests-u-runner-2/runner/reports/ |
| D | report_template.html | 5 <title>${Title}</title> 69 <h1 class="test_header">${Title}</h1>
|
| D | index_template.html | 5 <title>${Title}</title> 59 <h1>${Title}</h1>
|