Home
last modified time | relevance | path

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

/external/llvm-project/flang/lib/Parser/
Dcharacters.cpp147 DecodedCharacter DecodeRawCharacter<Encoding::LATIN_1>( in DecodeRawCharacter()
157 DecodedCharacter DecodeRawCharacter<Encoding::UTF_8>( in DecodeRawCharacter()
183 static DecodedCharacter DecodeEscapedCharacter( in DecodeEscapedCharacter()
213 static DecodedCharacter DecodeEscapedCharacters( in DecodeEscapedCharacters()
219 DecodedCharacter code{DecodeEscapedCharacter(cp + at, bytes - at)}; in DecodeEscapedCharacters()
224 DecodedCharacter code{DecodeCharacter<ENCODING>(buffer, len, false)}; in DecodeEscapedCharacters()
235 DecodedCharacter DecodeCharacter( in DecodeCharacter()
244 template DecodedCharacter DecodeCharacter<Encoding::LATIN_1>(
246 template DecodedCharacter DecodeCharacter<Encoding::UTF_8>(
249 DecodedCharacter DecodeCharacter(Encoding encoding, const char *cp, in DecodeCharacter()
[all …]
Dprescan.cpp637 DecodedCharacter decoded{DecodeCharacter( in Hollerith()
/external/llvm-project/flang/include/flang/Parser/
Dcharacters.h249 struct DecodedCharacter { struct
255 DecodedCharacter DecodeRawCharacter(const char *, std::size_t);
257 DecodedCharacter DecodeRawCharacter<Encoding::LATIN_1>(
261 DecodedCharacter DecodeRawCharacter<Encoding::UTF_8>(const char *, std::size_t);
265 DecodedCharacter DecodeCharacter(
267 extern template DecodedCharacter DecodeCharacter<Encoding::LATIN_1>(
269 extern template DecodedCharacter DecodeCharacter<Encoding::UTF_8>(
272 DecodedCharacter DecodeCharacter(