Home
last modified time | relevance | path

Searched defs:targetType (Results 1 – 25 of 34) sorted by relevance

12

/arkcompiler/ets_frontend/ets2panda/checker/ts/
DtypeElaborationContext.h34 …ElaborationContext(TSChecker *checker, Type *targetType, Type *sourceType, ir::Expression *sourceN… in ElaborationContext()
63 …ArrayElaborationContext(TSChecker *checker, Type *targetType, Type *sourceType, ir::Expression *so… in ArrayElaborationContext()
78 …ObjectElaborationContext(TSChecker *checker, Type *targetType, Type *sourceType, ir::Expression *s… in ObjectElaborationContext()
Dhelpers.cpp314 void TSChecker::ElaborateElementwise(Type *targetType, ir::Expression *sourceNode, const lexer::Sou… in ElaborateElementwise()
Dobject.cpp534 Type *targetType = GetTypeOfVariable(prop); in ValidateInterfaceMemberRedeclaration() local
/arkcompiler/ets_frontend/es2panda/typescript/core/
DtypeElaborationContext.h34 …ElaborationContext(Checker *checker, Type *targetType, Type *sourceType, const ir::Expression *sou… in ElaborationContext()
61 …ArrayElaborationContext(Checker *checker, Type *targetType, Type *sourceType, const ir::Expression… in ArrayElaborationContext()
76 …ObjectElaborationContext(Checker *checker, Type *targetType, Type *sourceType, const ir::Expressio… in ObjectElaborationContext()
Dhelpers.cpp313 void Checker::ElaborateElementwise(Type *targetType, const ir::Expression *sourceNode, const lexer:… in ElaborateElementwise()
Dobject.cpp542 Type *targetType = GetTypeOfVariable(prop); in ValidateInterfaceMemberRedeclaration() local
/arkcompiler/ets_frontend/ets2panda/compiler/core/
DtargetTypeContext.cpp21 TargetTypeContext::TargetTypeContext(ETSGen *etsg, const checker::Type *targetType) in TargetTypeContext()
DETSGen.cpp127 const checker::Type *const targetType) in ApplyConversionAndStoreAccumulator()
931 void ETSGen::ApplyConversionCast(const ir::AstNode *node, const checker::Type *targetType) in ApplyConversionCast()
981 void ETSGen::ApplyConversion(const ir::AstNode *node, const checker::Type *targetType) in ApplyConversion()
1006 void ETSGen::ApplyCast(const ir::AstNode *node, const checker::Type *targetType) in ApplyCast()
1038const checker::Type *const targetType, const checker::Type *const boxedType) in EmitUnboxedCall()
1614 …d ETSGen::CastToArrayOrObject(const ir::AstNode *const node, const checker::Type *const targetType, in CastToArrayOrObject()
1644 void ETSGen::CastDynamicToObject(const ir::AstNode *node, const checker::Type *targetType) in CastDynamicToObject()
2090 auto const *targetType = Checker()->GetNonNullishType(nullishType); in ConvertToNonNullish() local
DETSCompiler.cpp1832 auto *targetType = expr->TsType(); in CompileCastUnboxable() local
1877 auto *targetType = expr->TsType(); in CompileCast() local
1949 auto *targetType = expr->TsType(); in Compile() local
DETSGen.h1113 void ETSGen::LoadAccumulatorNumber(const ir::AstNode *node, T number, checker::TypeFlag targetType) in LoadAccumulatorNumber()
/arkcompiler/ets_frontend/ets2panda/checker/types/ets/
DetsFunctionType.cpp211 auto *targetType = target->AsETSObjectType(); in CastFunctionParams() local
230 auto *targetType = target->AsETSObjectType(); in Cast() local
DetsUnionType.cpp318 Type *targetType = FindTypeIsCastableToThis(relation->GetNode(), relation, source); in CastTarget() local
369 auto isCastablePred = [](TypeRelation *r, Type *sourceType, Type *targetType) { in FindTypeIsCastableToSomeType()
/arkcompiler/ets_frontend/es2panda/ir/ts/
DtsAsExpression.cpp102 checker::Type *targetType = typeAnnotation_->AsTypeNode()->GetType(checker); in Check() local
DtsInterfaceDeclaration.cpp86 checker::Type *targetType = checker->GetTypeOfVariable(res->second.first); in CheckInheritedPropertiesAreIdentical() local
/arkcompiler/ets_frontend/ets2panda/checker/types/ts/
DinterfaceType.cpp65 … Type *targetType = relation->GetChecker()->GetTypeOfVariable(targetProp); in Identical() local
DobjectType.cpp121 Type *targetType = relation->GetChecker()->GetTypeOfVariable(it); in AssignProperties() local
/arkcompiler/ets_frontend/es2panda/typescript/types/
DinterfaceType.cpp67 … Type *targetType = relation->GetChecker()->GetTypeOfVariable(targetProp); in Identical() local
DobjectType.cpp122 Type *targetType = relation->GetChecker()->GetTypeOfVariable(it); in AssignProperties() local
/arkcompiler/ets_runtime/ecmascript/ts_types/
Dts_type_accessor.cpp47 void TSTypeAccessor::UpdateForEachCBPara(kungfu::GateType targetType) in UpdateForEachCBPara()
/arkcompiler/runtime_core/static_core/libllvmbackend/lowering/
Dllvm_ir_constructor.cpp671 auto targetType = inst->GetType(); in CreateShiftOp() local
723 auto targetType = inst->GetType(); in CreateAArch64SignDivMod() local
810 auto targetType = inst->GetType(); in CreateCastToInt() local
1069 llvm::Type *LLVMIrConstructor::GetExactType(DataType::Type targetType) in GetExactType()
1142 …rConstructor::CoerceValue(llvm::Value *value, DataType::Type sourceType, DataType::Type targetType) in CoerceValue()
1183 llvm::Value *LLVMIrConstructor::CoerceValue(llvm::Value *value, llvm::Type *targetType) in CoerceValue()
1475 auto targetType = inst->GetType(); in VisitCast() local
/arkcompiler/ets_frontend/ets2panda/checker/ets/
Dobject.cpp1226 auto const *targetType = assignmentExpr->Left()->TsType(); in GetInitialSearchFlags() local
1316 auto *targetType = GetTypeOfVariable(target_ident->Variable()); in ValidateVarDeclaratorOrClassProperty() local
1441 const char *targetType {}; in CheckValidInheritance() local
1602 auto *targetType = targetBase == nullptr ? target->SuperType() : targetBase; in GetClosestCommonAncestor() local
Dhelpers.cpp488 const auto *const targetType = GetTypeOfVariable(id->Variable()); in CheckEtsFunctionType() local
583 const auto *const targetType = assignmentExpr->Left()->TsType(); in ValidateAssignmentIdentifier() local
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/
Dconst_folding.cpp27 uint64_t ConvertIntToInt(T value, DataType::Type targetType) in ConvertIntToInt()
106 uint64_t ConvertFloatToInt(From value, DataType::Type targetType) in ConvertFloatToInt()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/mpl2mpl/src/
Dclass_hierarchy.cpp446 MIRType *targetType = GlobalTables::GetTypeTable().GetTypeFromTyIdx(targetTypeIdx); in UpdateFieldID() local
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_typedarray.cpp1125 DataViewType targetType = TypedArrayHelper::GetType(targetObj); in Set() local
1367 DataViewType targetType = JSTypedArray::GetTypeFromName(thread, targetName); in Slice() local

12