Home
last modified time | relevance | path

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

12345

/arkcompiler/ets_frontend/ts2panda/src/
Dvariable.ts134 this.status = InitStatus.INITIALIZED;
139 return this.status == InitStatus.INITIALIZED;
157 this.status = InitStatus.INITIALIZED;
162 return this.status == InitStatus.INITIALIZED;
Dindex.ts355 throw new Error("watched errMsg file has not been initialized");
366 throw new Error("watched abc file has not been initialized");
383 throw new Error("watchFileServer has not been initialized");
468 console.log("watchFileServer has been initialized supportTimeout");
480 throw new Error("watched js file has not been initialized");
DaddVariable2Scope.ts99 … parentVariableScope.add(MandatoryArguments, VarDeclarationKind.CONST, InitStatus.INITIALIZED);
104 scope.add(MandatoryArguments, VarDeclarationKind.CONST, InitStatus.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/irtoc/lang/
Dregmask.rb46 raise "RegMask is initialized with symbol, but Regmap wasn't specified" unless @regmap
49 raise "RegMask is initialized with wrong type: #{value.class}" unless value.is_a?(Integer)
67 raise "RegMask is initialized with wrong type: #{value.class}" unless value.is_a?(Integer)
/arkcompiler/runtime_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/runtime_core/libpandabase/mem/
Dpool_map.cpp53 // We can't get allocator info for not properly initialized pools in GetAllocatorInfo()
66 // We can't get space type for not properly initialized pools in GetSpaceType()
Dpool_manager.cpp57 LOG(DEBUG, ALLOC) << "PoolManager Initialized"; in Initialize()
/arkcompiler/ets_frontend/es2panda/binder/
DvariableFlags.h135 INITIALIZED = 1 << 29, enumerator
144 INITIALIZED, enumerator
/arkcompiler/runtime_core/runtime/mem/gc/heap-space-misc/
Dcrossing_map.cpp44 LOG_CROSSING_MAP(FATAL) << "Try to initialize already initialized CrossingMap"; in Initialize()
77 … << " wasn't INITIALIZED. Initialize it with offset " << obj_offset; in AddObject()
88 … << " is INITIALIZED and CROSSED BORDERS, but this object is the first in it." in AddObject()
96 << " is INITIALIZED, but this object is the first in it." in AddObject()
184 … << std::hex << next_obj_addr << " as INITIALIZED with offset " << std::dec in RemoveObject()
Dcrossing_map.h144 …// - if Status == Initialized, the Offset value is an offset in words of the first element on this…
150 …// - if Status == Initialized and Crossed border, the Offset value is an offset in words of the fi…
155 // This element of crossing map hasn't been initialized yet.
/arkcompiler/runtime_core/tests/cts-generator/cts-template/
Dstobj.v.64.yaml81 …description: Check that verifier reports error if a register is not initialized in PandaAssembly c…
105 # v0 (value) not initialized in the frame
113 # v0 (object) not initialized in the frame
122 …description: Check that verifier reports error if a register is not initialized in PandaAssembly c…
146 # v0 (value) not initialized in the frame
154 # v0 (object) not initialized in the frame
Dldobj.64.yaml98 …description: Check that verifier reports error if source registers are not initialized in Panda co…
112 %s # verifier error expected, because the register is not initialized
125 …description: Check that verifier reports error if source registers are not initialized in PandaAss…
139 %s # verifier error expected, because the register is not initialized
Dreturn.64.yaml616 …description: Check that verifier reports an error if accumulator is not initialized in Pandasm con…
635 …description: Check that verifier reports an error if accumulator is not initialized in PandaAssemb…
655 …description: Check that verifier reports an error if accumulator is not initialized in Pandasm con…
675 …description: Check that verifier reports an error if accumulator is not initialized in PandaAssemb…
Dreturn.yaml578 …description: Check that verifier reports an error if accumulator is not initialized, static call, …
599 …description: Check that verifier reports an error if accumulator is not initialized, static call, …
620 …description: Check that verifier reports an error if accumulator is not initialized, virtual call,…
642 …description: Check that verifier reports an error if accumulator is not initialized, virtual call,…
Dstobj.v.yaml82 …description: Check that verifier reports error if a register is not initialized in PandaAssembly c…
106 # v0 (value) not initialized in the frame
114 # v0 (object) not initialized in the frame
123 …description: Check that verifier reports error if a register is not initialized in PandaAssembly c…
147 # v0 (value) not initialized in the frame
155 # v0 (object) not initialized in the frame
Dldobj.v.64.yaml98 …description: Check that verifier reports error if source registers are not initialized in Panda co…
112 %s # verifier error expected, because v2 is not initialized
123 …description: Check that verifier reports error if source registers are not initialized in PandaAss…
137 %s # verifier error expected, because v2 is not initialized
Dstobj.64.yaml63 description: Check that verifier reports error if source registers are not initialized
83 # acc (value) not initialized in the frame
91 # v0 (object) not initialized in the frame
Dnewobj.yaml38 … object into register. The object should be initialized by calling initialization method before
415 description: Check that objects fields are properly initialized in PandaAssembly context.
762 description: Check that objects fields are properly initialized in PandaAssembly context.
1135 … object into register. The object should be initialized by calling initialization method before
1179 … object into register. The object should be initialized by calling initialization method before
Dstobj.yaml63 description: Check that verifier reports error if source registers are not initialized
83 # acc (value) not initialized in the frame
91 # v0 (object) not initialized in the frame
/arkcompiler/runtime_core/docs/
Ddebugger-vscode-communication.md18 * It's critical for VSCode to have a debug server initialized at allocated time so we establish a t…
/arkcompiler/runtime_core/verification/jobs/
Dthread_pool.cpp120 LOG(INFO, VERIFIER) << "Initialized verifier thread pool"; in Initialize()
122 // already initialized by another thread in Initialize()
/arkcompiler/runtime_core/compiler/docs/
Dplt.md25 …ould actually store `Method pointer` after resolving, but during AOT file loading it is initialized
119 When `SecondSlot` in non-zero it means that `Class` is known to be in `Initialized` state already.
157 The condition is whether `Class` state is `Initialized`, as returning from `InitializeClassById` en…
/arkcompiler/toolchain/tooling/
Ddebugger_service.cpp29 LOG_DEBUGGER(ERROR) << "JS debugger was initialized"; in InitializeDebugger()
/arkcompiler/runtime_core/runtime/mem/gc/epsilon/
Depsilon.cpp37 LOG(DEBUG, GC) << "Epsilon GC initialized..."; in InitializeImpl()

12345