Home
last modified time | relevance | path

Searched refs:tokenlen (Results 1 – 3 of 3) sorted by relevance

/external/curl/lib/
Dnoproxy.c177 size_t tokenlen = 0; in Curl_check_noproxy() local
188 tokenlen++; in Curl_check_noproxy()
191 if(tokenlen) { in Curl_check_noproxy()
195 if(token[tokenlen - 1] == '.') in Curl_check_noproxy()
196 tokenlen--; in Curl_check_noproxy()
198 if(tokenlen && (*token == '.')) { in Curl_check_noproxy()
201 tokenlen--; in Curl_check_noproxy()
207 if(tokenlen == namelen) in Curl_check_noproxy()
210 else if(tokenlen < namelen) { in Curl_check_noproxy()
212 match = (name[namelen - tokenlen - 1] == '.') && in Curl_check_noproxy()
[all …]
/external/ply/ply/ply/
Dcpp.py347 tokenlen = len(tokenlist)
351 while (i < tokenlen) and (tokenlist[i].type in self.t_WS):
354 if (i < tokenlen) and (tokenlist[i].value == '('):
362 while i < tokenlen:
/external/python/pycparser/pycparser/ply/
Dcpp.py345 tokenlen = len(tokenlist)
349 while (i < tokenlen) and (tokenlist[i].type in self.t_WS):
352 if (i < tokenlen) and (tokenlist[i].value == '('):
360 while i < tokenlen: