Home
last modified time | relevance | path

Searched refs:next_chr (Results 1 – 25 of 179) sorted by relevance

12345678

/dports/converters/p5-JSON1/JSON-1.15/lib/JSON/
H A DParser.pm82 sub next_chr { subroutine
188 next_chr();
226 next_chr();
237 next_chr;
242 next_chr;
249 next_chr;
275 next_chr;
282 next_chr;
287 next_chr;
299 next_chr;
[all …]
H A DPP.pm607 sub next_chr { subroutine
759 next_chr();
818 next_chr();
829 next_chr;
834 next_chr;
841 next_chr;
895 next_chr;
903 next_chr;
909 next_chr;
924 next_chr;
[all …]
/dports/deskutils/plans/plans_8.2.1/JSON/
H A DPP.pm732 sub next_chr { subroutine
901 next_chr();
906 next_chr();
951 next_chr();
956 next_chr();
1027 next_chr;
1032 next_chr;
1085 next_chr;
1093 next_chr;
1099 next_chr;
[all …]
/dports/japanese/ajaxzip2-core/ajaxzip2/work/lib/JSON/
H A DPP.pm732 sub next_chr { subroutine
901 next_chr();
906 next_chr();
951 next_chr();
956 next_chr();
1027 next_chr;
1032 next_chr;
1085 next_chr;
1093 next_chr;
1099 next_chr;
[all …]
/dports/converters/p5-JSON/JSON-2.97001/lib/JSON/
H A DbackportPP.pm739 sub next_chr { subroutine
915 next_chr();
920 next_chr();
966 next_chr();
1042 next_chr;
1047 next_chr;
1076 next_chr;
1089 next_chr;
1094 next_chr;
1101 next_chr;
[all …]
/dports/lang/perl5.30/perl-5.30.3/cpan/JSON-PP/lib/JSON/
H A DPP.pm784 sub next_chr { subroutine
963 next_chr();
1010 next_chr();
1023 next_chr();
1043 next_chr();
1119 next_chr;
1124 next_chr;
1153 next_chr;
1166 next_chr;
1171 next_chr;
[all …]
/dports/lang/perl5.34/perl-5.34.0/cpan/JSON-PP/lib/JSON/
H A DPP.pm783 sub next_chr { subroutine
962 next_chr();
1009 next_chr();
1022 next_chr();
1042 next_chr();
1118 next_chr;
1123 next_chr;
1152 next_chr;
1165 next_chr;
1170 next_chr;
[all …]
/dports/lang/perl5.32/perl-5.32.1/cpan/JSON-PP/lib/JSON/
H A DPP.pm784 sub next_chr { subroutine
963 next_chr();
1010 next_chr();
1023 next_chr();
1043 next_chr();
1119 next_chr;
1124 next_chr;
1153 next_chr;
1166 next_chr;
1171 next_chr;
[all …]
/dports/converters/p5-JSON-PP/JSON-PP-4.06/lib/JSON/
H A DPP.pm783 sub next_chr { subroutine
962 next_chr();
1009 next_chr();
1022 next_chr();
1042 next_chr();
1118 next_chr;
1123 next_chr;
1152 next_chr;
1165 next_chr;
1170 next_chr;
[all …]
/dports/sysutils/webmin/webmin-1.981/JSON/
H A DPP.pm784 sub next_chr { subroutine
963 next_chr();
1010 next_chr();
1023 next_chr();
1043 next_chr();
1119 next_chr;
1124 next_chr;
1153 next_chr;
1166 next_chr;
1171 next_chr;
[all …]
/dports/sysutils/usermin/usermin-1.830/JSON/
H A DPP.pm784 sub next_chr { subroutine
963 next_chr();
1010 next_chr();
1023 next_chr();
1043 next_chr();
1119 next_chr;
1124 next_chr;
1153 next_chr;
1166 next_chr;
1171 next_chr;
[all …]
/dports/devel/p5-CPANPLUS/CPANPLUS-0.9912/inc/bundle/JSON/
H A DPP.pm783 sub next_chr { subroutine
962 next_chr();
1009 next_chr();
1022 next_chr();
1042 next_chr();
1118 next_chr;
1123 next_chr;
1152 next_chr;
1165 next_chr;
1170 next_chr;
[all …]
/dports/lang/perl5-devel/perl5-5.35.4-102-ge43d289c7c/cpan/JSON-PP/lib/JSON/
H A DPP.pm783 sub next_chr { subroutine
962 next_chr();
1009 next_chr();
1022 next_chr();
1042 next_chr();
1118 next_chr;
1123 next_chr;
1152 next_chr;
1165 next_chr;
1170 next_chr;
[all …]
/dports/net-mgmt/net-snmp/net-snmp-5.9/apps/
H A Dsnmptrapd_log.c1605 next_chr = format_str[fmt_idx]; in realloc_format_trap()
1615 if (next_chr == '\\') { in realloc_format_trap()
1640 while (j < i && next_chr && next_chr != CHR_FMT_DELIM) { in realloc_format_trap()
1641 if (next_chr == '\\') { in realloc_format_trap()
1647 next_chr = format_str[++fmt_idx]; in realloc_format_trap()
1653 separator[j++] = next_chr; in realloc_format_trap()
1655 next_chr = format_str[++fmt_idx]; in realloc_format_trap()
1687 } else if ((next_chr >= '1') && (next_chr <= '9')) { in realloc_format_trap()
1692 options.cmd = next_chr; in realloc_format_trap()
1723 options.cmd = next_chr; in realloc_format_trap()
[all …]
/dports/graphics/py-imagesize/imagesize-1.3.0/build/lib/
H A Dimagesize.py223 next_chr = fhandle.read(1)
225 if next_chr.isspace():
228 if next_chr == b"":
231 if next_chr == b"#":
235 if not next_chr.isdigit():
238 size = next_chr
239 next_chr = fhandle.read(1)
241 while next_chr.isdigit():
242 size += next_chr
243 next_chr = fhandle.read(1)
/dports/graphics/py-imagesize/imagesize-1.3.0/
H A Dimagesize.py223 next_chr = fhandle.read(1)
225 if next_chr.isspace():
228 if next_chr == b"":
231 if next_chr == b"#":
235 if not next_chr.isdigit():
238 size = next_chr
239 next_chr = fhandle.read(1)
241 while next_chr.isdigit():
242 size += next_chr
243 next_chr = fhandle.read(1)
/dports/graphics/py-imagesize/stage/usr/local/lib/python3.8/site-packages/
H A Dimagesize.py223 next_chr = fhandle.read(1)
225 if next_chr.isspace():
228 if next_chr == b"":
231 if next_chr == b"#":
235 if not next_chr.isdigit():
238 size = next_chr
239 next_chr = fhandle.read(1)
241 while next_chr.isdigit():
242 size += next_chr
243 next_chr = fhandle.read(1)
/dports/biology/vcftools/vcftools-0.1.16/src/cpp/
H A Dentry_filters.cpp692 string next_chr=""; in filter_sites_by_mask() local
696 next_chr = CHROM; in filter_sites_by_mask()
698 while (mask_chr != next_chr && !mask.eof()) in filter_sites_by_mask()
712 if (next_chr == mask_chr) in filter_sites_by_mask()
739 if (next_chr == mask_chr && next_pos <= (mask_pos+mask_line.size())) in filter_sites_by_mask()
/dports/multimedia/librespot/librespot-0.1.3/cargo-crates/syn-0.15.44/src/
H A Dlit.rs719 fn next_chr(s: &str) -> char { in next_chr() function
765 let ch = next_chr(s); in parse_lit_str_cooked()
781 let ch = next_chr(s); in parse_lit_str_cooked()
952 let ch = next_chr(s); in parse_lit_char()
/dports/security/vaultwarden/vaultwarden-1.23.1/cargo-crates/syn-0.15.44/src/
H A Dlit.rs719 fn next_chr(s: &str) -> char { in next_chr() function
765 let ch = next_chr(s); in parse_lit_str_cooked()
781 let ch = next_chr(s); in parse_lit_str_cooked()
952 let ch = next_chr(s); in parse_lit_char()
/dports/net-im/fractal/fractal-4.4.0/vendor/syn-0.15.44/src/
H A Dlit.rs719 fn next_chr(s: &str) -> char { in next_chr() function
765 let ch = next_chr(s); in parse_lit_str_cooked()
781 let ch = next_chr(s); in parse_lit_str_cooked()
952 let ch = next_chr(s); in parse_lit_char()
/dports/security/cloak/cloak-0.2.0/cargo-crates/syn-0.15.32/src/
H A Dlit.rs716 fn next_chr(s: &str) -> char { in next_chr() function
762 let ch = next_chr(s); in parse_lit_str_cooked()
778 let ch = next_chr(s); in parse_lit_str_cooked()
949 let ch = next_chr(s); in parse_lit_char()
/dports/multimedia/scte35dump/scte35dump-0.1.6/cargo-crates/syn-0.14.9/src/
H A Dlit.rs640 fn next_chr(s: &str) -> char { in next_chr() function
686 let ch = next_chr(s); in parse_lit_str_cooked()
702 let ch = next_chr(s); in parse_lit_str_cooked()
873 let ch = next_chr(s); in parse_lit_char()
/dports/multimedia/scte35dump/scte35dump-0.1.6/cargo-crates/syn-0.15.39/src/
H A Dlit.rs716 fn next_chr(s: &str) -> char { in next_chr() function
762 let ch = next_chr(s); in parse_lit_str_cooked()
778 let ch = next_chr(s); in parse_lit_str_cooked()
949 let ch = next_chr(s); in parse_lit_char()
/dports/multimedia/termplay/termplay-2.0.6/cargo-crates/syn-0.15.44/src/
H A Dlit.rs719 fn next_chr(s: &str) -> char { in next_chr() function
765 let ch = next_chr(s); in parse_lit_str_cooked()
781 let ch = next_chr(s); in parse_lit_str_cooked()
952 let ch = next_chr(s); in parse_lit_char()

12345678