HomeSort by relevance Sort by last modified time
    Searched refs:clist (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/annotation-tools/annotation-file-utilities/src/annotator/specification/
IndexFileSpecification.java 141 CriterionList clist = new CriterionList(); local
145 parsePackage(clist, entry.getKey(), entry.getValue());
154 parsePackage(clist, key.substring(0, key.length()-13), clazz);
156 parseClass(clist, key, clazz);
162 private void parsePackage(CriterionList clist, String packageName, AElement element) {
165 CriterionList packageClist = clist.add(Criteria.packageDecl(packageName));
174 private void parseClass(CriterionList clist, String className, AClass clazz) {
202 CriterionList clistSansClass = clist;
204 clist = clist.add(Criteria.inClass(className, true))
    [all...]
  /external/jline/src/src/main/java/jline/
SimpleCompletor.java 96 public int complete(final String buffer, final int cursor, final List clist) {
116 clist.add(can);
119 if (clist.size() == 1) {
120 clist.set(0, ((String) clist.get(0)) + " ");
125 return (clist.size() == 0) ? (-1) : 0;
  /external/fio/
cgroup.c 51 struct flist_head *clist)
74 flist_add_tail(&cm->list, clist);
78 void cgroup_kill(struct flist_head *clist)
88 flist_for_each_safe(n, tmp, clist) {
147 int cgroup_setup(struct thread_data *td, struct flist_head *clist, char **mnt)
170 add_cgroup(td, root, clist);
  /external/selinux/python/chcat/
chcat 127 clist = translate(con)
128 if sensitivity != clist[0]:
131 if len(clist) > 1:
132 if cat in clist[1:]:
135 clist.append(cat)
136 cats = clist[1:]
206 clist = translate(con)
207 if sensitivity != clist[0]:
211 if len(clist) > 1:
212 if cat not in clist[1:]
    [all...]
  /libcore/ojluni/src/test/java/time/tck/java/time/chrono/
TCKChronoLocalDate.java 117 for (Chronology[] clist : data_of_calendars()) {
118 Chronology chrono2 = clist[0];
140 for (Chronology[] clist : data_of_calendars()) {
141 Chronology chrono2 = clist[0];
163 for (Chronology[] clist : data_of_calendars()) {
164 Chronology chrono2 = clist[0];
186 for (Chronology[] clist : data_of_calendars()) {
187 Chronology chrono2 = clist[0];
210 for (Chronology[] clist : data_of_calendars()) {
211 Chronology chrono2 = clist[0]
    [all...]
TCKChronoLocalDateTime.java 117 for (Chronology[] clist : data_of_calendars()) {
118 Chronology chrono2 = clist[0];
141 for (Chronology[] clist : data_of_calendars()) {
142 Chronology chrono2 = clist[0];
165 for (Chronology[] clist : data_of_calendars()) {
166 Chronology chrono2 = clist[0];
189 for (Chronology[] clist : data_of_calendars()) {
190 Chronology chrono2 = clist[0];
213 for (Chronology[] clist : data_of_calendars()) {
214 Chronology chrono2 = clist[0]
    [all...]
TCKChronoZonedDateTime.java 119 for (Chronology[] clist : data_of_calendars()) {
120 Chronology chrono2 = clist[0];
142 for (Chronology[] clist : data_of_calendars()) {
143 Chronology chrono2 = clist[0];
166 for (Chronology[] clist : data_of_calendars()) {
167 Chronology chrono2 = clist[0];
190 for (Chronology[] clist : data_of_calendars()) {
191 Chronology chrono2 = clist[0];
214 for (Chronology[] clist : data_of_calendars()) {
215 Chronology chrono2 = clist[0]
    [all...]
  /external/curl/lib/
cookie.c 377 struct Cookie *clist; local
842 clist = c->cookies;
844 while(clist) {
845 if(strcasecompare(clist->name, co->name)) {
848 if(clist->domain && co->domain) {
849 if(strcasecompare(clist->domain, co->domain) &&
850 (clist->tailmatch == co->tailmatch))
854 else if(!clist->domain && !co->domain)
860 if(clist->spath && co->spath) {
861 if(strcasecompare(clist->spath, co->spath))
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/compiler/
astgen.py 133 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/python/cpython2/Tools/compiler/
astgen.py 133 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)
  /system/core/toolbox/upstream-netbsd/bin/dd/
args.c 338 } clist[] = { variable in typeref:struct:conv
367 if (!(cp = bsearch(&tmp, clist,
368 __arraycount(clist), sizeof(*clist), c_conv))) {
  /external/selinux/mcstrans/src/
mcscolor.c 43 static setab_t *clist[N_COLOR]; variable
55 cur = clist[i];
62 clist[i] = cend[i] = NULL;
126 setab_t *ptr = clist[idx];
169 clist[idx] = cptr;
  /external/devlib/devlib/module/
cgroups.py 27 def __init__(self, kind, hid, clist):
37 :param clist: the list of controller mounted in the same hierarchy
38 :type clist: list(str)
43 self.clist = clist
49 self.kind, self.hid, self.clist)
70 .format(','.join(self.clist),
  /external/toybox/toys/pending/
syslogd.c 85 static char *dec(int val, CODE *clist, char *buf)
87 for (; clist->c_name; clist++)
88 if (val == clist->c_val) return clist->c_name;
  /frameworks/base/services/core/java/com/android/server/am/
ActiveServices.java 1404 ArrayList<ConnectionRecord> clist = sr.connections.valueAt(conni); local
1613 ArrayList<ConnectionRecord> clist = s.connections.get(binder); local
1713 ArrayList<ConnectionRecord> clist = r.connections.valueAt(conni); local
1747 ArrayList<ConnectionRecord> clist = mServiceConnections.get(binder); local
2831 ArrayList<ConnectionRecord> clist = s.connections.get(binder); local
3849 ArrayList<ConnectionRecord> clist = r.connections.valueAt(conni); local
    [all...]
  /external/iptables/iptables/
nft-shared.h 249 struct nftnl_chain_list *clist);
250 void (*chain_del)(struct nftnl_chain_list *clist, const char *curtable,
xtables-restore.c 175 static void chain_delete(struct nftnl_chain_list *clist, const char *curtable,
180 chain_obj = nft_chain_list_find(clist, curtable, chain);
  /external/javassist/src/main/javassist/compiler/
MemberCodeGen.java 1117 CtClass[] clist; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
pstats.py 416 clist = call_dict.keys()
417 clist.sort()
419 for func in clist:
  /external/python/cpython2/Lib/
pstats.py 408 clist = call_dict.keys()
409 clist.sort()
411 for func in clist:
  /external/tensorflow/tensorflow/python/framework/
meta_graph.py 597 clist = collection_list
599 clist = graph.get_all_collection_keys()
601 for ctype in clist:
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
pstats.py 408 clist = call_dict.keys()
409 clist.sort()
411 for func in clist:
  /prebuilts/gdb/linux-x86/lib/python2.7/
pstats.py 408 clist = call_dict.keys()
409 clist.sort()
411 for func in clist:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pstats.py 408 clist = call_dict.keys()
409 clist.sort()
411 for func in clist:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pstats.py 408 clist = call_dict.keys()
409 clist.sort()
411 for func in clist:

Completed in 657 milliseconds

1 2 3