Home
last modified time | relevance | path

Searched full:title (Results 1 – 25 of 672) sorted by relevance

12345678910>>...27

/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/reports/
Darkts-spec-config.yaml16 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 …]
Dspec_node.py22 def __init__(self, title: str, prefix: str, status: str, parent: Optional[SpecNode]):
23 self.title = title
52 'title': self.title
Dreport_template.html5 <title>${Title}</title>
69 <h1 class="test_header">${Title}</h1>
Dindex_template.html5 <title>${Title}</title>
59 <h1>${Title}</h1>
Dpdf_loader.py56 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/
DswitchcaseDuplicate.ets17 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/
Dnon_testable.yaml16 - 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/
DXmlPullParserTest2.ets58 "<!--Hello, World!--> <company>John &amp 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 &amp; 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 &amp; Han</company> <title>Happy</title><title>Happy</title> <…
[all …]
DXmlPullParserTest.ets64 "<!--Hello, World!--> <company>John &amp Hans</company> <title>Happy</title>",
65 "<title>Happy</title> <todo>Work</todo> <todo>Play</todo> <?go there?>",
85 …}; { company : }; { : John &amp Hans }; { company : }; { title : }; { : Happy }; { title : }…
86 { title : }; { : Happy }; { title : }; { todo : }; { : Work }; { todo : }; { todo : }; { : …
98 "<!--Hello, World!--> <company>John &amp; 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 &amp; Hans</company> <title>Happy</title>",
132 "<title>Happy</title> <todo>Work</todo> <todo>Play</todo> <?go there?>",
[all …]
DXmlPullParserTest7.ets75 " <!--Hello, World!--> <company>John &amp; Hans</company> <title>Happy</title>",
76 " <title>Happy</title> <todo>Work</todo> <todo>Play</todo> <?go there?>",
105 " <!--Hello, World!--> <company>John &amp; 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/
Dnon_testable.yaml16 - 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/
Dtransfer_interface_05.ets21 title: string;
28 title: "Sample Title"
31 assertEQ(obj.title, "Sample Title");
/arkcompiler/ets_frontend/ets2panda/test/runtime/ets/
DstringInSwitchCase.ets17 public static readonly TITLE: string = 'title'
21 indexField: string = "title"
24 case IndexField.TITLE:
25 assertEQ(this.indexField, IndexField.TITLE)
Dreturn_this_type_over_child_class.ets22 title: string = "";
25 return this.title;
29 this.title = t;
Dthis_type.ets31 title: string = "";
34 return this.title;
38 this.title = t;
/arkcompiler/ets_frontend/ets2panda/linter/test/interop/
Dobject_literal_constructor.ets25 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/
Dpartial_example_transform.ets20 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/
Dperf_counter.cpp280 …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/
DArkObfuscator.spec.ts43 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/
Dannotation_@Prop.ets27 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/
Dexample_edit_readonly_field.ets24 title: string
28 title: "One"
31 myIssue.title = "Two" // compile-time error: readonly property
/arkcompiler/ets_frontend/ets2panda/linter/test/main/
Dutility_types.ets36 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/
Disa.yaml27 - 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/
Dreport_template.html5 <title>${Title}</title>
69 <h1 class="test_header">${Title}</h1>
Dindex_template.html5 <title>${Title}</title>
59 <h1>${Title}</h1>

12345678910>>...27