Home
last modified time | relevance | path

Searched refs:UString (Results 1 – 16 of 16) sorted by relevance

/arkcompiler/ets_frontend/es2panda/parser/program/
Dprogram.h130 sourceCode_ = util::UString(sourceCode, Allocator()); in SetSource()
131 sourceFile_ = util::UString(sourceFile, Allocator()); in SetSource()
138 recordName_ = util::UString(recordName, Allocator()); in SetRecordName()
140 formatedRecordName_ = util::UString(formatedRecordName, Allocator()); in SetRecordName()
175 util::UString sourceCode_ {};
176 util::UString sourceFile_ {};
177 util::UString recordName_ {};
178 util::UString formatedRecordName_ {};
/arkcompiler/ets_frontend/es2panda/binder/
DtsBinding.h27 class TSBinding : public util::UString {
30 : util::UString(std::string {TS_PREFIX}, allocator) in TSBinding()
Dbinder.cpp358 funcScope->BindName(name, util::UString(internalName, Allocator()).View()); in BuildFunction()
381 anonymousFunctionNames_[func] = util::UString(ss.str(), Allocator()).View(); in BuildFunction()
388 funcScope->BindName(name, util::UString(internalNameStr, Allocator()).View()); in BuildFunction()
/arkcompiler/ets_frontend/es2panda/util/
Dustring.h266 class UString {
268 UString() = default;
269 explicit UString(ArenaAllocator *allocator) : allocator_(allocator) {} in UString() function
270 explicit UString(const std::string &str, ArenaAllocator *allocator) : UString(allocator) in UString() function
276 DEFAULT_COPY_SEMANTIC(UString);
277 DEFAULT_MOVE_SEMANTIC(UString);
278 ~UString() = default;
Dhelpers.cpp306 util::UString str(ToString(number), allocator); in ToStringView()
318 util::UString str(ToString(number), allocator); in ToStringView()
/arkcompiler/ets_frontend/es2panda/lexer/
Dlexer.h59 util::UString str;
152 void ScanStringUnicodePart(util::UString *str);
212 util::UString str(Allocator()); in ScanString()
DkeywordsUtil.cpp212 util::UString ident(lexer_->Allocator()); in ScanIdContinue()
Dlexer.cpp346 util::UString converted(utf8, Allocator()); in ConvertNumber()
530 void Lexer::ScanStringUnicodePart(util::UString *str) in ScanStringUnicodePart()
/arkcompiler/ets_frontend/es2panda/typescript/core/
Dfunction.cpp248 util::UString pn(ss.str(), allocator_); in CheckFunctionAssignmentPatternParameter()
326 util::UString pn(ss.str(), allocator_); in CheckFunctionArrayPatternParameter()
348 util::UString pn(ss.str(), allocator_); in CheckFunctionObjectPatternParameter()
/arkcompiler/ets_frontend/es2panda/lexer/regexp/
Dregexp.cpp851 util::UString ident(allocator_); in ParseIdent()
/arkcompiler/ets_frontend/es2panda/ir/ts/
DtsEnumDeclaration.cpp209 util::UString res(ss.str(), checker->Allocator()); in EvaluateBinaryExpression()
/arkcompiler/ets_frontend/es2panda/compiler/core/
Dpandagen.cpp1491 util::UString litId(idxStr, allocator_); in CreateObjectWithBuffer()
1522 util::UString litId(idxStr, allocator_); in CreateArrayWithBuffer()
1679 util::UString litId(idxStr, allocator_); in DefineClassWithBuffer()
1934 util::UString litId(idxStr, allocator_); in NewLexEnvWithScopeInfo()
/arkcompiler/ets_frontend/es2panda/typescript/extractor/
DtypeSystem.h267 util::UString(ss.str(), recorder_->Allocator()).View())); in FillTypeIndexLiteralBuffer()
1077 redirectPath_ = util::UString(ss.str(), recorder_->Allocator()).View(); in ExternalType()
/arkcompiler/ets_frontend/es2panda/parser/
DparserImpl.h544 util::UString internalName(name, Allocator());
/arkcompiler/ets_runtime/ecmascript/
Dglobal_env_constants.h406 …V(JSTaggedValue, UString, U_INDEX, u) …
/arkcompiler/ets_frontend/es2panda/parser/transformer/
Dtransformer.cpp391 name = util::UString(s, Allocator()).View(); in CreateUniqueName()