Home
last modified time | relevance | path

Searched refs:LEX_CHAR_LF (Results 1 – 5 of 5) sorted by relevance

/arkcompiler/ets_frontend/es2panda/lexer/token/
DsourceLocation.cpp59 if (iter.HasNext() && iter.Peek() == LEX_CHAR_LF) { in LineIndex()
65 case LEX_CHAR_LF: in LineIndex()
Dletters.h26 #define LEX_CHAR_LF 0x0A /* line feed */ macro
/arkcompiler/ets_frontend/es2panda/lexer/
Dlexer.cpp149 if (Iterator().Peek() == LEX_CHAR_LF) { in SkipMultiLineComment()
155 case LEX_CHAR_LF: in SkipMultiLineComment()
183 if (Iterator().Peek() == LEX_CHAR_LF) { in SkipSingleLineComment()
189 case LEX_CHAR_LF: in SkipSingleLineComment()
469 if (Iterator().Peek() != LEX_CHAR_LF) { in ScanTemplateString()
475 case LEX_CHAR_LF: { in ScanTemplateString()
477 templateStr.str.Append(LEX_CHAR_LF); in ScanTemplateString()
542 if (Iterator().Peek() != LEX_CHAR_LF) { in ScanStringUnicodePart()
550 case LEX_CHAR_LF: { in ScanStringUnicodePart()
564 cp = LEX_CHAR_LF; in ScanStringUnicodePart()
[all …]
Dlexer.h227 case LEX_CHAR_LF: { in ScanString()
239 if (Iterator().Peek() != LEX_CHAR_LF) { in ScanString()
245 str.Append(LEX_CHAR_LF); in ScanString()
/arkcompiler/ets_frontend/es2panda/lexer/regexp/
Dregexp.cpp345 return LEX_CHAR_LF; in ParseClassAtom()