Home
last modified time | relevance | path

Searched refs:parameterTypes (Results 1 – 4 of 4) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/ts_types/
Dts_type_accessor.cpp54 JSHandle<TaggedArray> parameterTypes(thread_, callbackType->GetParameterTypes()); in UpdateForEachCBPara() local
73 if (!parameterTypes->Get(i).GetInt()) { in UpdateForEachCBPara()
74 parameterTypes->Set(thread_, i, JSTaggedValue(tempGTs[i].GetType())); in UpdateForEachCBPara()
Dts_type.h181 TaggedArray* parameterTypes = TaggedArray::Cast(GetParameterTypes().GetTaggedObject()); in GetLength() local
182 return parameterTypes->GetLength(); in GetLength()
Dts_type_parser.cpp374 JSHandle<TaggedArray> parameterTypes(thread_, functionType->GetParameterTypes()); in ParseFunctionType() local
377 [this, &jsPandaFile, &recordName, &index, &parameterTypes](const uint32_t literalValue) { in ParseFunctionType()
382 parameterTypes->Set(thread_, index++, JSTaggedValue(parameterGT.GetType())); in ParseFunctionType()
384 functionType->SetParameterTypes(thread_, parameterTypes); in ParseFunctionType()
685 JSHandle<TaggedArray> parameterTypes(thread_, genericsType->GetParameterTypes()); in InstantiateFuncGenericsType() local
687 GlobalTSTypeRef parameterGT(parameterTypes->Get(thread_, i).GetInt()); in InstantiateFuncGenericsType()
/arkcompiler/ets_runtime/ecmascript/
Dobject_factory.cpp3350 JSHandle<TaggedArray> parameterTypes = NewTaggedArray(length, JSTaggedValue::Undefined()); in NewTSFunctionType() local
3351 functionType->SetParameterTypes(thread_, parameterTypes); in NewTSFunctionType()