Searched refs:codepoint (Results 1 - 5 of 5) sorted by relevance

/freebsd-11-stable/contrib/gcclibs/libcpp/
H A Dmakeucnid.c122 unsigned long codepoint, this_decomp[4]; local
129 codepoint = strtoul (line, &l, 16);
132 if (codepoint > 0xffff || ! (flags[codepoint] & (C99 | CXX)))
141 flags[codepoint] |= digit;
150 combining_value[codepoint] = strtoul (l, &l, 10);
160 decomp_useful = flags[codepoint];
178 decomp[codepoint][i] = this_decomp[i];
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/
H A DStringPrinter.cpp36 static bool isprint(char32_t codepoint) { argument
37 if (codepoint <= 0x1F || codepoint == 0x7F) // C0
41 if (codepoint >= 0x80 && codepoint <= 0x9F) // C1
45 if (codepoint == 0x2028 || codepoint == 0x2029) // line/paragraph separators
49 if (codepoint == 0x200E || codepoint == 0x200F ||
50 (codepoint >
144 char32_t codepoint = 0; local
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/utf8proc/
H A Dutf8proc_internal.h174 * line break, and should be converted to the codepoint for line
180 * should be converted to the codepoint for paragraph separation
231 /** The @ref UTF8PROC_REJECTNA flag was set and an unassigned codepoint was found. */
242 /** Struct containing information about a codepoint. */
269 * Can this codepoint be ignored?
276 /** The width of the codepoint. */
395 typedef utf8proc_int32_t (*utf8proc_custom_func)(utf8proc_int32_t codepoint, void *data);
399 * Array containing the byte lengths of a UTF-8 encoded codepoint based
419 * Reads a single codepoint from the UTF-8 sequence being pointed to by `str`.
423 * If a valid codepoint coul
[all...]
/freebsd-11-stable/contrib/lua/src/
H A Dlutf8lib.c97 ** codepoint(s, [i, [j]]) -> returns codepoints for all characters
100 static int codepoint (lua_State *L) { function
240 {"codepoint", codepoint},
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DYAMLParser.cpp211 uint32_t codepoint = ((*Position & 0x1F) << 6) | local
213 if (codepoint >= 0x80)
214 return std::make_pair(codepoint, 2);
222 uint32_t codepoint = ((*Position & 0x0F) << 12) | local
227 if (codepoint >= 0x800 &&
228 (codepoint < 0xD800 || codepoint > 0xDFFF))
229 return std::make_pair(codepoint, 3);
238 uint32_t codepoint = ((*Position & 0x07) << 18) | local
242 if (codepoint >
[all...]

Completed in 73 milliseconds