Home
last modified time | relevance | path

Searched refs:infos (Results 1 - 14 of 14) sorted by relevance

/arkcompiler/toolchain/tooling/test/testcases/
H A Djs_variable_first_test.h131 std::vector<std::string> infos;
132 PushValueInfo(value, infos);
139 infos.push_back("none");
144 infos.push_back(propertyInner->GetName());
146 PushValueInfo(innerValue, infos);
149 ASSERT_EQ(infos.size(), variableMap_.at(property->GetName()).size());
150 for (uint32_t j = 0; j < infos.size(); j++) {
151 ASSERT_EQ(infos[j], variableMap_.at(property->GetName())[j]);
167 void PushValueInfo(RemoteObject *value, std::vector<std::string> &infos) in PushValueInfo() argument
170 infos in PushValueInfo()
[all...]
H A Djs_variable_second_test.h131 std::vector<std::string> infos;
132 PushValueInfo(value, infos);
139 infos.push_back("none");
144 infos.push_back(propertyInner->GetName());
146 PushValueInfo(innerValue, infos);
149 ASSERT_EQ(infos.size(), variableMap_.at(property->GetName()).size());
150 for (uint32_t j = 0; j < infos.size(); j++) {
151 ASSERT_EQ(infos[j], variableMap_.at(property->GetName())[j]);
167 void PushValueInfo(RemoteObject *value, std::vector<std::string> &infos) in PushValueInfo() argument
170 infos in PushValueInfo()
[all...]
H A Djs_container_test.h106 std::vector<std::string> infos; in JsContainerTest()
119 infos.push_back(type); in JsContainerTest()
124 infos.push_back(className); in JsContainerTest()
129 infos.push_back(unserializableValue); in JsContainerTest()
134 infos.push_back(description); in JsContainerTest()
137 for (uint32_t j = 0; j < infos.size(); j++) { in JsContainerTest()
138 if (infos[j] != this->variableMap_.at(name)[j]) { in JsContainerTest()
H A Djs_module_variable_test.h291 void PushValueInfo(RemoteObject *value, std::vector<std::string> &infos) in PushValueInfo() argument
294 infos.push_back(value->GetType()); in PushValueInfo()
297 infos.push_back(value->GetSubType()); in PushValueInfo()
301 infos.push_back(value->GetClassName()); in PushValueInfo()
305 infos.push_back(value->GetUnserializableValue()); in PushValueInfo()
309 infos.push_back(value->GetDescription()); in PushValueInfo()
/arkcompiler/ets_runtime/ecmascript/napi/test/
H A Djsnapi_sendable_tests.cpp107 FunctionRef::SendablePropertiesInfos infos; in GetNewSendableClassFunction() local
113 infos.instancePropertiesInfo.keys.push_back(tempStr); in GetNewSendableClassFunction()
114 infos.instancePropertiesInfo.types.push_back(FunctionRef::SendableType::NONE); in GetNewSendableClassFunction()
115 infos.instancePropertiesInfo.attributes.push_back(PropertyAttribute(tempStr, true, true, true)); in GetNewSendableClassFunction()
116 infos.staticPropertiesInfo.keys.push_back(tempStr); in GetNewSendableClassFunction()
117 infos.staticPropertiesInfo.types.push_back(FunctionRef::SendableType::NONE); in GetNewSendableClassFunction()
118 infos.staticPropertiesInfo.attributes.push_back(PropertyAttribute(tempStr, true, true, true)); in GetNewSendableClassFunction()
119 infos.nonStaticPropertiesInfo.keys.push_back(tempStr); in GetNewSendableClassFunction()
120 infos.nonStaticPropertiesInfo.types.push_back(FunctionRef::SendableType::NONE); in GetNewSendableClassFunction()
121 infos in GetNewSendableClassFunction()
431 FunctionRef::SendablePropertiesInfos infos; HWTEST_F_L0() local
458 FunctionRef::SendablePropertiesInfos infos; HWTEST_F_L0() local
[all...]
/arkcompiler/ets_runtime/ecmascript/
H A Djsnapi_sendable.cpp23 JSNapiSendable::JSNapiSendable(JSThread *thread, FunctionRef::SendablePropertiesInfos &infos, Local<StringRef> &name) in JSNapiSendable() argument
28 InitWithPropertiesInfo(thread, infos.staticPropertiesInfo, staticDescs_); in JSNapiSendable()
29 InitWithPropertiesInfo(thread, infos.nonStaticPropertiesInfo, nonStaticDescs_); in JSNapiSendable()
30 InitWithPropertiesInfo(thread, infos.instancePropertiesInfo, instanceDescs_); in JSNapiSendable()
H A Djsnapi_sendable.h26 JSNapiSendable(JSThread *thread, FunctionRef::SendablePropertiesInfos &infos, Local<StringRef> &name);
/arkcompiler/runtime_core/verifier/
H A Dverifier.cpp799 bool Verifier::VerifyMethodInstructions(const MethodInfos &infos) in VerifyMethodInstructions() argument
801 auto current_ins = infos.bc_ins; in VerifyMethodInstructions()
802 auto last_ins = infos.bc_ins_last; in VerifyMethodInstructions()
803 auto code_id = infos.method_accessor.GetCodeId().value(); in VerifyMethodInstructions()
804 auto method_id = infos.method_id; in VerifyMethodInstructions()
805 auto valid_regs_num = infos.valid_regs_num.value(); in VerifyMethodInstructions()
806 auto ins_slot_num = infos.ins_slot_num; in VerifyMethodInstructions()
807 auto has_slot = infos.has_slot; in VerifyMethodInstructions()
808 auto is_two_slot = infos.is_two_slot; in VerifyMethodInstructions()
833 infos in VerifyMethodInstructions()
865 MethodInfos infos = {bc_ins_init, bc_ins, bc_ins_last, method_accessor, method_id, CheckConstantPoolMethodContent() local
[all...]
H A Dverifier.h125 bool VerifyMethodInstructions(const MethodInfos &infos);
/arkcompiler/ets_runtime/ecmascript/stackmap/
H A Dark_stackmap_builder.h87 void SortCallSite(const std::vector<std::unordered_map<uintptr_t, Vec>> &infos,
H A Dark_stackmap_builder.cpp197 const std::vector<std::unordered_map<uintptr_t, Vec>> &infos, in SortCallSite()
200 for (auto &info: infos) { in SortCallSite()
196 SortCallSite( const std::vector<std::unordered_map<uintptr_t, Vec>> &infos, std::vector<std::pair<uintptr_t, Vec>>& result) SortCallSite() argument
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/
H A Dpgo_profiler_info.cpp83 std::vector<std::string> infos = StringHelper::SplitString(content, DumpUtils::BLOCK_SEPARATOR); in ParseFromText() local
84 for (auto checksum : infos) { in ParseFromText()
725 // Merge global layout desc infos to global method info map in Merge()
1081 // Merge global layout desc infos to global method info map in Merge()
/arkcompiler/ets_runtime/ecmascript/napi/include/
H A Djsnapi_expo.h891 SendablePropertiesInfos &infos,
/arkcompiler/ets_runtime/ecmascript/napi/
H A Djsnapi_expo.cpp3431 SendablePropertiesInfos &infos, in NewSendableClassFunction()
3442 JSNapiSendable sendable(thread, infos, name); in NewSendableClassFunction()
3426 NewSendableClassFunction(const EcmaVM *vm, InternalFunctionCallback nativeFunc, NativePointerCallback deleter, void *data, Local<StringRef> name, SendablePropertiesInfos &infos, Local<FunctionRef> parent, bool callNapi, size_t nativeBindingSize) NewSendableClassFunction() argument

Completed in 24 milliseconds