Home
last modified time | relevance | path

Searched refs:is_pchar (Results 1 – 25 of 48) sorted by relevance

12

/dports/security/vaultwarden/Rocket-263e39b5b429de1913ce7e3036575a7b4d88b6d7/core/http/src/parse/uri/
H A Dparser.rs5 use crate::parse::uri::tables::{is_reg_name_char, is_pchar, is_pchar_or_rchar};
33 (peek(b'/')?, path_and_query(is_pchar)?).1 in origin()
93 peek(b'[') => Host::Bracketed(delimited(b'[', is_pchar, b']')?), in authority()
119 let path_and_query = pear_try!(path_and_query(is_pchar)); in absolute()
122 eat(b':') => (None, Some(path_and_query(is_pchar)?)), in absolute()
171 let query = pear_try!(eat(b'?') => take_while(is_pchar)?); in absolute_or_authority()
H A Dtables.rs33 pub fn is_pchar(c: u8) -> bool { in is_pchar() function
H A Dmod.rs11 pub use self::tables::is_pchar;
/dports/textproc/p5-Unicode-LineBreak/Unicode-LineBreak-2019.001/sombok/lib/
H A Dutils.c111 #define is_pchar(str, i) \ macro
219 if (is_pchar(str, i)) { /* FIXME:path-noscheme not concerned */ in linebreak_prep_URIBREAK()
221 while (is_pchar(str, i)) in linebreak_prep_URIBREAK()
234 if (is_pchar(str, i)) { in linebreak_prep_URIBREAK()
236 while (is_pchar(str, i)) in linebreak_prep_URIBREAK()
246 while (is(str, i, '/') || is_pchar(str, i)) in linebreak_prep_URIBREAK()
256 while (is(str, i, '/') || is(str, i, '?') || is_pchar(str, i)) in linebreak_prep_URIBREAK()
264 while (is(str, i, '/') || is(str, i, '?') || is_pchar(str, i)) in linebreak_prep_URIBREAK()
/dports/security/vaultwarden/Rocket-263e39b5b429de1913ce7e3036575a7b4d88b6d7/core/http/src/uri/
H A Dencoding.rs7 use crate::parse::uri::is_pchar;
21 !is_pchar(byte) || byte == b'%' in contains()
28 (!is_pchar(byte) && (byte != b'?')) || byte == b'%' || byte == b'+' in contains()
H A Dorigin.rs343 if !path.starts_with('/') || !path.bytes().all(crate::parse::uri::is_pchar) { in map_path()
/dports/lang/erlang-runtime21/otp-OTP-21.3.8.24/lib/stdlib/src/
H A Duri_string.erl605 case is_pchar(Char) of
637 -spec is_pchar(char()) -> boolean().
638 is_pchar($%) -> true; % pct-encoded function
639 is_pchar($:) -> true; function
640 is_pchar($@) -> true; function
641 is_pchar(Char) -> is_unreserved(Char) orelse is_sub_delim(Char). function
735 case is_pchar(Char) of
1058 is_query(Char) -> is_pchar(Char).
1084 is_fragment(Char) -> is_pchar(Char).
1416 is_path(Char) -> is_pchar(Char).
/dports/lang/erlang-runtime22/otp-OTP-22.3.4.24/lib/stdlib/src/
H A Duri_string.erl659 case is_pchar(Char) of
691 -spec is_pchar(char()) -> boolean().
692 is_pchar($%) -> true; % pct-encoded function
693 is_pchar($:) -> true; function
694 is_pchar($@) -> true; function
695 is_pchar(Char) -> is_unreserved(Char) orelse is_sub_delim(Char). function
789 case is_pchar(Char) of
1112 is_query(Char) -> is_pchar(Char).
1138 is_fragment(Char) -> is_pchar(Char).
1470 is_path(Char) -> is_pchar(Char).
/dports/lang/erlang-runtime23/otp-OTP-23.3.4.10/lib/stdlib/src/
H A Duri_string.erl725 case is_pchar(Char) of
757 -spec is_pchar(char()) -> boolean().
758 is_pchar($%) -> true; % pct-encoded function
759 is_pchar($:) -> true; function
760 is_pchar($@) -> true; function
761 is_pchar(Char) -> is_unreserved(Char) orelse is_sub_delim(Char). function
855 case is_pchar(Char) of
1178 is_query(Char) -> is_pchar(Char).
1204 is_fragment(Char) -> is_pchar(Char).
1569 is_path(Char) -> is_pchar(Char).
/dports/lang/erlang-wx/otp-OTP-24.1.7/lib/stdlib/src/
H A Duri_string.erl725 case is_pchar(Char) of
757 -spec is_pchar(char()) -> boolean().
758 is_pchar($%) -> true; % pct-encoded function
759 is_pchar($:) -> true; function
760 is_pchar($@) -> true; function
761 is_pchar(Char) -> is_unreserved(Char) orelse is_sub_delim(Char). function
855 case is_pchar(Char) of
1178 is_query(Char) -> is_pchar(Char).
1204 is_fragment(Char) -> is_pchar(Char).
1569 is_path(Char) -> is_pchar(Char).
/dports/lang/erlang-runtime24/otp-OTP-24.1.7/lib/stdlib/src/
H A Duri_string.erl725 case is_pchar(Char) of
757 -spec is_pchar(char()) -> boolean().
758 is_pchar($%) -> true; % pct-encoded function
759 is_pchar($:) -> true; function
760 is_pchar($@) -> true; function
761 is_pchar(Char) -> is_unreserved(Char) orelse is_sub_delim(Char). function
855 case is_pchar(Char) of
1178 is_query(Char) -> is_pchar(Char).
1204 is_fragment(Char) -> is_pchar(Char).
1569 is_path(Char) -> is_pchar(Char).
/dports/lang/erlang/otp-OTP-24.1.7/lib/stdlib/src/
H A Duri_string.erl725 case is_pchar(Char) of
757 -spec is_pchar(char()) -> boolean().
758 is_pchar($%) -> true; % pct-encoded function
759 is_pchar($:) -> true; function
760 is_pchar($@) -> true; function
761 is_pchar(Char) -> is_unreserved(Char) orelse is_sub_delim(Char). function
855 case is_pchar(Char) of
1178 is_query(Char) -> is_pchar(Char).
1204 is_fragment(Char) -> is_pchar(Char).
1569 is_path(Char) -> is_pchar(Char).
/dports/lang/erlang-java/otp-OTP-24.1.7/lib/stdlib/src/
H A Duri_string.erl725 case is_pchar(Char) of
757 -spec is_pchar(char()) -> boolean().
758 is_pchar($%) -> true; % pct-encoded function
759 is_pchar($:) -> true; function
760 is_pchar($@) -> true; function
761 is_pchar(Char) -> is_unreserved(Char) orelse is_sub_delim(Char). function
855 case is_pchar(Char) of
1178 is_query(Char) -> is_pchar(Char).
1204 is_fragment(Char) -> is_pchar(Char).
1569 is_path(Char) -> is_pchar(Char).
/dports/www/trafficserver/trafficserver-9.1.1/src/tscore/
H A DCompileParseRules.cc86 if (ParseRules::is_pchar(&cc)) { in main()
/dports/editors/fpc-ide/fpc-3.2.2/compiler/
H A Ddefcmp.pas743 if is_pchar(def_from) then
1286 (is_pchar(def_to) or is_pwidechar(def_to)) then
1298 if is_pchar(def_to) and
1320 (is_pchar(def_to) or is_pwidechar(def_to)) then
1399 (is_pchar(def_to) or is_pwidechar(def_to)) then
1403 is_pchar(def_to)) then
1476 if is_pchar(def_from) or
H A Ddefutil.pas215 function is_pchar(p : tdef) : boolean; in is_pchar() function
518 is_pchar(def) or
927 function is_pchar(p : tdef) : boolean; in is_pchar() function
929 is_pchar:=(p.typ=pointerdef) and
H A Dnadd.pas1907 ((is_pchar(ld) or (lt=niln)) and is_chararray(rd) and (rt<>stringconstn)) or
1908 ((is_pchar(rd) or (rt=niln)) and is_chararray(ld) and (lt<>stringconstn))
2020 ((is_pchar(rd) or is_chararray(rd) or is_char(rd) or is_open_chararray(rd) or
2022 (is_pchar(ld) or is_chararray(ld) or is_char(ld) or is_open_chararray(ld) or
2048is_pchar(rd) or (is_chararray(rd) and (rd.size > 255)) or is_open_chararray(rd) or (lt = stringcon…
2049is_pchar(ld) or (is_chararray(ld) and (ld.size > 255)) or is_open_chararray(ld) or (rt = stringcon…
2295 …(not (is_pchar(ld) or is_chararray(ld) or is_open_chararray(ld) or is_widechar(ld) or is_widechara…
2328 …(not (is_pchar(ld) or is_chararray(ld) or is_open_chararray(ld) or is_widechar(ld) or is_widechara…
3721 else if is_pchar(ld) then
H A Dobjcdef.pas214 if is_pchar(def) then
/dports/lang/fpc-source/fpc-3.2.2/compiler/
H A Ddefcmp.pas743 if is_pchar(def_from) then
1286 (is_pchar(def_to) or is_pwidechar(def_to)) then
1298 if is_pchar(def_to) and
1320 (is_pchar(def_to) or is_pwidechar(def_to)) then
1399 (is_pchar(def_to) or is_pwidechar(def_to)) then
1403 is_pchar(def_to)) then
1476 if is_pchar(def_from) or
H A Ddefutil.pas215 function is_pchar(p : tdef) : boolean; in is_pchar() function
518 is_pchar(def) or
927 function is_pchar(p : tdef) : boolean; in is_pchar() function
929 is_pchar:=(p.typ=pointerdef) and
H A Dnadd.pas1907 ((is_pchar(ld) or (lt=niln)) and is_chararray(rd) and (rt<>stringconstn)) or
1908 ((is_pchar(rd) or (rt=niln)) and is_chararray(ld) and (lt<>stringconstn))
2020 ((is_pchar(rd) or is_chararray(rd) or is_char(rd) or is_open_chararray(rd) or
2022 (is_pchar(ld) or is_chararray(ld) or is_char(ld) or is_open_chararray(ld) or
2048is_pchar(rd) or (is_chararray(rd) and (rd.size > 255)) or is_open_chararray(rd) or (lt = stringcon…
2049is_pchar(ld) or (is_chararray(ld) and (ld.size > 255)) or is_open_chararray(ld) or (rt = stringcon…
2295 …(not (is_pchar(ld) or is_chararray(ld) or is_open_chararray(ld) or is_widechar(ld) or is_widechara…
2328 …(not (is_pchar(ld) or is_chararray(ld) or is_open_chararray(ld) or is_widechar(ld) or is_widechara…
3721 else if is_pchar(ld) then
/dports/lang/fpc/fpc-3.2.2/compiler/
H A Ddefcmp.pas743 if is_pchar(def_from) then
1286 (is_pchar(def_to) or is_pwidechar(def_to)) then
1298 if is_pchar(def_to) and
1320 (is_pchar(def_to) or is_pwidechar(def_to)) then
1399 (is_pchar(def_to) or is_pwidechar(def_to)) then
1403 is_pchar(def_to)) then
1476 if is_pchar(def_from) or
H A Ddefutil.pas215 function is_pchar(p : tdef) : boolean; in is_pchar() function
518 is_pchar(def) or
927 function is_pchar(p : tdef) : boolean; in is_pchar() function
929 is_pchar:=(p.typ=pointerdef) and
H A Dnadd.pas1907 ((is_pchar(ld) or (lt=niln)) and is_chararray(rd) and (rt<>stringconstn)) or
1908 ((is_pchar(rd) or (rt=niln)) and is_chararray(ld) and (lt<>stringconstn))
2020 ((is_pchar(rd) or is_chararray(rd) or is_char(rd) or is_open_chararray(rd) or
2022 (is_pchar(ld) or is_chararray(ld) or is_char(ld) or is_open_chararray(ld) or
2048is_pchar(rd) or (is_chararray(rd) and (rd.size > 255)) or is_open_chararray(rd) or (lt = stringcon…
2049is_pchar(ld) or (is_chararray(ld) and (ld.size > 255)) or is_open_chararray(ld) or (rt = stringcon…
2295 …(not (is_pchar(ld) or is_chararray(ld) or is_open_chararray(ld) or is_widechar(ld) or is_widechara…
2328 …(not (is_pchar(ld) or is_chararray(ld) or is_open_chararray(ld) or is_widechar(ld) or is_widechara…
3721 else if is_pchar(ld) then
/dports/www/trafficserver/trafficserver-9.1.1/include/tscore/
H A DParseRules.h142 static CTypeResult is_pchar(const char *seq); // uchar,:,@,&,=,+ (see code)
485 ParseRules::is_pchar(const char *seq) in is_pchar() function

12