Searched refs:alist (Results 1 - 12 of 12) sorted by relevance
/third_party/alsa-lib/alsalisp/ |
H A D | hello.lisp | 20 (setq alist '((one . first) (two . second) (three . third))) 21 (princ "alist = " alist "\n") 22 (princ "alist assoc one = " (assoc 'one alist) "\n") 23 (princ "alist rassoc third = " (rassoc 'third alist) "\n") 24 (unsetq alist)
|
/third_party/toybox/toys/pending/ |
H A D | ip.c | 130 struct arglist *alist; in substring_to_idx() local 136 for (alist = list; alist->name; alist++) in substring_to_idx() 137 if (!memcmp(str, alist->name, len)) return alist->idx; in substring_to_idx() 143 struct arglist *alist; in string_to_idx() local 146 for (alist = list; alist->name; alist in string_to_idx() 153 struct arglist *alist; idx_to_string() local 236 struct arglist **alist; getlist() local 306 struct arglist **alist; namefromRPDB() local 325 struct arglist **alist; idxfromRPDB() local [all...] |
H A D | route.c | 175 struct _arglist *alist; in get_action() local 178 for (alist = list; alist->arg; alist++) { //find the given parameter in list in get_action() 179 if (!strcmp(**argv, alist->arg)) { in get_action() 181 return alist->action; in get_action()
|
/third_party/curl/scripts/ |
H A D | checksrc.pl | 40 my @alist; 142 push @alist, $1; 219 push @alist, $1; 279 for my $r (@alist) {
|
/third_party/python/Lib/test/ |
H A D | test_weakref.py | 715 alist = [] 721 alist.append(self.c) 730 alist.append("C went away") 734 self.assertEqual(alist, []) # del isn't enough to reclaim anything 741 self.assertEqual(alist, ["C went away"]) 745 del alist[:] 747 self.assertEqual(alist, []) 753 alist = [] 755 alist.append("safe_callback called") 759 alist [all...] |
H A D | test_gc.py | 452 def __init__(self, alist): 453 self[:] = alist 588 alist = [1, 3, 5] 589 got = gc.get_referents(alist) 591 self.assertEqual(got, alist) 593 atuple = tuple(alist) 596 self.assertEqual(got, alist)
|
H A D | test_xmlrpc.py | 30 alist = [{'astring': 'foo@bar.baz.spam', variable 51 dump = xmlrpclib.dumps((alist,)) 53 self.assertEqual(alist, load[0][0]) 183 value = alist + [None] 184 arg1 = (alist + [None],)
|
/third_party/skia/third_party/externals/freetype/src/tools/ |
H A D | glnames.py | 5196 def filter_glyph_names( alist, filter ): 5197 """filter `alist' by taking _out_ all glyph names that are in `filter'""" 5202 for name in alist:
|
/third_party/ltp/testcases/kernel/fs/fsstress/ |
H A D | fsstress.c | 1475 attrlist_t *alist; in attr_remove_f() local 1497 alist = (attrlist_t *) buf; in attr_remove_f() 1498 total += alist->al_count; in attr_remove_f() 1499 } while (alist->al_more); in attr_remove_f() 1517 alist = (attrlist_t *) buf; in attr_remove_f() 1518 if (which < ent + alist->al_count) { in attr_remove_f() 1520 & buf[alist->al_offset[which - ent]]; in attr_remove_f() 1524 ent += alist->al_count; in attr_remove_f() 1525 } while (alist->al_more); in attr_remove_f()
|
/third_party/python/Lib/logging/ |
H A D | config.py | 110 def _strip_spaces(alist): 111 return map(str.strip, alist)
|
/third_party/python/Tools/unicode/ |
H A D | makeunicodedata.py | 645 aword, alist = a 646 return -len(alist), aword
|
/third_party/lwip/src/netif/ppp/ |
H A D | auth.c | 2333 struct wordlist *ap, *addr_list, *alist, **app; 2428 app = &alist; 2449 addr_list = alist;
|
Completed in 20 milliseconds