Home
last modified time | relevance | path

Searched refs:special_chars (Results 1 – 2 of 2) sorted by relevance

/external/pdfium/core/fpdfdoc/
Dctypeset.cpp17 const uint8_t special_chars[128] = { variable
33 return !!(special_chars[word] & 0x01); in IsLatin()
71 return !!(special_chars[word] & 0x08); in IsPunctuation()
117 return word <= 0x007F && (special_chars[word] & 0x20); in IsConnectiveSymbol()
122 return !!(special_chars[word] & 0x04); in IsOpenStylePunctuation()
/external/v8/src/wasm/
Dwasm-text.cc24 const char *special_chars = "_.+-*/\\^~=<>!?@#$%&|:'`"; in IsValidFunctionName() local
27 (c >= 'A' && c <= 'Z') || strchr(special_chars, c); in IsValidFunctionName()