| /openbsd-src/gnu/llvm/lldb/source/DataFormatters/ |
| H A D | StringPrinter.cpp | 69 static bool isprint32(char32_t codepoint) { in isprint32() argument 70 if (codepoint <= 0x1F || codepoint == 0x7F) // C0 in isprint32() 74 if (codepoint >= 0x80 && codepoint <= 0x9F) // C1 in isprint32() 78 if (codepoint == 0x2028 || codepoint == 0x2029) // line/paragraph separators in isprint32() 82 if (codepoint == 0x200E || codepoint == 0x200F || in isprint32() 83 (codepoint >= 0x202A && in isprint32() 84 codepoint <= 0x202E)) // bidirectional text control in isprint32() 88 if (codepoint >= 0xFFF9 && in isprint32() 89 codepoint <= 0xFFFF) // interlinears and generally specials in isprint32() 180 llvm::UTF32 codepoint = 0; in GetPrintableImpl() local [all …]
|
| /openbsd-src/gnu/gcc/libcpp/ |
| H A D | makeucnid.c | 122 unsigned long codepoint, this_decomp[4]; in read_table() local 129 codepoint = strtoul (line, &l, 16); in read_table() 132 if (codepoint > 0xffff || ! (flags[codepoint] & (C99 | CXX))) in read_table() 141 flags[codepoint] |= digit; in read_table() 150 combining_value[codepoint] = strtoul (l, &l, 10); in read_table() 160 decomp_useful = flags[codepoint]; in read_table() 178 decomp[codepoint][i] = this_decomp[i]; in read_table()
|
| /openbsd-src/lib/libcbor/src/cbor/internal/ |
| H A D | unicode.c | 73 uint32_t codepoint, state = UTF8_ACCEPT, res; in _cbor_unicode_codepoint_count() local 77 res = _cbor_unicode_decode(&state, &codepoint, source[pos]); in _cbor_unicode_codepoint_count()
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Encode/t/ |
| H A D | utf8warnings.t | 14 ok ! defined eval { encode('UTF-8', "\x{D800}", FB_CROAK | LEAVE_SRC) }, 'Surrogate codepoint \x{D8… 18 is_deeply \@invalid, [ 0xD800 ], 'Fallback coderef contains invalid codepoint 0xD800';
|
| /openbsd-src/gnu/llvm/llvm/lib/Support/ |
| H A D | YAMLParser.cpp | 208 uint32_t codepoint = ((*Position & 0x1F) << 6) | in decodeUTF8() local 210 if (codepoint >= 0x80) in decodeUTF8() 211 return std::make_pair(codepoint, 2); in decodeUTF8() 218 uint32_t codepoint = ((*Position & 0x0F) << 12) | in decodeUTF8() local 223 if (codepoint >= 0x800 && in decodeUTF8() 224 (codepoint < 0xD800 || codepoint > 0xDFFF)) in decodeUTF8() 225 return std::make_pair(codepoint, 3); in decodeUTF8() 233 uint32_t codepoint = ((*Position & 0x07) << 18) | in decodeUTF8() local 237 if (codepoint >= 0x10000 && codepoint <= 0x10FFFF) in decodeUTF8() 238 return std::make_pair(codepoint, 4); in decodeUTF8()
|
| /openbsd-src/gnu/usr.bin/perl/pod/ |
| H A D | perlunicook.pod | 367 Find the general category of a numeric codepoint. 392 These all match a single codepoint with the given 394 one codepoint lacking that property. 466 =head2 ℞ 30: Extract by grapheme instead of by codepoint (regex) 471 =head2 ℞ 31: Extract by grapheme instead of by codepoint (substr) 480 Reversing by codepoint messes up diacritics, mistakenly converting 494 This counts by grapheme, not by codepoint: 535 Text sorted by numeric codepoint follows no reasonable alphabetic order; 590 instead of by codepoint.
|
| H A D | perlpodspec.pod | 935 "codepoint I<number> in the current/native character set". It always 936 means only "the character represented by codepoint I<number> in 946 presumably need to know that "\xE9" maps to codepoint 142 in MacRoman
|
| H A D | perl5380delta.pod | 1370 unicode word characters whose codepoint is over 255 are output raw, and
|
| H A D | perlretut.pod | 1989 they can contain characters with a value (codepoint or character number) higher
|
| H A D | perlguts.pod | 3489 codepoint number and vice versa. This flag is only meaningful if the SV
|
| /openbsd-src/gnu/usr.bin/perl/dist/Carp/ |
| H A D | Changes | 97 in a stack trace contains a non-character codepoint
|
| /openbsd-src/gnu/usr.bin/perl/dist/Unicode-Normalize/ |
| H A D | Changes | 167 - tweak in pure perl: forced $codepoint to numeric (i.e. "+0065" to 65)
|
| /openbsd-src/gnu/usr.bin/perl/lib/unicore/ |
| H A D | mktables | 3898 sub contains($self, $codepoint) { 3900 # range[$i]->end < $codepoint <= range[$i+1]->end 3904 my $i = $self->_search_ranges($codepoint); 3908 # range[$i-1]->end < $codepoint <= range[$i]->end 3911 return 0 if $ranges{pack 'J', refaddr $self}->[$i]->start > $codepoint; 3915 sub containing_range($self, $codepoint) { 3917 my $i = $self->contains($codepoint); 3924 sub value_of($self, $codepoint) { 3926 my $range = $self->containing_range($codepoint); 3932 sub type_of($self, $codepoint) { [all...] |
| H A D | DNormalizationProps.txt | 2910 # have the value <codepoint>.
|
| /openbsd-src/gnu/usr.bin/perl/ext/Pod-Html/corpus/ |
| H A D | perlpodspec-copy.pod | 904 "codepoint I<number> in the current/native character set". It always 905 means only "the character represented by codepoint I<number> in 915 presumably need to know that "\xE9" maps to codepoint 142 in MacRoman
|
| /openbsd-src/gnu/usr.bin/perl/t/re/ |
| H A D | pat_advanced.t | 1780 like($chr_utf8, $rx, "utf8/latin, codepoint $chr");
|
| /openbsd-src/gnu/usr.bin/perl/cpan/perlfaq/lib/ |
| H A D | perlglossary.pod | 539 B<codepoint>. 552 for every possible codepoint, and Perl defines a few of its own, too. 603 =item codepoint 2345 B<codepoint>.
|
| /openbsd-src/gnu/llvm/libcxx/utils/data/unicode/ |
| H A D | emoji-data.txt | 13 # <codepoint(s)> ; <property> # <comments>
|
| /openbsd-src/gnu/usr.bin/perl/lib/unicore/emoji/ |
| H A D | emoji.txt | 13 # <codepoint(s)> ; <property> # <comments>
|