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.cpp382 JSHandle<TaggedArray> parameterTypes(thread_, functionType->GetParameterTypes()); in ParseFunctionType() local
385 [this, &jsPandaFile, &recordName, &index, &parameterTypes](const uint32_t literalValue) { in ParseFunctionType()
390 parameterTypes->Set(thread_, index++, JSTaggedValue(parameterGT.GetType())); in ParseFunctionType()
392 functionType->SetParameterTypes(thread_, parameterTypes); in ParseFunctionType()
706 JSHandle<TaggedArray> parameterTypes(thread_, genericsType->GetParameterTypes()); in InstantiateFuncGenericsType() local
708 GlobalTSTypeRef parameterGT(parameterTypes->Get(thread_, i).GetInt()); in InstantiateFuncGenericsType()
/arkcompiler/ets_runtime/ecmascript/
Dobject_factory.cpp3839 JSHandle<TaggedArray> parameterTypes = NewTaggedArray(length, JSTaggedValue::Undefined()); in NewTSFunctionType() local
3840 functionType->SetParameterTypes(thread_, parameterTypes); in NewTSFunctionType()