| /arkcompiler/runtime_core/tests/cts-generator/runner/reporters/ |
| D | base_test_reporter.rb | 18 raise NotImplementedError, "#{self.class} does not implement prologue()." 22 raise NotImplementedError, "#{self.class} does not implement epilogue()." 26 raise NotImplementedError, "#{self.class} does not implement log_exclusion()." 30 raise NotImplementedError, "#{self.class} does not implement log_skip_include()." 34 raise NotImplementedError, "#{self.class} does not implement log_skip_bugid()." 38 raise NotImplementedError, "#{self.class} does not implement log_skip_ignore()." 42 raise NotImplementedError, "#{self.class} does not implement log_skip_only_ignore()." 46 raise NotImplementedError, "#{self.class} does not implement log_ignore_ignored()." 50 raise NotImplementedError, "#{self.class} does not implement log_start_command()." 54 raise NotImplementedError, "#{self.class} does not implement log_failed_compilation()." [all …]
|
| /arkcompiler/runtime_core/docs/ |
| D | assembly_format.md | 5 …does not describe bytecode instructions supported by the Panda virtual machine, refer to the [Byte… 12 … at the assembly language level because we might support a language which does not implement class… 70 As stated above, current version of Panda assembly does not favor any language as the platform is d… 103 | `external` | Marks an externally defined function. Does not require value. | 104 | `native` | Marks an externally defined function. Does not require value. | 105 | `noimpl` | Marks a function without implementation. Does not require value. | 106 | `static` | Marks a function as static. Does not require value. | 125 | `external` | Marks an externally defined record. Does not require value. | 131 | `external` | Marks an externally defined field. Does not require value. | 132 | `static` | Marks an statically defined field. Does not require value. | [all …]
|
| D | rationale-for-bytecode.md | 211 There may be a concern: Does a statically typed bytecode forbid us to support a dynamically typed 212 language? No, it does not. In practice, it is always possible to compile a dynamically typed 216 There may be another concern: Does a statically-typed bytecode imply statically-typed registers? 217 I.e. does it mean that if `adda reg1, reg2` operates only on 64-bit integers, registers `reg1`
|
| /arkcompiler/ets_runtime/ecmascript/builtins/ |
| D | builtins_symbol.cpp | 74 // If s does not have a [[SymbolData]] internal slot, throw a TypeError exception. in ToString() 138 // If s does not have a [[SymbolData]] internal slot, throw a TypeError exception. in ValueOf() 140 // If s does not have a [[SymbolData]] internal slot, throw a TypeError exception. in ValueOf() 164 // 4.Assert: GlobalSymbolRegistry does not currently contain an entry for stringKey. in For() 188 // 3.Assert: GlobalSymbolRegistry does not currently contain an entry for sym. in KeyFor() 219 // 4.If s does not have a [[SymbolData]] internal slot, throw a TypeError exception. in ToPrimitive() 222 // If s does not have a [[SymbolData]] internal slot, throw a TypeError exception. in ToPrimitive() 252 // If s does not have a [[SymbolData]] internal slot, throw a TypeError exception. in ThisSymbolValue()
|
| D | builtins_dataview.cpp | 46 // 3. If buffer does not have an [[ArrayBufferData]] internal slot, throw a TypeError exception. in DataViewConstructor() 120 // 3. If O does not have a [[ViewedArrayBuffer]] internal slot, throw a TypeError exception. in GetBuffer() 122 …THROW_TYPE_ERROR_AND_RETURN(thread, "O does not have a [[ViewedArrayBuffer]]", JSTaggedValue::Exce… in GetBuffer() 144 // 3. If O does not have a [[ViewedArrayBuffer]] internal slot, throw a TypeError exception. in GetByteLength() 146 …THROW_TYPE_ERROR_AND_RETURN(thread, "O does not have a [[ViewedArrayBuffer]]", JSTaggedValue::Exce… in GetByteLength() 174 // 3. If O does not have a [[ViewedArrayBuffer]] internal slot, throw a TypeError exception. in GetOffset() 176 …THROW_TYPE_ERROR_AND_RETURN(thread, "O does not have a [[ViewedArrayBuffer]]", JSTaggedValue::Exce… in GetOffset() 338 // 2. If view does not have a [[DataView]] internal slot, throw a TypeError exception. in GetViewValue() 392 // 2. If view does not have a [[DataView]] internal slot, throw a TypeError exception. in SetViewValue()
|
| D | builtins_map.cpp | 76 // 3.If S does not have a [[MapData]] internal slot, throw a TypeError exception. in Set() 98 // 3.If S does not have a [[MapData]] internal slot, throw a TypeError exception. in Clear() 114 // 3.If S does not have a [[MapData]] internal slot, throw a TypeError exception. in Delete() 132 // 3.If S does not have a [[MapData]] internal slot, throw a TypeError exception. in Has() 149 // 3.If S does not have a [[MapData]] internal slot, throw a TypeError exception. in Get() 166 // 3.If S does not have a [[MapData]] internal slot, throw a TypeError exception. in ForEach() 225 // 3.If S does not have a [[MapData]] internal slot, throw a TypeError exception. in GetSize()
|
| D | builtins_set.cpp | 114 // 3.If S does not have a [[SetData]] internal slot, throw a TypeError exception. in Add() 135 // 3.If S does not have a [[SetData]] internal slot, throw a TypeError exception. in Clear() 152 // 3.If S does not have a [[SetData]] internal slot, throw a TypeError exception. in Delete() 171 // 3.If S does not have a [[SetData]] internal slot, throw a TypeError exception. in Has() 188 // 3.If S does not have a [[SetData]] internal slot, throw a TypeError exception. in ForEach() 248 // 3.If S does not have a [[SetData]] internal slot, throw a TypeError exception. in GetSize()
|
| D | builtins_weak_map.cpp | 83 // 3.If S does not have a [[WeakMapData]] internal slot, throw a TypeError exception. in Delete() 105 // 3.If S does not have a [[WeakMapData]] internal slot, throw a TypeError exception. in Has() 126 // 3.If S does not have a [[WeakMapData]] internal slot, throw a TypeError exception. in Get() 147 // 3.If S does not have a [[WeakMapData]] internal slot, throw a TypeError exception. in Set()
|
| D | builtins_weak_set.cpp | 117 // 3.If S does not have a [[WeakSetData]] internal slot, throw a TypeError exception. in Add() 144 // 3.If S does not have a [[WeakSetData]] internal slot, throw a TypeError exception. in Delete() 165 // 3.If S does not have a [[SetData]] internal slot, throw a TypeError exception. in Has()
|
| D | builtins_finalization_registry.cpp | 75 …THROW_TYPE_ERROR_AND_RETURN(thread, "thisValue is not object or does not have an internalSlot inte… in Register() 112 …THROW_TYPE_ERROR_AND_RETURN(thread, "thisValue is not object or does not have an internalSlot inte… in Unregister()
|
| /arkcompiler/ets_frontend/es2panda/ir/expressions/ |
| D | memberExpression.cpp | 102 … {"Property ", property_->AsIdentifier()->Name(), " does not exist on this type."}, in Check() 107 … {"Property ", property_->AsNumberLiteral()->Str(), " does not exist on this type."}, in Check() 112 … {"Property ", property_->AsStringLiteral()->Str(), " does not exist on this type."}, in Check() 145 …checker->ThrowTypeError({"Property ", property_->AsIdentifier()->Name(), " does not exist on this … in Check()
|
| /arkcompiler/ets_frontend/test262/ |
| D | dynamicImport_tests.txt | 430 nested-while-import-catch-file-does-not-exist.js 434 nested-async-gen-return-await-file-does-not-exist.js 438 nested-async-function-await-file-does-not-exist.js 440 nested-do-while-file-does-not-exist.js 449 top-level-import-catch-file-does-not-exist.js 454 nested-arrow-import-catch-file-does-not-exist.js 456 nested-async-arrow-function-return-await-file-does-not-exist.js 458 nested-else-import-catch-file-does-not-exist.js 464 nested-async-arrow-function-await-file-does-not-exist.js 476 nested-async-gen-await-file-does-not-exist.js [all …]
|
| /arkcompiler/runtime_core/tests/verifier-tests/ |
| D | issue_964.pa | 16 f64toi32 # instruction is invalid because acc value does not match expected type.
|
| /arkcompiler/runtime_core/verification/models/ |
| D | README.md | 28 …examples), where supertypes intersection calculation during context merge does not lead to correct…
|
| /arkcompiler/runtime_core/tests/cts-generator/cts-template/ |
| D | call.yaml | 572 # 1st arg does not match, exit 632 # 1st arg does not match, exit 639 # 1st arg does not match, exit 646 # 1st arg does not match, exit 695 # 1st arg does not match, exit 748 # 1st arg does not match, exit 756 # 1st arg does not match, exit 764 # 1st arg does not match, exit 859 # 1st arg does not match, exit 867 # 1st arg does not match, exit [all …]
|
| D | call.range.yaml | 489 # 1st arg does not match, exit 549 # 1st arg does not match, exit 556 # 1st arg does not match, exit 563 # 1st arg does not match, exit 612 # 1st arg does not match, exit 664 # 1st arg does not match, exit 672 # 1st arg does not match, exit 680 # 1st arg does not match, exit 775 # 1st arg does not match, exit 783 # 1st arg does not match, exit [all …]
|
| /arkcompiler/ets_runtime/ecmascript/pgo_profiler/ |
| D | pgo_profiler_loader.cpp | 60 // The file does not exist. Enter full compiler mode. in LoadAndVerify() 129 LOG_ECMA(ERROR) << "The file path( " << realPath << ") does not end with .ap"; in LoadAPBinaryFile()
|
| /arkcompiler/ets_frontend/testTs/ |
| D | README.md | 4 1. skip_tests.json:avoids code files and does not perform operations on TS files stored in the file.
|
| /arkcompiler/runtime_core/bytecode_optimizer/tests/benchmark/ |
| D | compare.py | 42 print("Input file (%s) does not exists." % args.old) 46 print("Input file (%s) does not exists." % args.new)
|
| /arkcompiler/runtime_core/libpandabase/os/ |
| D | failure_retry.h | 36 // Windows Os does not support TEMP_FAILURE_RETRY macro
|
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | gate.cpp | 40 CheckFailed("State input does not match (expected:" + GateMetaData::Str(expected) in CheckInputOpcode() 58 CheckFailed("Value input does not match (expected:" in CheckInputMachineType() 68 CheckFailed("State input does not match (expected:<General State> actual:" in CheckGeneralState() 292 CheckFailed("Number of depend flows does not match control flows (expected:" + in CheckSelector() 297 CheckFailed("Number of data flows does not match control flows (expected:" + in CheckSelector() 305 "State input does not match (expected:[MERGE|LOOP_BEGIN] actual:" + in CheckSelector() 318 CheckFailed("State input does not match (" in CheckRelay()
|
| /arkcompiler/ets_frontend/es2panda/test/parser/ts/type_checker/ |
| D | objectDestructuring1-expected.txt | 121 TypeError: Property a does not exist on type { }. [objectDestructuring1.ts:17:5]
|
| /arkcompiler/ets_runtime/ecmascript/ |
| D | ecma_string-inl.h | 153 ASSERT_PRINT(CanBeCompressed(string), "canBeCompresse does not match the real value!"); in FastSubUtf8String() 176 …ASSERT_PRINT(canBeCompressed == CanBeCompressed(string), "canBeCompresse does not match the real v… in FastSubUtf16String()
|
| /arkcompiler/runtime_core/compiler/optimizer/templates/intrinsics/ |
| D | intrinsic_codegen_test.inl.erb | 31 …expected message is "This line should be unreachable" but sometimes gtest does not capture stderr …
|
| /arkcompiler/runtime_core/tests/cts-generator/generator/ |
| D | test.rb | 41 LOG.error "Test '#{@test_name}' does not have definition of instruction commands"
|