Searched refs:IsIdentifierChar (Results 1 – 4 of 4) sorted by relevance
40 bool IsIdentifierChar(char c) { in IsIdentifierChar() function242 while (IsIdentifierChar(PeekCurrentChar())) { in LexIdentifier()318 while (IsIdentifierChar(PeekCurrentChar())) { in LexPercent()
95 static bool IsIdentifierChar(char c) { in IsIdentifierChar() function104 if (*CurPtr == 'e' || *CurPtr == 'E' || !IsIdentifierChar(*CurPtr)) in LexIdentifier()108 while (IsIdentifierChar(*CurPtr)) in LexIdentifier()
132 static bool IsIdentifierChar(char c, bool AllowAt) { in IsIdentifierChar() function143 !IsIdentifierChar(*CurPtr, AllowAtInIdentifier)) in LexIdentifier()147 while (IsIdentifierChar(*CurPtr, AllowAtInIdentifier)) in LexIdentifier()
138 static bool IsIdentifierChar(char c, bool AllowAt) { in IsIdentifierChar() function150 !IsIdentifierChar(*CurPtr, AllowAtInIdentifier)) in LexIdentifier()154 while (IsIdentifierChar(*CurPtr, AllowAtInIdentifier)) in LexIdentifier()