Home
last modified time | relevance | path

Searched refs:SourceView (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/ets_frontend/es2panda/lexer/
Dlexer.h116 …util::StringView SourceView(const util::StringView::Iterator &begin, const util::StringView::Itera…
117 util::StringView SourceView(size_t begin, size_t end) const;
234 str.Append(SourceView(escapeEnd, Iterator().Index())); in ScanString()
252 str.Append(SourceView(escapeEnd, Iterator().Index())); in ScanString()
289 str.Append(SourceView(escapeEnd, Iterator().Index())); in ScanString()
292 GetToken().src_ = SourceView(startPos, Iterator().Index()); in ScanString()
DkeywordsUtil.cpp224 ident.Append(lexer_->SourceView(escapeEnd, Iterator().Index())); in ScanIdContinue()
249 ident.Append(lexer_->SourceView(escapeEnd, Iterator().Index())); in ScanIdContinue()
252 lexer_->GetToken().src_ = lexer_->SourceView(startPos, Iterator().Index()); in ScanIdContinue()
Dlexer.cpp130 util::StringView Lexer::SourceView(const util::StringView::Iterator &begin, const util::StringView:… in SourceView() function in panda::es2panda::lexer::Lexer
132 return SourceView(begin.Index(), end.Index()); in SourceView()
135 util::StringView Lexer::SourceView(size_t begin, size_t end) const in SourceView() function in panda::es2panda::lexer::Lexer
214 GetToken().src_ = SourceView(GetToken().Start().index, Iterator().Index()); in CheckNumberLiteralEnd()
331 util::StringView sv = SourceView(GetToken().Start().index, Iterator().Index()); in ConvertNumber()
1126 const auto pattern = SourceView(patternStart, Iterator().Index()); in ScanRegExp()
1133 const auto flags = SourceView(flagsStart, Iterator().Index()); in ScanRegExp()