Home
last modified time | relevance | path

Searched full:part (Results 1 – 25 of 868) sorted by relevance

12345678910>>...35

/arkcompiler/ets_frontend/ets2panda/test/unit/plugin/
Dplugin_proceed_to_state_create_ets_new_expression.cpp39 auto part = g_impl->CreateETSTypeReferencePart1(g_ctx, className); in FindA() local
40 auto typeReference = g_impl->CreateETSTypeReference(g_ctx, part); in FindA()
41 g_impl->AstNodeSetParent(g_ctx, part, typeReference); in FindA()
42 g_impl->AstNodeSetParent(g_ctx, className, part); in FindA()
61 auto part = g_impl->CreateETSTypeReferencePart1(g_ctx, className); in FindB() local
62 auto typeReference = g_impl->CreateETSTypeReference(g_ctx, part); in FindB()
63 g_impl->AstNodeSetParent(g_ctx, part, typeReference); in FindB()
64 g_impl->AstNodeSetParent(g_ctx, className, part); in FindB()
87 auto part = g_impl->CreateETSTypeReferencePart1(g_ctx, className); in FindC() local
88 auto typeReference = g_impl->CreateETSTypeReference(g_ctx, part); in FindC()
[all …]
Dplugin_proceed_to_state_new_expression.cpp97 es2panda_AstNode *part = impl->CreateETSTypeReferencePart1(context, className); in CreateNewExpr() local
98 impl->AstNodeSetParent(context, className, part); in CreateNewExpr()
99 es2panda_AstNode *typeRef = impl->CreateETSTypeReference(context, part); in CreateNewExpr()
100 impl->AstNodeSetParent(context, part, typeRef); in CreateNewExpr()
109 auto part = impl->ETSTypeReferencePart(context, ast); in Find() local
110 auto newTypeReference = impl->UpdateETSTypeReference(context, ast, part); in Find()
114 impl->AstNodeSetParent(context, part, newTypeReference); in Find()
/arkcompiler/runtime_core/static_core/cmake/interceptor/
Dparse_args.py57 """Check if the command part refers to one of our target binaries."""
83 """Extract the binary name from a command part if it's one of our targets."""
105 for part in command_parts:
106 binary_name = extract_target_binary_name(part)
114 is_script_call(part) for part in command_parts)
127 for i, part in enumerate(modified_parts):
128 if part.startswith('LD_LIBRARY_PATH=') or is_target_binary(part):
148 for i, part in enumerate(modified_parts):
149 if part.startswith('LD_LIBRARY_PATH=') or is_target_binary(part):
/arkcompiler/ets_frontend/ets2panda/linter/test/main/
Dpartial_type.ets44 type PART = Partial<Style>;
45 let part: PART = {}; // Ok,
46 part = {color: 0xFFFFFF}; // Ok
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/05.generics/03.utility_types/01.partial_utility_type/
Dstatic_partial_type.params.yaml25 doc: Static field is not a part of Partial<T>
36 doc: Static field is not a part of Partial<T>
73 …Static field is a part of Partial<T> class. Field becomes optional and, thus, gets undefined value.
92 …Static field is a part of Partial<T> class. Field becomes optional and, thus, gets undefined value.
103 doc: Static method is not a part of Partial<T>.
114 doc: Static method is not a part of Partial<T>.
/arkcompiler/ets_frontend/ets2panda/lsp/include/
Dtypes.h125 void SetDocumentation(const SymbolDisplayPart &part) in SetDocumentation()
127 documentation_.push_back(part); in SetDocumentation()
130 void SetDisplayParts(const SymbolDisplayPart &part) in SetDisplayParts()
132 displayParts_.push_back(part); in SetDisplayParts()
165 void SetPrefixDisplayParts(const SymbolDisplayPart &part) in SetPrefixDisplayParts()
167 prefixDisplayParts_.push_back(part); in SetPrefixDisplayParts()
170 void SetSuffixDisplayParts(const SymbolDisplayPart &part) in SetSuffixDisplayParts()
172 suffixDisplayParts_.push_back(part); in SetSuffixDisplayParts()
174 void SetSeparatorDisplayParts(const SymbolDisplayPart &part) in SetSeparatorDisplayParts()
176 separatorDisplayParts_.push_back(part); in SetSeparatorDisplayParts()
/arkcompiler/runtime_core/static_core/plugins/ets/doc/spec/
D19_stdlib.rst25 The Standard Library has two parts: the common part provides |TS| compatibility,
26 and the |LANG|-specific part adds more advanced features.
29 a separate document that is part of the |LANG| distribution package.
/arkcompiler/ets_frontend/ets2panda/ir/ets/
DetsTypeReference.h25 explicit ETSTypeReference(ir::ETSTypeReferencePart *part, ArenaAllocator *const allocator) in ETSTypeReference() argument
26 : TypeNode(AstNodeType::ETS_TYPE_REFERENCE, allocator), part_(part) in ETSTypeReference()
30 ir::ETSTypeReferencePart *Part() in Part() function
35 ir::ETSTypeReferencePart *Part() const in Part() function
/arkcompiler/ets_frontend/ets2panda/ir/statements/
DannotationUsage.cpp123 auto *part = expr_->AsETSTypeReference()->Part(); in GetBaseName() local
124 if (part->Name()->IsIdentifier()) { in GetBaseName()
125 ES2PANDA_ASSERT(part->Name()->AsIdentifier()->Name().Is(ERROR_LITERAL)); in GetBaseName()
126 return part->Name()->AsIdentifier(); in GetBaseName()
129 return part->Name()->AsTSQualifiedName()->Right(); in GetBaseName()
DannotationDeclaration.cpp114 auto *part = Expr()->AsETSTypeReference()->Part(); in GetBaseName() local
115 if (part->Name()->IsIdentifier()) { in GetBaseName()
116 return part->Name()->AsIdentifier(); in GetBaseName()
118 if (part->Name()->IsTSQualifiedName()) { in GetBaseName()
119 return part->Name()->AsTSQualifiedName()->Right(); in GetBaseName()
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_test_suite/modules/spawn/
Dspawn.cpp28 std::string part; in SplitString() local
29 while (std::getline(iss, part, delim)) { in SplitString()
31 env->String_NewUTF8(part.data(), part.size(), &newString); in SplitString()
/arkcompiler/runtime_core/static_core/plugins/ets/tests/mock/
Dcalling_methods_test_1.cpp38 // Call<type>Method part in TEST_F()
50 // Call<type>MethodArray part in TEST_F()
62 // Call<type>MethodList part in TEST_F()
84 // Call<type>Method part in TEST_F()
96 // Call<type>MethodArray part in TEST_F()
108 // Call<type>MethodList part in TEST_F()
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/std/core/
DIntlNumberFormatToParts.ets209 function assertPartEq(part: Intl.NumberFormatPart, eType: string, eValue: string) {
210 assertEQ(part.type, eType, `Error! part.type is not equal to ${eType}, got ${part.type}`);
211 assertEQ(part.value, eValue, `Error! part.value is not equal to ${eValue}, got ${part.value}`);
213 function assertRangePartEq(part: Intl.NumberRangeFormatPart, eType: string, eValue: string, eSource…
214 assertEQ(part.type, eType, `Error! part.type is not equal to ${eType}, got ${part.type}`);
215 assertEQ(part.value, eValue, `Error! part.value is not equal to ${eValue}, got ${part.value}`);
216 …assertEQ(part.source, eSource, `Error! part.source is not equal to ${eSource}, got ${part.source}`…
283 assertEQ(zeroParts.length, 1, "Expected 1 part for zero");
457 assertEQ(negParts.length, 1, "Expected 1 part for negative number");
469 assertEQ(zeroParts.length, 1, "Expected 1 part for zeroExcept");
[all …]
/arkcompiler/runtime_core/static_core/irtoc/backend/
Dcompilation.h73 /* CC-OFFNXT(G.PRE.02) part name */ \
87 /* CC-OFFNXT(G.PRE.02) part name */ \
89 /* CC-OFFNXT(G.PRE.02) part name */ \
/arkcompiler/ets_frontend/ets2panda/test/compiler/ets/
Dgeneric_typealias_1-expected.txt25 "part": {
104 "part": {
232 "part": {
256 "part": {
813 "part": {
876 "part": {
900 "part": {
1054 "part": {
1078 "part": {
1181 "part": {
[all …]
Dunion_types_merging-expected.txt181 "part": {
382 "part": {
583 "part": {
784 "part": {
1140 "part": {
1341 "part": {
1542 "part": {
1743 "part": {
2131 "part": {
2178 "part": {
[all …]
Dgeneric_override_2-expected.txt73 "part": {
151 "part": {
198 "part": {
222 "part": {
377 "part": {
455 "part": {
502 "part": {
526 "part": {
669 "part": {
696 "part": {
[all …]
/arkcompiler/ets_frontend/ets2panda/ir/
DastNode.h56 /* CC-OFFNXT(G.PRE.02,G.PRE.09) name part*/
61 /* CC-OFFNXT(G.PRE.02,G.PRE.09) name part*/
71 case AstNodeType::nodeType: { /* CC-OFF(G.PRE.02) qualified name part*/ \
77 case AstNodeType::nodeType1: { /* CC-OFF(G.PRE.02) qualified name part*/ \
80 case AstNodeType::nodeType2: { /* CC-OFF(G.PRE.02) qualified name part*/ \
107 /* CC-OFFNXT(G.PRE.02) name part*/
113 /* CC-OFFNXT(G.PRE.02,G.PRE.09) name part code gen*/
137 /* CC-OFFNXT(G.PRE.02) name part*/ \ in AST_NODE_REINTERPRET_MAPPING()
139 return type_ == AstNodeType::nodeType; /* CC-OFF(G.PRE.02) name part*/ \ in AST_NODE_REINTERPRET_MAPPING()
149 return type_ == AstNodeType::nodeType1; /* CC-OFF(G.PRE.02) name part*/ \ in AST_NODE_REINTERPRET_MAPPING()
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/xgc/ea_coro/
Dea_cycle_worker.js38 // Create cycle references part for EA Worker
40 // Notify main JS VM that EA cycle part is created
/arkcompiler/runtime_core/static_core/plugins/ets/compiler/docs/
Dinterop_string_constpool_doc.md23 ### ArkTS frontend part
29 ### Class init part
37 ### Call part
/arkcompiler/ets_frontend/ets2panda/test/parser/ets/
Dawait_complex_promise-expected.txt28 "part": {
52 "part": {
139 "part": {
502 "part": {
526 "part": {
550 "part": {
731 "part": {
961 "part": {
988 "part": {
1012 "part": {
[all …]
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/astchecker/
DREADME.md87 let a = new int[/* @@ Error TypeError: Index fractional part should be zero. */5.1]
97 /* @@? 2:19 Error TypeError: Index fractional part should be zero. */
110 /* @@? 2:19 Error TypeError: Index fractional part should be zero. */
148 /* @@? 2:19 Error TypeError: Index fractional part should be zero. */
/arkcompiler/runtime_core/taihe/compiler/taihe/parse/
Dast_generation.py68 part = self.get_span(child)
69 if part is None:
72 span = part
74 span = span | part
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/
Dtype_info.h53 // The number of the bit from which exponential part starts in float
55 // Size exponential part in float
57 // The maximum exponential part of float that can be loaded in int64
63 // The number of the bit from which exponential part starts in double
65 // Size exponential part in double
67 // The maximum exponential part of double that can be loaded in int64
/arkcompiler/runtime_core/static_core/plugins/ets/snippet_verifier/
Dverify.py40 "part": 0,
83 if int(snippet_meta.get("part")) >= 1 and previous_snippet_name:
117 if re.fullmatch("part\d+", trailed_line):
118 return "part"
130 elif tag == "part":
131 snippet_tags["part"] = re.findall(r"\d+", trailed_line)[0]

12345678910>>...35