Searched refs:UString (Results 1 – 16 of 16) sorted by relevance
/arkcompiler/ets_frontend/es2panda/parser/program/ |
D | program.h | 130 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/ |
D | tsBinding.h | 27 class TSBinding : public util::UString { 30 : util::UString(std::string {TS_PREFIX}, allocator) in TSBinding()
|
D | binder.cpp | 358 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/ |
D | ustring.h | 266 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;
|
D | helpers.cpp | 306 util::UString str(ToString(number), allocator); in ToStringView() 318 util::UString str(ToString(number), allocator); in ToStringView()
|
/arkcompiler/ets_frontend/es2panda/lexer/ |
D | lexer.h | 59 util::UString str; 152 void ScanStringUnicodePart(util::UString *str); 212 util::UString str(Allocator()); in ScanString()
|
D | keywordsUtil.cpp | 212 util::UString ident(lexer_->Allocator()); in ScanIdContinue()
|
D | lexer.cpp | 346 util::UString converted(utf8, Allocator()); in ConvertNumber() 530 void Lexer::ScanStringUnicodePart(util::UString *str) in ScanStringUnicodePart()
|
/arkcompiler/ets_frontend/es2panda/typescript/core/ |
D | function.cpp | 248 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/ |
D | regexp.cpp | 851 util::UString ident(allocator_); in ParseIdent()
|
/arkcompiler/ets_frontend/es2panda/ir/ts/ |
D | tsEnumDeclaration.cpp | 209 util::UString res(ss.str(), checker->Allocator()); in EvaluateBinaryExpression()
|
/arkcompiler/ets_frontend/es2panda/compiler/core/ |
D | pandagen.cpp | 1491 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/ |
D | typeSystem.h | 267 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/ |
D | parserImpl.h | 544 util::UString internalName(name, Allocator());
|
/arkcompiler/ets_runtime/ecmascript/ |
D | global_env_constants.h | 406 …V(JSTaggedValue, UString, U_INDEX, u) …
|
/arkcompiler/ets_frontend/es2panda/parser/transformer/ |
D | transformer.cpp | 391 name = util::UString(s, Allocator()).View(); in CreateUniqueName()
|