Searched refs:special_chars (Results 1 – 2 of 2) sorted by relevance
19 const uint8_t special_chars[128] = { variable35 return !!(special_chars[word] & 0x01); in IsLatin()73 return !!(special_chars[word] & 0x08); in IsPunctuation()119 return word <= 0x007F && (special_chars[word] & 0x20); in IsConnectiveSymbol()124 return !!(special_chars[word] & 0x04); in IsOpenStylePunctuation()
24 const char *special_chars = "_.+-*/\\^~=<>!?@#$%&|:'`"; in IsValidFunctionName() local27 (c >= 'A' && c <= 'Z') || strchr(special_chars, c); in IsValidFunctionName()