Home
last modified time | relevance | path

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

12345678910>>...411

/arkcompiler/ets_frontend/ets2panda/test/ast/compiler/ets/annotation_tests/
Dannotation_without_source_policy.ets11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
47 /* @@? 18:2 Error TypeError: Annotations without 'SOURCE' cannot be used on lambda expressions, loc…
48 /* @@? 21:2 Error TypeError: Annotations without 'SOURCE' cannot be used on lambda expressions, loc…
49 /* @@? 25:6 Error TypeError: Annotations without 'SOURCE' cannot be used on lambda expressions, loc…
50 /* @@? 30:6 Error TypeError: Annotations without 'SOURCE' cannot be used on lambda expressions, loc…
51 /* @@? 34:2 Error TypeError: Annotations without 'SOURCE' cannot be used on lambda expressions, loc…
52 /* @@? 37:8 Error TypeError: Annotations without 'SOURCE' cannot be used on lambda expressions, loc…
53 /* @@? 42:2 Error TypeError: Annotations without 'SOURCE' cannot be used on lambda expressions, loc…
DannotationUsage_missing_param_for_function_param.ets11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
28 /* @@? 22:16 Error TypeError: The required field 'testProperty2' must be specified. Fields without
29 /* @@? 22:16 Error TypeError: The required field 'testProperty1' must be specified. Fields without
30 /* @@? 22:32 Error TypeError: The required field 'testProperty1' must be specified. Fields without
31 /* @@? 25:16 Error TypeError: The required field 'testProperty2' must be specified. Fields without
32 /* @@? 25:53 Error TypeError: The required field 'testProperty1' must be specified. Fields without
DannotationUsage_missing_arguements02.ets11 * 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_param_for_interface.ets11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
29 /* @@? 21:2 Error TypeError: The required field 'testProperty1' must be specified. Fields without d…
30 /* @@? 23:6 Error TypeError: The required field 'testProperty2' must be specified. Fields without d…
31 /* @@? 25:6 Error TypeError: The required field 'testProperty2' must be specified. Fields without d…
DannotationUsage_missing_param_for_variable_decl.ets11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
30 /* @@? 22:2 Error TypeError: The required field 'testProperty2' must be specified. Fields without d…
31 /* @@? 22:2 Error TypeError: The required field 'testProperty1' must be specified. Fields without d…
32 /* @@? 26:6 Error TypeError: The required field 'testProperty1' must be specified. Fields without d…
DannotationUsage_missing_arguements01.ets11 * 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_missing_param_for_type_alias.ets11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
30 /* @@? 26:6 Error TypeError: The required field 'testProperty2' must be specified. Fields without d…
31 /* @@? 22:2 Error TypeError: The required field 'testProperty2' must be specified. Fields without d…
DannotationUsage_missing_param_for_classproperty.ets11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
29 /* @@? 23:6 Error TypeError: The required field 'testProperty2' must be specified. Fields without d…
30 /* @@? 25:6 Error TypeError: The required field 'testProperty2' must be specified. Fields without d…
DannotationUsage_bad_param08.ets11 * 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.ets11 * 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.ets11 * 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.ets11 * 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_13.ets11 * 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_01b.ets11 * 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_01a.ets11 * 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.ets11 * 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.ets11 * 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/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/runtime_core/static_core/plugins/ets/tests/ets_sdk/api/@ohos/buffer/
DBlobTest.ets11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
23 …suite.addTest("Test get Blob slice from Chinese String array without options", testChineseStringSl…
24 …suite.addTest("Test get Blob slice from Chinese and English String array without options", testEng…
25 suite.addTest("Test create Blob from String array without options", testBlobFromStringArray)
26 suite.addTest("Test create Blob from ArrayBuffer without options", testBlobFromArrayBuffer)
27 suite.addTest("Test create Blob from TypedArray without options", testBlobFromTypedArray)
28 suite.addTest("Test create Blob from DataView without options", testBlobFromDataView)
29 suite.addTest("Test create Blob from other Blob without options", testBlobFromBlob)
31 suite.addTest("Test get Blob slice from String array without options", testStringArraySlice)
32 suite.addTest("Test get Blob slice from ArrayBuffer without options", testArrayBufferSlice)
[all …]
/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/ets_runtime/ecmascript/compiler/aot_file/tests/
Dan_file_info_test.cpp11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
43 // 1. The Dump method can be called without crashing. in HWTEST_F_L0()
44 // 2. The Destroy method can be called without crashing. in HWTEST_F_L0()
/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/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.
59 // select the most-specific function without boxing/unboxing
71 // select the most-specific function without boxing/unboxing
294 // select function without boxing/unboxing and without rest
310 // select function with unboxing and without rest
326 // select function with boxing and without rest
345 // select function with boxing and without undefined parameter
457 // select function without boxing/unboxing and without default parameter
473 // select function with unboxing and without default parameter
489 // select function with boxing and without default parameter
[all …]

12345678910>>...411