Home
last modified time | relevance | path

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

/arkcompiler/ets_frontend/ets2panda/checker/ets/
DtypeCreation.cpp62 IntType *ETSChecker::CreateIntType(int32_t value) in CreateIntType() function in ark::es2panda::checker::ETSChecker
79 return CreateIntType(static_cast<int32_t>(type->AsCharType()->GetValue())); in CreateIntTypeFromType()
82 return CreateIntType(static_cast<int32_t>(type->AsByteType()->GetValue())); in CreateIntTypeFromType()
85 return CreateIntType(static_cast<int32_t>(type->AsShortType()->GetValue())); in CreateIntTypeFromType()
Darithmetic.cpp58 result = CreateIntType(-(type->AsIntType()->GetValue())); in NegateNumericType()
104 …result = CreateIntType(static_cast<int32_t>(~static_cast<uint32_t>(type->AsIntType()->GetValue()))… in BitwiseNegateNumericType()
112 result = CreateIntType( in BitwiseNegateNumericType()
/arkcompiler/ets_frontend/ets2panda/checker/
DETSchecker.h239 IntType *CreateIntType(int32_t value);
DETSAnalyzer.cpp1634 expr->SetTsType(checker->CreateIntType(expr->Number().GetInt())); in Check()