Searched full:because (Results 1 – 25 of 798) sorted by relevance
12345678910>>...32
| /arkcompiler/runtime_core/cmake/ |
| D | ClangTidy.cmake | 96 # 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/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/09.field_access_expressions/ |
| D | safe_field_access_1.sts | 18 … contains ‘?.’ is called safe field access because it handles null safely. The type of "a?." is ne…
|
| /arkcompiler/runtime_core/static_core/libllvmbackend/cmake/ |
| D | LLVMInlineModules.cmake | 32 …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/plugins/ets/tests/ets-templates/15.semantic_rules/06.type_inference/01.smart_types/ |
| D | un2.params.yaml | 68 … 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/verification/ |
| D | TODO.txt | 6 …- [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/ |
| D | TransformPlugin.ts | 25 // 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/runtime_core/compiler/docs/ |
| D | interface_inline_cache.md | 52 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:
|
| D | aot_cha.md | 82 For JIT compiler steps 2-3-4 is merged into one, because it can obtain the index of method in virtu… 85 For AOT compilation the method and its index in virtual table is unknown because at runtime the cha… 91 because the MethodPtr is needed only to obtain the virtual table index. The indices inside virtual …
|
| /arkcompiler/runtime_core/static_core/compiler/docs/ |
| D | interface_inline_cache.md | 52 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:
|
| D | aot_cha.md | 82 For JIT compiler steps 2-3-4 is merged into one, because it can obtain the index of method in virtu… 85 For AOT compilation the method and its index in virtual table is unknown because at runtime the cha… 91 because the MethodPtr is needed only to obtain the virtual table index. The indices inside virtual …
|
| /arkcompiler/ets_frontend/ets2panda/test/ast/parser/ets/ |
| D | getter_setter_access_modifiers_2.sts | 42 …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/static_core/plugins/ets/tests/checked/ |
| D | ets_escape_array.sts | 57 // NOTE(schernykh): It must be removed, but now - not, because of incorrect visit for SaveStateDeop… 65 // NOTE(schernykh): It must be removed, but now - not, because of incorrect visit for SaveStateDeop… 78 // Escape isn't apply, because array is used in catch block
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/spec/16.Support_for_GUI_Programming/annotations/ |
| D | annotation_@LocalStorageLink.sts | 33 // initial value will be 47, because set in above code 37 // initial value will be 48, because set in above code
|
| /arkcompiler/ets_frontend/es2panda/test/parser/ts/ |
| D | test-class-definiton27-expected.txt | 1 SyntaxError: Property cannot have an initializer because it is marked abstract. [test-class-definit…
|
| D | test_override-expected.txt | 1 SyntaxError: This member cannot have an 'override' modifier because its containing class does not e…
|
| D | test_override7-expected.txt | 1 SyntaxError: This member cannot have an 'override' modifier because its containing class does not e…
|
| /arkcompiler/runtime_core/static_core/runtime/mem/gc/ |
| D | gc_barrier_set.cpp | 43 …// doesn't for G1, because card_table is processed concurrently, so it can be cleared before we en… in CheckPostBarrier() 104 // because now we consider every field as an object reference field. in PostBarrier() 112 // No data race because G1GC sets this flag on pause in IsPreBarrierEnabled() 163 // Check one card only because cards from beginCard to lastCard belong to the same region in PostBarrier() 171 // because now we consider every field as an object reference field. in PostBarrier()
|
| /arkcompiler/ets_frontend/ets2panda/linter/docs/rules/ |
| D | recipe149.md | 8 etc.) because in ArkTS, a ``class`` declaration introduces a new type,
|
| D | recipe128.md | 7 ArkTS does not support ambient module declaration because it has its
|
| D | recipe134.md | 7 ArkTS does not support definite assignment assertions ``let v!: T`` because
|
| D | recipe137.md | 7 ArkTS does not support both global scope and ``globalThis`` because untyped
|
| D | recipe143.md | 7 ArkTS does not support import assertions because in the language import is a
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/dynamic_object/ |
| D | dynamic_call.sts | 30 // Right now we need this wrapper because without it field `foo` is uninitialized 64 …assert(x == callee() as Int) // through variable is different, because we don't need to load module
|
| /arkcompiler/runtime_core/static_core/runtime/asm_defines/ |
| D | CMakeLists.txt | 64 # We have to disable LTO, because it generates llvm IR instead of assembly for '-S' option. 71 # (-fno-lto doesn't work because compilation fails with inappropriate regalloc)
|
| /arkcompiler/runtime_core/static_core/plugins/ets/irtoc_scripts/ |
| D | to_string_cache.irt | 50 # Volatile because need acquire ordering 64 # Relaxed load because we have acquire above
|
12345678910>>...32