Home
last modified time | relevance | path

Searched full:initialized (Results 1 – 25 of 327) sorted by relevance

12345678910>>...14

/arkcompiler/ets_runtime/test/moduletest/moduleHandleException/
Dexpect_output.txt17 first, ReferenceError: b is not initialized
18 same file, ReferenceError: b is not initialized
19 child file, ReferenceError: b is not initialized
20 parent file, ReferenceError: b is not initialized
21 other file, ReferenceError: b is not initialized
23 b is not initialized
27 b is not initialized
30 multi level, ReferenceError: b is not initialized
/arkcompiler/ets_frontend/ets2panda/linter/test/ts_import_ets/ts/
Dtest6.ts.json44 …"rule": "Objects of \"Sendable\" type can not be initialized using object literal or array literal…
54 …"rule": "Objects of \"Sendable\" type can not be initialized using object literal or array literal…
64 …"rule": "Objects of \"Sendable\" type can not be initialized using object literal or array literal…
74 …"rule": "Objects of \"Sendable\" type can not be initialized using object literal or array literal…
84 …"rule": "Objects of \"Sendable\" type can not be initialized using object literal or array literal…
94 …"rule": "Objects of \"Sendable\" type can not be initialized using object literal or array literal…
104 …"rule": "Objects of \"Sendable\" type can not be initialized using object literal or array literal…
114 …"rule": "Objects of \"Sendable\" type can not be initialized using object literal or array literal…
124 …"rule": "Objects of \"Sendable\" type can not be initialized using object literal or array literal…
Dtest7.ts.json54 …"rule": "Objects of \"Sendable\" type can not be initialized using object literal or array literal…
74 …"rule": "Objects of \"Sendable\" type can not be initialized using object literal or array literal…
94 …"rule": "Objects of \"Sendable\" type can not be initialized using object literal or array literal…
114 …"rule": "Objects of \"Sendable\" type can not be initialized using object literal or array literal…
134 …"rule": "Objects of \"Sendable\" type can not be initialized using object literal or array literal…
154 …"rule": "Objects of \"Sendable\" type can not be initialized using object literal or array literal…
174 …"rule": "Objects of \"Sendable\" type can not be initialized using object literal or array literal…
194 …"rule": "Objects of \"Sendable\" type can not be initialized using object literal or array literal…
214 …"rule": "Objects of \"Sendable\" type can not be initialized using object literal or array literal…
/arkcompiler/ets_frontend/ets2panda/linter/test/main/
Dsendable_class_initialization.ts.json34 …"rule": "Objects of \"Sendable\" type can not be initialized using object literal or array literal…
44 …"rule": "Objects of \"Sendable\" type can not be initialized using object literal or array literal…
64 …"rule": "Objects of \"Sendable\" type can not be initialized using object literal or array literal…
84 …"rule": "Objects of \"Sendable\" type can not be initialized using object literal or array literal…
104 …"rule": "Objects of \"Sendable\" type can not be initialized using object literal or array literal…
114 …"rule": "Objects of \"Sendable\" type can not be initialized using object literal or array literal…
124 …"rule": "Objects of \"Sendable\" type can not be initialized using object literal or array literal…
134 …"rule": "Objects of \"Sendable\" type can not be initialized using object literal or array literal…
Denum_member_non_constant.ts.json24 …"rule": "Enumeration members can be initialized only with compile time expressions of the same typ…
34 …"rule": "Enumeration members can be initialized only with compile time expressions of the same typ…
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/tests/
Djs_metadata_test.cpp1761 INITIALIZED enumerator
1846 // Set metadata status to INITIALIZED in ReadAndParseMetadataJson()
1847 metadata.status = MetadataStatus::INITIALIZED; in ReadAndParseMetadataJson()
2184 ASSERT_TRUE(metadata.status == JSMetadataTestHelper::INITIALIZED); in HWTEST_F_L0()
2195 ASSERT_TRUE(metadata.status == JSMetadataTestHelper::INITIALIZED); in HWTEST_F_L0()
2206 ASSERT_TRUE(metadata.status == JSMetadataTestHelper::INITIALIZED); in HWTEST_F_L0()
2217 ASSERT_TRUE(metadata.status == JSMetadataTestHelper::INITIALIZED); in HWTEST_F_L0()
2228 ASSERT_TRUE(metadata.status == JSMetadataTestHelper::INITIALIZED); in HWTEST_F_L0()
2239 ASSERT_TRUE(metadata.status == JSMetadataTestHelper::INITIALIZED); in HWTEST_F_L0()
2250 ASSERT_TRUE(metadata.status == JSMetadataTestHelper::INITIALIZED); in HWTEST_F_L0()
[all …]
/arkcompiler/ets_frontend/ets2panda/linter/test/rules/
Drule111.ts.json24 …"rule": "Enumeration members can be initialized only with compile time expressions of the same typ…
34 …"rule": "Enumeration members can be initialized only with compile time expressions of the same typ…
44 …"rule": "Enumeration members can be initialized only with compile time expressions of the same typ…
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/05.field_declarations/03.field_initialization/
Dwrong_initialization_order.sts17 desc: Check that readonly static field initialized first.
18 assert: Note that static fields that are readonly variables are initialized before other static fie…
Dright_initialization_order.sts17 desc: Check that readonly static field initialized first.
18 assert: Note that static fields that are readonly variables are initialized before other static fie…
/arkcompiler/ets_frontend/ets2panda/test/ast/parser/ets/
Darray_type.sts30 /* @@? 17:13 Warning Warning: Property 'a' might not have been initialized. */
31 /* @@? 18:15 Warning Warning: Property 'f' might not have been initialized. */
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/17.experimental_features/02.array_creation_expressions/01.runtime_evaluation_of_array_creation_expressions/
Dexpr.params.yaml203 let v: int[] = new int[33] // initialized with 0
212 let v: number[] = new number[33] // initialized with 0.0
221 let v: char[] = new char[33] // initialized with c'\u0000'
230 let v: boolean[] = new boolean[33] // initialized with false
241 let v: EN[] = new EN[33] // initialized with null
252 let v: EU[] = new EU[33] // initialized with undefined
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/
Dreg_info.h59 'static' can be removed and initialized here if only allocation is from only one source. */
64 static bool initialized; variable
68 if (initialized) { in VregInfo()
69 initialized = false; in VregInfo()
72 initialized = true; in VregInfo()
/arkcompiler/ets_frontend/es2panda/test/version_control/API11/syntax_feature/
Dstatic_block_supported_runtime_version-expected.txt1 Initialized
/arkcompiler/runtime_core/tests/verifier-tests/
Dbug_2084.pa32 # Check that verifier reports error if source registers are not initialized
68 ldobj.64 v0, R.fu64 # verifier error expected, because the register is not initialized
/arkcompiler/runtime_core/static_core/tests/verifier-tests/
Dbug_2084.pa32 # Check that verifier reports error if source registers are not initialized
68 ldobj.64 v0, R.fu64 # verifier error expected, because the register is not initialized
/arkcompiler/ets_frontend/es2panda/test/parser/ts/
Dtest-class-constructor11-expected.txt1 …-level statement within a constructor of a derived class that contains initialized properties, par…
Dtest-class-constructor10-expected.txt1 …-level statement within a constructor of a derived class that contains initialized properties, par…
/arkcompiler/runtime_core/static_core/irtoc/lang/
Dregmask.rb46 raise "RegMask is initialized with symbol, but Regmap wasn't specified" unless @regmap
50 raise "RegMask is initialized with wrong type: #{value.class}" unless value.is_a?(Integer)
68 raise "RegMask is initialized with wrong type: #{value.class}" unless value.is_a?(Integer)
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/koala-related-benchmarks/
Darkts-mockup.sts57 console.println("Column initialized")
75 console.println("Button initialized")
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/
Dpgo_profiler_manager.cpp136 LOG_PGO(ERROR) << "can not register pgo saving signal, data is not initialized"; in RegisterSavingSignal()
158 LOG_PGO(INFO) << "pgo profiler manager initialized, output directory: " << outDir in Initialize()
200 << (isInitialized_ ? "initialized" : "not initialized"); in Destroy()
237 LOG_PGO(INFO) << "pgo profiler data is already initialized"; in InitializeData()
241 LOG_PGO(ERROR) << "pgo profiler data is not initialized properly"; in InitializeData()
252 LOG_PGO(INFO) << "pgo profiler data is initialized"; in InitializeData()
/arkcompiler/runtime_core/static_core/runtime/
Dclass.cpp50 case Class::State::INITIALIZED: { in operator <<()
51 os << "INITIALIZED"; in operator <<()
107 …= State::ERRONEOUS || state < state_ || (state_ == State::LOADED && state == State::INITIALIZED)) { in SetState()
/arkcompiler/ets_frontend/ets2panda/linter/docs/rules/
Drecipe134.md17 let x!: number // Hint: x will be initialized before usage
/arkcompiler/runtime_core/static_core/libpandabase/mem/
Dpool_map.cpp50 // We can't get allocator info for not properly initialized pools in GetAllocatorInfo()
63 // We can't get space type for not properly initialized pools in GetSpaceType()
/arkcompiler/runtime_core/libpandabase/mem/
Dpool_map.cpp50 // We can't get allocator info for not properly initialized pools in GetAllocatorInfo()
63 // We can't get space type for not properly initialized pools in GetSpaceType()
/arkcompiler/ets_runtime/test/moduletest/moduleImportJson/
Dexpect_output.txt14 ReferenceError: a is not initialized

12345678910>>...14