Lines Matching refs:codepoint
1028 alias, to a Unicode codepoint, or return (cppchar_t) -1 if
1044 cppchar_t codepoint = -1;
1062 codepoint = *n + (n[1] << 8) + ((n[2] & 0x1f) << 16);
1152 else if (codepoint >= 0xd800
1153 && codepoint < 0xd800 + ARRAY_SIZE (uname2c_generated))
1157 if (codepoint == 0xd800)
1203 /* NR2 - prefix followed by hexadecimal codepoint. */
1209 p = uname2c_pairs + uname2c_generated[codepoint - 0xd800];
1210 codepoint = 0;
1213 codepoint <<= 4;
1216 codepoint += hex_value (name[i]);
1219 if (codepoint < *p)
1221 else if (codepoint <= p[1])
1229 return codepoint;
1240 return codepoint;
1248 codepoint = _cpp_uname2c (name + len_adj, len - len_adj,
1250 if (codepoint != (cppchar_t) -1)
1251 return codepoint;
1256 return codepoint;
1337 /* Returns flags representing the XID properties of the given codepoint. */
1910 may, when processing an identifier in C mode, equal a codepoint that was
3266 the codepoint just processed.