Home
last modified time | relevance | path

Searched refs:clist (Results 1 – 17 of 17) sorted by relevance

/external/curl/lib/
Dcookie.c442 struct Cookie *clist; in Curl_cookie_add() local
965 clist = c->cookies[myhash]; in Curl_cookie_add()
967 while(clist) { in Curl_cookie_add()
968 if(strcasecompare(clist->name, co->name)) { in Curl_cookie_add()
971 if(clist->domain && co->domain) { in Curl_cookie_add()
972 if(strcasecompare(clist->domain, co->domain) && in Curl_cookie_add()
973 (clist->tailmatch == co->tailmatch)) in Curl_cookie_add()
977 else if(!clist->domain && !co->domain) in Curl_cookie_add()
983 if(clist->spath && co->spath) { in Curl_cookie_add()
984 if(clist->secure && !co->secure && !secure) { in Curl_cookie_add()
[all …]
/external/selinux/python/chcat/
Dchcat121 clist = translate(con)
122 if sensitivity != clist[0]:
125 if len(clist) > 1:
126 if cat in clist[1:]:
129 clist.append(cat)
130 cats = clist[1:]
202 clist = translate(con)
203 if sensitivity != clist[0]:
207 if len(clist) > 1:
208 if cat not in clist[1:]:
[all …]
/external/jline/src/src/main/java/jline/
DSimpleCompletor.java96 public int complete(final String buffer, final int cursor, final List clist) { in complete() argument
116 clist.add(can); in complete()
119 if (clist.size() == 1) { in complete()
120 clist.set(0, ((String) clist.get(0)) + " "); in complete()
125 return (clist.size() == 0) ? (-1) : 0; in complete()
/external/python/cpython2/Tools/compiler/
Dastgen.py133 clist = COMMA.join(["self.%s" % c
136 print >> buf, " return %s," % clist
138 print >> buf, " return %s" % clist
159 clist = ["self.%s" % c
162 if len(clist) == 0:
164 elif len(clist) == 1:
165 print >> buf, " return %s," % clist[0]
167 print >> buf, " return %s" % COMMA.join(clist)
/external/pcre/dist2/src/
Dpcre2_script_run.c257 const uint8_t *clist, *rlist; in PRIV() local
348 for (clist = list; *clist != 0; clist++) in PRIV()
350 if (*rlist == *clist) in PRIV()
/external/selinux/mcstrans/src/
Dmcscolor.c43 static setab_t *clist[N_COLOR]; variable
55 cur = clist[i]; in finish_context_colors()
62 clist[i] = cend[i] = NULL; in finish_context_colors()
126 setab_t *ptr = clist[idx]; in find_color()
169 clist[idx] = cptr; in add_secolor()
/external/toybox/toys/pending/
Dsyslogd.c85 static char *dec(int val, CODE *clist, char *buf) in dec() argument
87 for (; clist->c_name; clist++) in dec()
88 if (val == clist->c_val) return clist->c_name; in dec()
/external/python/cpython2/Lib/
Dpstats.py408 clist = call_dict.keys()
409 clist.sort()
411 for func in clist:
/external/tensorflow/tensorflow/python/framework/
Dmeta_graph.py590 clist = collection_list
592 clist = graph.get_all_collection_keys()
594 for ctype in clist:
/external/python/cpython3/Lib/
Dpstats.py426 clist = sorted(call_dict.keys())
428 for func in clist:
/external/pcre/dist2/testdata/
Dtestoutput53006 clist 03a3 03c2 03c3
3020 clist 03a3 03c2 03c3
3028 not clist 03a3 03c2 03c3
3036 clist 03a3 03c2 03c3 ++
3044 not clist 03a3 03c2 03c3 ++
3053 clist 03a3 03c2 03c3
3061 clist 03a3 03c2 03c3 ++
3070 clist 03a3 03c2 03c3 *
3071 clist 03a3 03c2 03c3
3104 clist 03a3 03c2 03c3 *
[all …]
Dtestoutput12-161355 clist 03a3 03c2 03c3
Dtestoutput12-321349 clist 03a3 03c2 03c3
Dtestoutput101518 clist 03a3 03c2 03c3
/external/nist-sip/java/gov/nist/javax/sip/message/
DSIPMessage.java985 ContactList clist = this.getContactHeaders(); in getContactHeader() local
986 if (clist != null) { in getContactHeader()
987 return (Contact) clist.getFirst(); in getContactHeader()
/external/curl/packages/vms/
Dsetup_gnv_curl_build.com61 $ clist = "/list/show=(expan,includ)"
/external/iptables/iptables/
Dnft.c3335 struct nftnl_chain_list *clist; in nft_is_table_compatible() local
3337 clist = nft_chain_list_get(h, table, chain); in nft_is_table_compatible()
3338 if (clist == NULL) in nft_is_table_compatible()
3341 if (nftnl_chain_list_foreach(clist, nft_is_chain_compatible, h)) in nft_is_table_compatible()