Home
last modified time | relevance | path

Searched refs:next_sep (Results 1 – 25 of 61) sorted by relevance

123

/dports/devel/sentry-cli/sentry-cli-1.71.0/cargo-crates/joinery-2.1.0/src/
H A Diter.rs226 next_sep: bool, field
235 next_sep: false, in new()
260 self.next_sep in is_sep_next()
289 let next_sep = self.next_sep; in peek() localVariable
292 if next_sep { in peek()
348 next_sep: self.next_sep, in clone()
355 self.next_sep = source.next_sep; in clone_from()
368 } else if next_sep { in join_size()
388 let next_sep = &mut self.next_sep; in next() localVariable
390 if *next_sep { in next()
[all …]
/dports/textproc/angle-grinder/angle-grinder-0.18.0/cargo-crates/joinery-2.1.0/src/
H A Diter.rs226 next_sep: bool, field
235 next_sep: false, in new()
260 self.next_sep in is_sep_next()
289 let next_sep = self.next_sep; in peek() localVariable
292 if next_sep { in peek()
348 next_sep: self.next_sep, in clone()
355 self.next_sep = source.next_sep; in clone_from()
368 } else if next_sep { in join_size()
388 let next_sep = &mut self.next_sep; in next() localVariable
390 if *next_sep { in next()
[all …]
/dports/security/tor-devel/tor-0.4.7.2-alpha/src/lib/fs/
H A Dpath.c390 int next_sep);
421 int i, prev_sep = -1, next_sep = -1; in get_glob_paths() local
430 prev_sep = next_sep; in get_glob_paths()
431 next_sep = i; // next_sep+1 is start of next fragment or end of string in get_glob_paths()
453 smartlist_t *unglobbed_paths = unglob(pattern, prev_sep, next_sep); in get_glob_paths()
462 &pattern[next_sep+1]); in get_glob_paths()
491 unglob_win32(const char *pattern, int prev_sep, int next_sep) in unglob_win32() argument
509 char *path_curr_glob = tor_strndup(pattern, next_sep + 1); in unglob_win32()
683 unglob_opened_files(const char *pattern, int prev_sep, int next_sep) in unglob_opened_files() argument
688 if (has_glob(&pattern[next_sep+1])) { in unglob_opened_files()
[all …]
/dports/security/tor/tor-0.4.6.8/src/lib/fs/
H A Dpath.c390 int next_sep);
421 int i, prev_sep = -1, next_sep = -1; in get_glob_paths() local
430 prev_sep = next_sep; in get_glob_paths()
431 next_sep = i; // next_sep+1 is start of next fragment or end of string in get_glob_paths()
453 smartlist_t *unglobbed_paths = unglob(pattern, prev_sep, next_sep); in get_glob_paths()
462 &pattern[next_sep+1]); in get_glob_paths()
491 unglob_win32(const char *pattern, int prev_sep, int next_sep) in unglob_win32() argument
509 char *path_curr_glob = tor_strndup(pattern, next_sep + 1); in unglob_win32()
683 unglob_opened_files(const char *pattern, int prev_sep, int next_sep) in unglob_opened_files() argument
688 if (has_glob(&pattern[next_sep+1])) { in unglob_opened_files()
[all …]
/dports/multimedia/gstreamer1/gstreamer-1.16.2/gst/
H A Dgsturi.c1308 for (next_sep = strcasestr (elem, pct_sep); next_sep; in _gst_uri_string_to_list()
1309 next_sep = strcasestr (next_sep + 1, pct_sep)) { in _gst_uri_string_to_list()
1311 memmove (next_sep + 1, next_sep + pct_sep_len, in _gst_uri_string_to_list()
1360 for (next_sep = strcasestr (part, pct_part_sep); next_sep; in _gst_uri_string_to_table()
1361 next_sep = strcasestr (next_sep + 1, pct_part_sep)) { in _gst_uri_string_to_table()
1363 memmove (next_sep + 1, next_sep + 3, strlen (next_sep + 3) + 1); in _gst_uri_string_to_table()
1388 for (next_sep = strcasestr (key, pct_kv_sep); next_sep; in _gst_uri_string_to_table()
1389 next_sep = strcasestr (next_sep + 1, pct_kv_sep)) { in _gst_uri_string_to_table()
1391 memmove (next_sep + 1, next_sep + 3, strlen (next_sep + 3) + 1); in _gst_uri_string_to_table()
1395 next_sep = strcasestr (next_sep + 1, pct_kv_sep)) { in _gst_uri_string_to_table()
[all …]
/dports/devel/gdb/gdb-11.1/gdb/nat/
H A Dfork-inferior.c114 std::size_t next_sep = args_copy.find_first_of (" \t\n", cur_pos); in init_for_no_shell() local
116 if (next_sep == std::string::npos) in init_for_no_shell()
120 next_sep = args_copy.size (); in init_for_no_shell()
125 args_copy[next_sep++] = '\0'; in init_for_no_shell()
130 cur_pos = next_sep; in init_for_no_shell()
/dports/net/tightvnc/vnc_unixsrc/Xvnc/config/util/
H A Dmkdirhier.c42 next_sep(char *path) in next_sep() function
64 while (next = next_sep(prev)) { in main()
/dports/audio/sweep/sweep-0.9.3/plugins/ladspa/
H A Dladspameta.c761 char * next_sep=NULL; in ladspa_meta_init() local
775 next_sep = strchr (ladspa_path, ':'); in ladspa_meta_init()
776 if (next_sep != NULL) *next_sep = '\0'; in ladspa_meta_init()
780 if (next_sep != NULL) ladspa_path = ++next_sep; in ladspa_meta_init()
782 } while ((next_sep != NULL) && (*next_sep != '\0')); in ladspa_meta_init()
/dports/shells/fish/fish-3.3.1/src/
H A Dwcstringutil.cpp270 size_t next_sep = val.find_first_of(seps, pos); in split_string_tok() local
271 if (next_sep == wcstring::npos) { in split_string_tok()
272 next_sep = end; in split_string_tok()
274 out.emplace_back(val, pos, next_sep - pos); in split_string_tok()
277 pos = next_sep + 1; in split_string_tok()
/dports/devel/boost-docs/boost_1_72_0/boost/property_tree/
H A Dstring_path.hpp210 s_iter next_sep = std::find(m_start, m_value.end(), m_separator); in reduce() local
211 String part(m_start, next_sep); in reduce()
212 m_start = next_sep; in reduce()
/dports/math/pdal/PDAL-2.3.0/vendor/pdalboost/boost/property_tree/
H A Dstring_path.hpp210 s_iter next_sep = std::find(m_start, m_value.end(), m_separator); in reduce() local
211 String part(m_start, next_sep); in reduce()
212 m_start = next_sep; in reduce()
/dports/devel/R-cran-BH/BH/inst/include/boost/property_tree/
H A Dstring_path.hpp210 s_iter next_sep = std::find(m_start, m_value.end(), m_separator); in reduce() local
211 String part(m_start, next_sep); in reduce()
212 m_start = next_sep; in reduce()
/dports/games/frogatto/frogatto-1.3.1/MacOSJet/boost/include/boost/property_tree/
H A Dstring_path.hpp207 s_iter next_sep = std::find(m_start, m_value.end(), m_separator); in reduce() local
208 String part(m_start, next_sep); in reduce()
209 m_start = next_sep; in reduce()
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/boost/property_tree/
H A Dstring_path.hpp210 s_iter next_sep = std::find(m_start, m_value.end(), m_separator); in reduce() local
211 String part(m_start, next_sep); in reduce()
212 m_start = next_sep; in reduce()
/dports/math/stanmath/math-4.2.0/lib/boost_1.75.0/boost/property_tree/
H A Dstring_path.hpp210 s_iter next_sep = std::find(m_start, m_value.end(), m_separator); in reduce() local
211 String part(m_start, next_sep); in reduce()
212 m_start = next_sep; in reduce()
/dports/science/py-scipy/scipy-1.7.1/scipy/_lib/boost/boost/property_tree/
H A Dstring_path.hpp210 s_iter next_sep = std::find(m_start, m_value.end(), m_separator); in reduce() local
211 String part(m_start, next_sep); in reduce()
212 m_start = next_sep; in reduce()
/dports/databases/percona57-server/boost_1_59_0/boost/property_tree/
H A Dstring_path.hpp210 s_iter next_sep = std::find(m_start, m_value.end(), m_separator); in reduce() local
211 String part(m_start, next_sep); in reduce()
212 m_start = next_sep; in reduce()
/dports/databases/xtrabackup/boost_1_59_0/boost/property_tree/
H A Dstring_path.hpp210 s_iter next_sep = std::find(m_start, m_value.end(), m_separator); in reduce() local
211 String part(m_start, next_sep); in reduce()
212 m_start = next_sep; in reduce()
/dports/math/deal.ii/dealii-803d21ff957e349b3799cd3ef2c840bc78734305/bundled/boost-1.70.0/include/boost/property_tree/
H A Dstring_path.hpp210 s_iter next_sep = std::find(m_start, m_value.end(), m_separator); in reduce() local
211 String part(m_start, next_sep); in reduce()
212 m_start = next_sep; in reduce()
/dports/databases/percona57-client/boost_1_59_0/boost/property_tree/
H A Dstring_path.hpp210 s_iter next_sep = std::find(m_start, m_value.end(), m_separator); in reduce() local
211 String part(m_start, next_sep); in reduce()
212 m_start = next_sep; in reduce()
/dports/security/keybase/client-v5.7.1/shared/ios/Pods/boost-for-react-native/boost/property_tree/
H A Dstring_path.hpp210 s_iter next_sep = std::find(m_start, m_value.end(), m_separator); in reduce() local
211 String part(m_start, next_sep); in reduce()
212 m_start = next_sep; in reduce()
/dports/devel/boost-libs/boost_1_72_0/boost/property_tree/
H A Dstring_path.hpp210 s_iter next_sep = std::find(m_start, m_value.end(), m_separator); in reduce() local
211 String part(m_start, next_sep); in reduce()
212 m_start = next_sep; in reduce()
/dports/devel/boost-python-libs/boost_1_72_0/boost/property_tree/
H A Dstring_path.hpp210 s_iter next_sep = std::find(m_start, m_value.end(), m_separator); in reduce() local
211 String part(m_start, next_sep); in reduce()
212 m_start = next_sep; in reduce()
/dports/databases/mysqlwsrep57-server/boost_1_59_0/boost/property_tree/
H A Dstring_path.hpp210 s_iter next_sep = std::find(m_start, m_value.end(), m_separator); in reduce() local
211 String part(m_start, next_sep); in reduce()
212 m_start = next_sep; in reduce()
/dports/databases/mysql57-client/mysql-5.7.36/boost/boost_1_59_0/boost/property_tree/
H A Dstring_path.hpp210 s_iter next_sep = std::find(m_start, m_value.end(), m_separator); in reduce() local
211 String part(m_start, next_sep); in reduce()
212 m_start = next_sep; in reduce()

123