Searched refs:next_token (Results 1 - 15 of 15) sorted by relevance

/macosx-10.10.1/OpenSSH-189/openssh/openbsd-compat/
H A Drealpath.c59 char left[PATH_MAX], next_token[PATH_MAX], symlink[PATH_MAX]; local
93 if (s - left >= sizeof(next_token)) {
97 memcpy(next_token, left, s - left);
98 next_token[s - left] = '\0';
110 if (next_token[0] == '\0')
112 else if (strcmp(next_token, ".") == 0)
114 else if (strcmp(next_token, "..") == 0) {
133 resolved_len = strlcat(resolved, next_token, PATH_MAX);
/macosx-10.10.1/Libc-1044.1.2/stdlib/FreeBSD/
H A Drealpath.c89 char left[PATH_MAX], next_token[PATH_MAX], symlink[PATH_MAX]; local
175 if (s - left >= sizeof(next_token)) {
179 memcpy(next_token, left, s - left);
180 next_token[s - left] = '\0';
192 if (next_token[0] == '\0')
194 else if (strcmp(next_token, ".") == 0)
196 else if (strcmp(next_token, "..") == 0) {
212 * the the appended next_token, and replace with the
222 resolved_len = strlcat(resolved, next_token, PATH_MAX);
/macosx-10.10.1/swig-12/Source/CParse/
H A Dcscanner.c466 static int next_token = 0; variable
468 next_token = tok;
494 if (next_token) {
495 l = next_token;
496 next_token = 0;
/macosx-10.10.1/bind9-45.101/bind9/bin/dig/
H A Ddig.c703 cmd = next_token(&ptr,"=");
1346 ptr = next_token(&value,":"); /* hmac type or name */
1350 ptr2 = next_token(&value, ":"); /* name or secret */
1353 ptr3 = next_token(&value,":"); /* secret or NULL */
1494 bargv[bargc] = next_token(&input, " \t\r\n");
1499 next_token(&input, " \t\r\n");
1668 bargv[bargc] = next_token(&input, " \t\r\n");
1671 bargv[bargc] = next_token(&input, " \t\r\n");
1738 bargv[bargc] = next_token(&input, " \t\r\n");
1741 bargv[bargc] = next_token(
[all...]
H A Dnslookup.c730 ptr = next_token(&input, " \t\r\n");
733 arg = next_token(&input, " \t\r\n");
H A Ddighost.c379 next_token(char **stringp, const char *delim) { function
/macosx-10.10.1/bind9-45.101/bind9/bin/named/unix/
H A Dos.c915 next_token(char **stringp, const char *delim) { function
935 ptr = next_token(&input, " \t");
939 ptr = next_token(&input, " \t");
/macosx-10.10.1/IOHIDFamily-606.1.7/IOHIDFamily/
H A DIOHIDLibUserClient.cpp1500 u_int next_token = (token < kIOHIDLibUserClientQueueTokenOffset) ? local
1506 queue = getQueueForToken(++next_token);
1508 while ((next_token < fQueueMap->getCount() + kIOHIDLibUserClientQueueTokenOffset) && (queue == NULL));
1510 if (next_token >= fQueueMap->getCount() + kIOHIDLibUserClientQueueTokenOffset)
1511 next_token = 0;
1513 return next_token;
/macosx-10.10.1/ruby-106/ruby/lib/racc/
H A Dparser.rb115 # It's yyparse() of yacc, and Racc::Parser#next_token is yylex().
122 # It does not use Racc::Parser#next_token, instead it gets tokens from any iterator.
242 # The entry point of the parser. This method is used with #next_token.
243 # If Racc wants to get token (and its value), calls next_token.
254 # def next_token
262 # If you use #do_parse method, you must implement #next_token.
269 def next_token method in class:Racc.Parser
270 raise NotImplementedError, "#{self.class}\#next_token is not defined"
287 tok, @racc_val = next_token()
/macosx-10.10.1/bind9-45.101/bind9/bin/dig/include/dig/
H A Ddig.h405 next_token(char **stringp, const char *delim);
/macosx-10.10.1/bind9-45.101/bind9/bin/named/
H A Dserver.c5794 next_token(char **stringp, const char *delim) { function
5829 ptr = next_token(&input, " \t");
5834 zonetxt = next_token(&input, " \t");
5841 classtxt = next_token(&input, " \t");
5844 viewtxt = next_token(&input, " \t");
6355 ptr = next_token(&args, " \t");
6386 ptr = next_token(&args, " \t");
6390 ptr = next_token(&args, " \t");
6394 ptr = next_token(&args, " \t");
6398 ptr = next_token(
[all...]
/macosx-10.10.1/ruby-106/ruby/lib/rdoc/rd/
H A Dblock_parser.rb108 def next_token # :nodoc: method in class:RDoc.BlockParser
184 self.next_token()
H A Dinline_parser.rb107 def next_token method in class:RDoc.InlineParser
/macosx-10.10.1/CPANInternal-159.1/Perl-Tidy-20121207/lib/Perl/
H A DTidy.pm14236 $next_nonblank_type, $next_token, $next_type, $total_nesting_depth,
14258 $next_token = $tokens_to_go[$i_next];
14988 my $next_token = $tokens_to_go[ $i + 1 ];
18416 my $next_token = $tokens_to_go[ $i_test + 1 ];
27272 my $next_token = $$rtokens[$i]; # first token after ?
27333 my $next_token = $$rtokens[$i]; # first token after slash
27413 my $next_token = shift;
27423 if ( $line =~ /^$next_token$/ ) {
27424 $msg .= " -- found target $next_token ahead $k lines\n";
27435 $msg .= " -- must be shift; target $next_token no
[all...]
/macosx-10.10.1/ruby-106/ruby/lib/net/
H A Dimap.rb3225 @token = next_token
3234 def next_token method in class:ResponseParser

Completed in 339 milliseconds