Home
last modified time | relevance | path

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

/arkcompiler/ets_frontend/ets2panda/checker/ets/
DtypeCreation.cpp61 IntType *ETSChecker::CreateIntType(int32_t value) in CreateIntType() function in panda::es2panda::checker::ETSChecker
78 return CreateIntType(static_cast<int32_t>(type->AsCharType()->GetValue())); in CreateIntTypeFromType()
81 return CreateIntType(static_cast<int32_t>(type->AsByteType()->GetValue())); in CreateIntTypeFromType()
84 return CreateIntType(static_cast<int32_t>(type->AsShortType()->GetValue())); in CreateIntTypeFromType()
Darithmetic.cpp47 result = CreateIntType(-(type->AsIntType()->GetValue())); in NegateNumericType()
93 …result = CreateIntType(static_cast<int32_t>(~static_cast<uint32_t>(type->AsIntType()->GetValue()))… in BitwiseNegateNumericType()
101 result = CreateIntType( in BitwiseNegateNumericType()
/arkcompiler/ets_frontend/ets2panda/checker/
DETSchecker.h196 IntType *CreateIntType(int32_t value);
DETSAnalyzer.cpp1738 expr->SetTsType(checker->CreateIntType(expr->Number().GetInt())); in Check()