Home
last modified time | relevance | path

Searched refs:is_unreserved (Results 1 – 25 of 32) sorted by relevance

12

/dports/audio/re/re-0.5.8/src/uri/
H A Duric.c41 static bool is_unreserved(char c) in is_unreserved() function
85 return is_unreserved(c) || is_user_unreserved(c); in is_user()
100 return is_unreserved(c); in is_password()
125 return is_param_unreserved(c) || is_unreserved(c); in is_paramchar()
131 return is_hnv_unreserved(c) || is_unreserved(c); in is_hvalue()
/dports/sysutils/fusefs-curlftpfs/curlftpfs-0.9.2/
H A Dpath_utils.c109 int is_unreserved = is_locase_alpha in is_unreserved_rfc3986() local
114 return is_unreserved; in is_unreserved_rfc3986()
117 static inline int is_unreserved(char c) in is_unreserved() function
142 if (is_unreserved (c)) in path_to_uri()
/dports/net/opentracker/opentracker-0.2017.08.13/
H A Dscan_urlencoded_query.c35 static const unsigned char is_unreserved[256] = { variable
61 while( ( f = is_unreserved[ *s++ ] ) & SCAN_SEARCHPATH_VALUE ); in scan_urlencoded_skipvalue()
95 while( is_unreserved[ c = *s++ ] & flags ) { in scan_urlencoded_query()
/dports/devel/cpprestsdk/cpprestsdk-2.10.16/Release/src/uri/
H A Duri.cpp36 inline bool is_unreserved(int c) in is_unreserved() function
103 inline bool is_user_info_character(int c) { return is_unreserved(c) || is_sub_delim(c) || c == '%' … in is_user_info_character()
115 …return is_unreserved(c) || is_sub_delim(c) || c == '%' || c == '@' || c == ':' || c == '[' || c ==… in is_authority_character()
128 return is_unreserved(c) || is_sub_delim(c) || c == '%' || c == '/' || c == ':' || c == '@'; in is_path_character()
596 return details::encode_impl(raw, [](int ch) -> bool { return !details::is_unreserved(ch); }); in encode_data_string()
629 …raw_utf8, [](int ch) -> bool { return !details::is_unreserved(ch) && !details::is_reserved(ch); }); in encode_uri()
/dports/editors/libreoffice/libreoffice-7.2.6.2/forms/source/xforms/submission/
H A Dserialization_urlencoded.cxx54 bool CSerializationURLEncoded::is_unreserved(char c) in is_unreserved() function in CSerializationURLEncoded
83 if ( is_unreserved(*pString) ) { in encode_and_append()
H A Dserialization_urlencoded.hxx37 static bool is_unreserved(char);
/dports/editors/libreoffice6/libreoffice-6.4.7.2/forms/source/xforms/submission/
H A Dserialization_urlencoded.cxx54 bool CSerializationURLEncoded::is_unreserved(sal_Char c) in is_unreserved() function in CSerializationURLEncoded
82 if ( is_unreserved(*pString) ) { in encode_and_append()
H A Dserialization_urlencoded.hxx34 static bool is_unreserved(sal_Char);
/dports/www/trafficserver/trafficserver-9.1.1/include/tscore/
H A DParseRules.h122 static CTypeResult is_unreserved(char c); // alpha,digit,safe,extra,nat.
406 ParseRules::is_unreserved(char c) in is_unreserved() function
478 return (is_unreserved(seq[0]) || is_escape(seq)); in is_uchar()
493 if (is_unreserved(*seq)) in is_pchar()
/dports/lang/erlang-runtime23/otp-OTP-23.3.4.10/lib/stdlib/src/
H A Duri_string.erl482 Unreserved = lists:filter(fun is_unreserved/1, Input),
761 is_pchar(Char) -> is_unreserved(Char) orelse is_sub_delim(Char).
911 is_userinfo(Char) -> is_unreserved(Char) orelse is_sub_delim(Char).
1267 -spec is_unreserved(char()) -> boolean().
1268 is_unreserved($-) -> true; function
1269 is_unreserved($.) -> true; function
1270 is_unreserved($_) -> true; function
1271 is_unreserved($~) -> true; function
1272 is_unreserved(Char) -> is_alpha(Char) orelse is_digit(Char). function
1497 case is_unreserved(B) of
[all …]
/dports/lang/erlang-wx/otp-OTP-24.1.7/lib/stdlib/src/
H A Duri_string.erl482 Unreserved = lists:filter(fun is_unreserved/1, Input),
761 is_pchar(Char) -> is_unreserved(Char) orelse is_sub_delim(Char).
911 is_userinfo(Char) -> is_unreserved(Char) orelse is_sub_delim(Char).
1267 -spec is_unreserved(char()) -> boolean().
1268 is_unreserved($-) -> true; function
1269 is_unreserved($.) -> true; function
1270 is_unreserved($_) -> true; function
1271 is_unreserved($~) -> true; function
1272 is_unreserved(Char) -> is_alpha(Char) orelse is_digit(Char). function
1497 case is_unreserved(B) of
[all …]
/dports/lang/erlang-runtime24/otp-OTP-24.1.7/lib/stdlib/src/
H A Duri_string.erl482 Unreserved = lists:filter(fun is_unreserved/1, Input),
761 is_pchar(Char) -> is_unreserved(Char) orelse is_sub_delim(Char).
911 is_userinfo(Char) -> is_unreserved(Char) orelse is_sub_delim(Char).
1267 -spec is_unreserved(char()) -> boolean().
1268 is_unreserved($-) -> true; function
1269 is_unreserved($.) -> true; function
1270 is_unreserved($_) -> true; function
1271 is_unreserved($~) -> true; function
1272 is_unreserved(Char) -> is_alpha(Char) orelse is_digit(Char). function
1497 case is_unreserved(B) of
[all …]
/dports/lang/erlang/otp-OTP-24.1.7/lib/stdlib/src/
H A Duri_string.erl482 Unreserved = lists:filter(fun is_unreserved/1, Input),
761 is_pchar(Char) -> is_unreserved(Char) orelse is_sub_delim(Char).
911 is_userinfo(Char) -> is_unreserved(Char) orelse is_sub_delim(Char).
1267 -spec is_unreserved(char()) -> boolean().
1268 is_unreserved($-) -> true; function
1269 is_unreserved($.) -> true; function
1270 is_unreserved($_) -> true; function
1271 is_unreserved($~) -> true; function
1272 is_unreserved(Char) -> is_alpha(Char) orelse is_digit(Char). function
1497 case is_unreserved(B) of
[all …]
/dports/lang/erlang-java/otp-OTP-24.1.7/lib/stdlib/src/
H A Duri_string.erl482 Unreserved = lists:filter(fun is_unreserved/1, Input),
761 is_pchar(Char) -> is_unreserved(Char) orelse is_sub_delim(Char).
911 is_userinfo(Char) -> is_unreserved(Char) orelse is_sub_delim(Char).
1267 -spec is_unreserved(char()) -> boolean().
1268 is_unreserved($-) -> true; function
1269 is_unreserved($.) -> true; function
1270 is_unreserved($_) -> true; function
1271 is_unreserved($~) -> true; function
1272 is_unreserved(Char) -> is_alpha(Char) orelse is_digit(Char). function
1497 case is_unreserved(B) of
[all …]
/dports/textproc/p5-Unicode-LineBreak/Unicode-LineBreak-2019.001/sombok/lib/
H A Dutils.c100 #define is_unreserved(str, i) \ macro
198 is_unreserved(str, i) || is_pct_encoded(str, i) || in linebreak_prep_URIBREAK()
204 is_unreserved(str, i) || is_pct_encoded(str, i) || in linebreak_prep_URIBREAK()
/dports/lang/erlang-runtime21/otp-OTP-21.3.8.24/lib/stdlib/src/
H A Duri_string.erl641 is_pchar(Char) -> is_unreserved(Char) orelse is_sub_delim(Char).
647 is_segment_nz_nc(Char) -> is_unreserved(Char) orelse is_sub_delim(Char).
791 is_userinfo(Char) -> is_unreserved(Char) orelse is_sub_delim(Char).
896 is_reg_name(Char) -> is_unreserved(Char) orelse is_sub_delim(Char).
1147 -spec is_unreserved(char()) -> boolean().
1148 is_unreserved($-) -> true; function
1149 is_unreserved($.) -> true; function
1150 is_unreserved($_) -> true; function
1151 is_unreserved($~) -> true; function
1152 is_unreserved(Char) -> is_alpha(Char) orelse is_digit(Char). function
[all …]
/dports/lang/erlang-runtime22/otp-OTP-22.3.4.24/lib/stdlib/src/
H A Duri_string.erl695 is_pchar(Char) -> is_unreserved(Char) orelse is_sub_delim(Char).
701 is_segment_nz_nc(Char) -> is_unreserved(Char) orelse is_sub_delim(Char).
845 is_userinfo(Char) -> is_unreserved(Char) orelse is_sub_delim(Char).
950 is_reg_name(Char) -> is_unreserved(Char) orelse is_sub_delim(Char).
1201 -spec is_unreserved(char()) -> boolean().
1202 is_unreserved($-) -> true; function
1203 is_unreserved($.) -> true; function
1204 is_unreserved($_) -> true; function
1205 is_unreserved($~) -> true; function
1206 is_unreserved(Char) -> is_alpha(Char) orelse is_digit(Char). function
[all …]
/dports/www/trafficserver/trafficserver-9.1.1/src/tscore/
H A DCompileParseRules.cc104 if (ParseRules::is_unreserved(c)) { in main()
/dports/devel/upnp/pupnp-release-1.14.12/upnp/src/genlib/net/uri/
H A Duri.c98 int is_unreserved( in is_unreserved() function
177 (is_unreserved(in[i]) || is_reserved(in[i]) || in parse_uric()
/dports/java/java-subversion/subversion-1.14.1/subversion/mod_dav_svn/
H A Ddav_svn.h605 int is_unreserved,
H A Dversion.c446 int is_unreserved, in dav_svn__checkout() argument
581 if (is_unreserved) in dav_svn__checkout()
/dports/devel/py-subversion/subversion-1.14.1/subversion/mod_dav_svn/
H A Ddav_svn.h605 int is_unreserved,
H A Dversion.c446 int is_unreserved, in dav_svn__checkout() argument
581 if (is_unreserved) in dav_svn__checkout()
/dports/security/subversion-gnome-keyring/subversion-1.14.1/subversion/mod_dav_svn/
H A Ddav_svn.h605 int is_unreserved,
/dports/devel/p5-subversion/subversion-1.14.1/subversion/mod_dav_svn/
H A Ddav_svn.h605 int is_unreserved,

12