Home
last modified time | relevance | path

Searched refs:ToStringView (Results 1 – 11 of 11) sorted by relevance

/arkcompiler/ets_frontend/es2panda/util/
Dhelpers.h77 static util::StringView ToStringView(ArenaAllocator *allocator, double number);
78 static util::StringView ToStringView(ArenaAllocator *allocator, int32_t number);
79 static util::StringView ToStringView(ArenaAllocator *allocator, uint32_t number);
Dhelpers.cpp92 return Helpers::ToStringView(allocator, number); in LiteralToPropName()
304 util::StringView Helpers::ToStringView(ArenaAllocator *allocator, double number) in ToStringView() function in panda::es2panda::util::Helpers
310 util::StringView Helpers::ToStringView(ArenaAllocator *allocator, uint32_t number) in ToStringView() function in panda::es2panda::util::Helpers
313 return ToStringView(allocator, static_cast<int32_t>(number)); in ToStringView()
316 util::StringView Helpers::ToStringView(ArenaAllocator *allocator, int32_t number) in ToStringView() function in panda::es2panda::util::Helpers
579 return {Helpers::ToStringView(allocator, index), true}; in ParamName()
/arkcompiler/ets_frontend/es2panda/typescript/core/
DtypeElaborationContext.cpp65 util::StringView memberIndex = util::Helpers::ToStringView(checker_->Allocator(), index_); in Start()
DdestructuringContext.cpp213 util::StringView memberIndex = util::Helpers::ToStringView(checker_->Allocator(), index_); in GetTypeFromTupleByIndex()
317 … util::StringView memberIndex = util::Helpers::ToStringView(checker_->Allocator(), iterIndex); in CreateTupleTypeForRest()
448 util::StringView name = util::Helpers::ToStringView(checker_->Allocator(), 0); in Start()
Dfunction.cpp157 util::StringView memberIndex = util::Helpers::ToStringView(allocator_, index); in CreateParameterTypeForArrayAssignmentPattern()
495 … propName = util::Helpers::ToStringView(allocator_, prop->Key()->AsNumberLiteral()->Number()); in CreatePatternParameterName()
Dobject.cpp411 util::Helpers::ToStringView(allocator_, indexType->AsNumberLiteralType()->Value()); in GetPropertyTypeForIndexType()
/arkcompiler/ets_frontend/es2panda/ir/ts/
DtsTupleType.cpp58 util::StringView memberIndex = util::Helpers::ToStringView(checker->Allocator(), index); in GetType()
DtsEnumDeclaration.cpp262 util::StringView memberStr = util::Helpers::ToStringView(checker->Allocator(), number); in AddEnumValueDeclaration()
/arkcompiler/ets_frontend/es2panda/ir/expressions/
DarrayExpression.cpp245 util::StringView memberIndex = util::Helpers::ToStringView(checker->Allocator(), index); in Check()
359 util::StringView memberIndex = util::Helpers::ToStringView(checker->Allocator(), index - 1); in CheckPattern()
/arkcompiler/ets_frontend/es2panda/compiler/core/
Dfunction.cpp88 util::StringView name = util::Helpers::ToStringView(pg->Allocator(), index); in CompileFunctionParameterDeclaration()
Dpandagen.cpp2002 return util::Helpers::ToStringView(allocator_, num); in ToNamedPropertyKey()