Home
last modified time | relevance | path

Searched full:without (Results 1 – 25 of 9464) sorted by relevance

12345678910>>...379

/arkcompiler/ets_frontend/ets2panda/test/ast/compiler/ets/annotation_tests/
DannotationUsage_missing_arguements02.sts11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
29 /* @@? 20:2 Error TypeError: The required field 'testProperty2' must be specified. Fields without d…
30 /* @@? 23:2 Error TypeError: The required field 'testProperty2' must be specified. Fields without d…
31 /* @@? 23:2 Error TypeError: The required field 'testProperty1' must be specified. Fields without d…
32 /* @@? 25:6 Error TypeError: The required field 'testProperty1' must be specified. Fields without d…
DannotationUsage_missing_arguements01.sts11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
23 /* @@? 20:2 Error TypeError: The required field 'testProperty2' must be specified. Fields without
24 /* @@? 20:2 Error TypeError: The required field 'testProperty1' must be specified. Fields without
DannotationUsage_bad_param08.sts11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
26 /* @@? 21:2 Error TypeError: The required field 'testProperty2' must be specified. Fields without d…
27 /* @@? 21:2 Error TypeError: The required field 'testProperty1' must be specified. Fields without d…
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/15.semantic_rules/06.type_inference/01.smart_types/
Dcomb_10a.sts11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
32 return p === undefined ? ((): number => { a = p; return 1 })() // assigned without cast
33 …p instanceof Number ? ((): number => { num = p * 2; return 2 })() // numeric operation without cast
34 …nceof Error ? ((): number => { err = p; str = p.message; return 3 })() // field access without cast
35 … String ? ((): number => { str = p.substr(0, 1); return 4 })() // string method called without cast
36 : ((): number => { bool = !p; return 5 })() // boolean operation without cast
Dcomb_01d.sts11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
38 num = obj * 2 // numeric operation without cast
43 str = obj.message // field access without cast
47 str = obj.substr(0, 1) // string method without cast
50 bool = !obj // boolean operator without cast
Dcomb_01c.sts11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
37 num = p * 2 // numeric operation without cast
42 str = p.message // field access without cast
46 str = p.substr(0, 1) // string method without cast
49 bool = !p // boolean operator without cast
Dcomb_01b.sts11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
38 num = not_undef * 2 // numeric operation without cast
44 str = not_num.message // field access without cast
49 str = not_err.substr(0, 1) // string method without cast
52 bool = !not_err // boolean operator without cast
Dcomb_13.sts11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
33 str = p.substr(0, 1) // string method without cast
36 bool = !p // boolean operator without cast
40 str = p.message // field access without cast
43 num = p * 2 // numeric operation without cast
Dcomb_01a.sts11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
42 num = p * 2 // numeric operation without cast
48 str = p.message // field access without cast
53 str = p.substr(0, 1) // string method without cast
56 bool = !p // boolean operator without cast
Dcomb_13c.sts11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
28 num = p * 2 // numeric operation without cast
31 num = p.length // field access without cast
Dcomb_13d.sts11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
28 num = p.length // field access without cast
31 num = p == undefined ? 3.0 : p * 2 // numeric operation without cast
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/operator_new/
Doperator_new_no_arg.js11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
23 ASSERT_EQ(ret.message, 'Class without args');
27 ASSERT_EQ(ret.message, 'Class without args');
/arkcompiler/runtime_core/static_core/tests/checked/
Dloop-unroll-constant.pa10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # count gets unrolled without side exits
24 #! EVENT /_GLOBAL::main,loop-unroll,.*without side exits/
36 #! EVENT /_GLOBAL::main,loop-unroll,.*without side exits/
48 #! EVENT /_GLOBAL::main2,loop-unroll,.*without branching/
63 #! EVENT /_GLOBAL::main2,loop-unroll,.*without branching/
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/11.function_call_expression/step_1_selection_of_function/
Dstep1.params.yaml10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
57 // select the most-specific function without boxing/unboxing
69 // select the most-specific function without boxing/unboxing
292 // select function without boxing/unboxing and without rest
308 // select function with unboxing and without rest
324 // select function with boxing and without rest
343 // select function without boxing/unboxing and without default parameter
359 // select function with unboxing and without default parameter
375 // select function with boxing and without default parameter
394 // select function without boxing/unboxing and without undefined parameter
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/10.method_call_expression/02.step_2_selection_of_method/
Dstep2.params.yaml10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
264 // select method without boxing/unboxing and without rest
283 // select method with unboxing and without rest
302 // select method with boxing and without rest
324 // select method without boxing/unboxing and without default parameter
343 // select method with unboxing and without default parameter
362 // select method with boxing and without default parameter
384 // select method without boxing/unboxing and without undefined parameter
403 // select method with unboxing and without undefined parameter
422 // select method with boxing and without undefined parameter
/arkcompiler/runtime_core/static_core/irtoc/backend/
Doptions.yaml10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
37 …short - reports only LLVM_SUFFIX compilation units without dynamic methods which were skipped by L…
39 typed - same as full but without dynamic methods
/arkcompiler/ets_runtime/test/jittest/bytecode_to_cir_with_insufficient_profile_004/
Dexpect_output.txt10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 function without args.
25 function without args.
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/29.assignment/
Dorder.sts11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20 params: with and without braces
32 // without braces
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/interface/ts_to_ets/
Dinterface_method.ts11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
105 without?: WithoutOptionalMethodClass; property
110 return { with: arg, without: optional };
123 return { with: withOptional, without: withoutOptional };
/arkcompiler/ets_frontend/es2panda/test/parser/js/
Dtest-without-ending-lf.js11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
23 let c = print(); // without '0x0a'
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/13.compilation_units_packages_and_modules/08.top-level_declarations/01.exported_declarations/default_exported_declarations/
Dnothing_exported.sts11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 desc: Module to import without any entity
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/13.compilation_units_packages_and_modules/04.import_directives/03.several_bindings_for_one_import_path/
Dimport_same_names.sts11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 desc: A name is explicitly used without an alias in several bindings.
/arkcompiler/ets_frontend/arkguard/test/ut/utils/ScopeAnalyzer/
DanalyzeCatchClause.ts11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
23 // Catch block without throwing error or using console
/arkcompiler/ets_frontend/es2panda/test/parser/ts/
Dtest-without-ending-lf.ts11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
23 let c : number = print(); // without '0x0a'
/arkcompiler/ets_frontend/ets2panda/test/compiler/ets/
Dgeneric_typealias_7_neg.sts11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 …// NOTE (martin): Primitive type parameter isn't working without initialization, it'll be in a fol…

12345678910>>...379