Home
last modified time | relevance | path

Searched full:because (Results 1 – 25 of 960) sorted by relevance

12345678910>>...39

/arkcompiler/ets_frontend/ets2panda/test/ast/compiler/ets/extension_accessor_tests/
DextensionGetterOnly.ets28 /* @@@ label1 Error TypeError: Cannot assign to this property because it is readonly. */
29 /* @@@ label2 Error TypeError: Cannot assign to this property because it is readonly. */
30 /* @@@ label3 Error TypeError: Cannot assign to this property because it is readonly. */
31 /* @@@ label4 Error TypeError: Cannot assign to this property because it is readonly. */
DextensionGetterOnly2.ets36 /* @@@ label1 Error TypeError: Cannot assign to this property because it is readonly. */
37 /* @@@ label2 Error TypeError: Cannot assign to this property because it is readonly. */
38 /* @@@ label3 Error TypeError: Cannot assign to this property because it is readonly. */
39 /* @@@ label4 Error TypeError: Cannot assign to this property because it is readonly. */
DextensionSetterOnly.ets27 /* @@@ label1 Error TypeError: Cannot read from this property because it is writeonly. */
28 /* @@@ label2 Error TypeError: Cannot read from this property because it is writeonly. */
29 /* @@@ label3 Error TypeError: Cannot read from this property because it is writeonly. */
DextensionSetterOnly2.ets38 /* @@@ label1 Error TypeError: Cannot read from this property because it is writeonly. */
39 /* @@@ label2 Error TypeError: Cannot read from this property because it is writeonly. */
40 /* @@@ label3 Error TypeError: Cannot read from this property because it is writeonly. */
/arkcompiler/ets_frontend/ets2panda/test/ast/compiler/ets/
Dtypealias_default_type_02.ets24 function test2(call: ErrorCallBack2) { } // should be error because typeParam has no default type
26 function test3(call: ErrorCallBack2<Object>) { } // should be error because we have not provided al…
28 function test4(call: ErrorCallBack2<Object, Error>) { } // should be ok because we have provided al…
30 function test5(call: ErrorCallBack3<Object>) { } // should be ok because the second type param has …
Dclass_inheritance.ets24 /* @@? 17:5 Error TypeError: Cannot infer type for objectProp because class composite needs an expl…
25 /* @@? 21:5 Error TypeError: Cannot infer type for objectProp because class composite needs an expl…
Dtypealias_default_type_01.ets22 function test2(call: ErrorCallBack2) { } // should be error because typeParam has no default type
24 function test3(call: ErrorCallBack2<Error>) { } // should be ok because we have explicitly provided…
/arkcompiler/runtime_core/cmake/
DClangTidy.cmake96 # because of its syntax limitations (in particular, all checks should be passed
144 … "-bugprone-macro-parentheses" # disabled because it is hard to write macros with types with it
145 "-llvm-header-guard" # disabled because of incorrect root prefix
146 "-llvm-include-order" # disabled because conflicts with the clang-format
147 "-readability-identifier-naming" # disabled because we will use little-hump-style
149 …"-fuchsia-trailing-return" # disabled because we have a lot of false positives and it is stylisti…
150 …"-fuchsia-default-arguments-calls" # disabled because we use functions with default arguments a lot
151 …"-fuchsia-default-arguments-declarations" # disabled because we use functions with default argumen…
/arkcompiler/ets_frontend/ets2panda/test/ast/compiler/ets/namespace_tests/
Dnamespace_bad_merged01.ets24 /* @@? 17:1 Error SyntaxError: Unable to merge namespaces 'A', because their modifiers are differen…
25 /* @@? 21:3 Error SyntaxError: Unable to merge namespaces 'C', because their modifiers are differen…
/arkcompiler/runtime_core/static_core/plugins/ets/tests/test-lists/ets-cts/
Dets-cts-ignored-AMD64-AOT.txt1 #17881 Skip these, because the run fails if multiple files are connected. The connection is necessa…
Dets-cts-ignored-ARM64-AOT.txt1 #17881 Skip these, because the run fails if multiple files are connected. The connection is necessa…
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/09.field_access_expressions/
Dsafe_field_access_1.ets18 … contains ‘?.’ is called safe field access because it handles null safely. The type of "a?." is ne…
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/15.semantic_rules/06.type_inference/01.smart_types/
Dun2.params.yaml68 … this.fld = this.fld / 2 // CTE: smart casting isn't supported here because of multi-threading
81 ….fld = this.fld.substr(0, 1) // CTE: smart casting isn't supported here because of multi-threading
94 … this.fld = this.fld / 2 // CTE: smart casting isn't supported here because of multi-threading
108 ….fld = this.fld.substr(0, 1) // CTE: smart casting isn't supported here because of multi-threading
/arkcompiler/runtime_core/static_core/libllvmbackend/cmake/
DLLVMInlineModules.cmake32 …message(STATUS "LLVM IR inlining disabled because compiler is not 'Clang' but = '${CMAKE_CXX_COMPI…
77 …add_custom_target(${ARG_TARGET} COMMENT "Do not generate llvm inline module because NOT PANDA_LLVM…
103 # SYSTEM because passed INCLUDES contain third party headers
104 # PRIVATE because we do not expect anyone to link against the bitcode file
/arkcompiler/runtime_core/static_core/verification/
DTODO.txt6 …- [x] Passing PandaTypes to absint by const ref, because absint is not expected to change PandaTyp…
7 (and using RWLock, because of ClassLinker::AddFile)
/arkcompiler/ets_frontend/arkguard/src/transformers/
DTransformPlugin.ts25 // The order of identifier obfuscation should be as early as possible, because create or update nod…
35 // Problem description: because the property temp is obfuscated, a node update occurs, causing -kee…
/arkcompiler/ets_frontend/ets2panda/test/ast/parser/ets/
Dgetter_setter_access_modifiers_2.ets42 …or: size(s: int): void in Hex cannot override size(s: int): void in Core because overridden method…
44 /* @@? 37:22 Error TypeError: size(): int in Hex cannot override size(): int in Core because overri…
/arkcompiler/runtime_core/compiler/docs/
Dinterface_inline_cache.md52 because read and write 64bit is atomic, same `cache` maybe use at same time
56 2. because `class address` is no move in ark, so we do not need to worry that the saved class will …
63 because method* is 64bit, it must be indirectly stored,cache only have 32bit to use
100 because Method* is 8bit align, so Method* can be compressed. So the actual range we can store is:
/arkcompiler/runtime_core/static_core/compiler/docs/
Dinterface_inline_cache.md52 because read and write 64bit is atomic, same `cache` maybe use at same time
56 2. because `class address` is no move in ark, so we do not need to worry that the saved class will …
63 because method* is 64bit, it must be indirectly stored,cache only have 32bit to use
100 because Method* is 8bit align, so Method* can be compressed. So the actual range we can store is:
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_test_suite/coroutines/
DCMakeLists.txt194 # NOTE(26403) Profilesaver is turned off because of data race
205 # NOTE(26403) Profilesaver is turned off because of data race
215 # NOTE(26403) Profilesaver is turned off because of data race
225 # NOTE(26403) Profilesaver is turned off because of data race
235 # NOTE(26403) Profilesaver is turned off because of data race
/arkcompiler/runtime_core/static_core/plugins/ets/tests/debugger/src/arkdb/extensions/
Dprofiler.py31 This is required for 1.2 profiler because:
50 This differs from standard CDP implementation because:
/arkcompiler/runtime_core/static_core/plugins/ets/doc/concurrency/
Dos_based_lock_deadlock_seq.plantuml49 Thread #1 can't be unlocked because coroutine D can't be scheduled
53 Thread #2 can't be unlocked because coroutine C can't be scheduled
/arkcompiler/ets_frontend/es2panda/test/parser/ts/
Dtest-class-definiton27-expected.txt1 SyntaxError: Property cannot have an initializer because it is marked abstract. [test-class-definit…
Dtest_override-expected.txt1 SyntaxError: This member cannot have an 'override' modifier because its containing class does not e…
Dtest_override7-expected.txt1 SyntaxError: This member cannot have an 'override' modifier because its containing class does not e…

12345678910>>...39