Searched refs:source_data (Results 1 – 4 of 4) sorted by relevance
18 Token IdentifierTable::MakeIdentifier(SourceLocation previous_end, StringView source_data, const So… in MakeIdentifier() argument22 auto lookup = keyword_table_.find(source_data); in MakeIdentifier()26 …return Token(previous_end, SourceLocation(source_data, source_file), Token::Kind::kIdentifier, sub… in MakeIdentifier()
20 bool IsIdentifierValid(StringView source_data) { in IsIdentifierValid() argument21 return source_data[0] != '_' && source_data[source_data.size() - 1] != '_'; in IsIdentifierValid()
87 bool IsIdentifierValid(StringView source_data) { in IsIdentifierValid() argument88 return source_data[0] != '_' && source_data[source_data.size() - 1] != '_'; in IsIdentifierValid()
24 StringView source_data, const SourceFile& source_file,
Completed in 11 milliseconds