/third_party/alsa-lib/alsalisp/ |
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/ |
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() 147 if (!strcmp(str, alist->name)) return alist->idx; in string_to_idx() 153 struct arglist *alist; in idx_to_string() local 156 for (alist = list; alist->name; alist++) in idx_to_string() 157 if (idx == alist->idx) return alist->name; in idx_to_string() 236 struct arglist **alist; in getlist() local [all …]
|
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/ |
D | checksrc.pl | 40 my @alist; 141 push @alist, $1; 218 push @alist, $1; 278 for my $r (@alist) {
|
/third_party/python/Lib/test/ |
D | test_weakref.py | 731 alist = [] 737 alist.append(self.c) 746 alist.append("C went away") 750 self.assertEqual(alist, []) # del isn't enough to reclaim anything 757 self.assertEqual(alist, ["C went away"]) 761 del alist[:] 763 self.assertEqual(alist, []) 769 alist = [] 771 alist.append("safe_callback called") 775 alist.append("cb called") [all …]
|
D | test_gc.py | 384 def __init__(self, alist): argument 385 self[:] = alist 520 alist = [1, 3, 5] 521 got = gc.get_referents(alist) 523 self.assertEqual(got, alist) 525 atuple = tuple(alist) 528 self.assertEqual(got, alist)
|
D | test_xmlrpc.py | 28 alist = [{'astring': 'foo@bar.baz.spam', variable 49 dump = xmlrpclib.dumps((alist,)) 51 self.assertEqual(alist, load[0][0]) 181 value = alist + [None] 182 arg1 = (alist + [None],)
|
/third_party/skia/third_party/externals/freetype/src/tools/ |
D | glnames.py | 5196 def filter_glyph_names( alist, filter ): argument 5202 for name in alist:
|
/third_party/ltp/testcases/kernel/fs/fsstress/ |
D | fsstress.c | 1474 attrlist_t *alist; in attr_remove_f() local 1496 alist = (attrlist_t *) buf; in attr_remove_f() 1497 total += alist->al_count; in attr_remove_f() 1498 } while (alist->al_more); in attr_remove_f() 1516 alist = (attrlist_t *) buf; in attr_remove_f() 1517 if (which < ent + alist->al_count) { in attr_remove_f() 1519 & buf[alist->al_offset[which - ent]]; in attr_remove_f() 1523 ent += alist->al_count; in attr_remove_f() 1524 } while (alist->al_more); in attr_remove_f()
|
/third_party/python/Lib/logging/ |
D | config.py | 100 def _strip_spaces(alist): argument 101 return map(str.strip, alist)
|
/third_party/lwip/src/netif/ppp/ |
D | auth.c | 2333 struct wordlist *ap, *addr_list, *alist, **app; 2428 app = &alist; 2449 addr_list = alist;
|
/third_party/python/Tools/unicode/ |
D | makeunicodedata.py | 645 aword, alist = a 646 return -len(alist), aword
|
/third_party/python/Doc/library/ |
D | dis.rst | 30 def myfunc(alist): 31 return len(alist) 38 2 LOAD_FAST 0 (alist)
|
/third_party/ffmpeg/doc/ |
D | developer.texi | 247 (c-offsets-alist
|
/third_party/python/Doc/reference/ |
D | datamodel.rst | 712 a built-in method is ``alist.append()``, assuming *alist* is a list object. In 714 denoted by *alist*.
|
/third_party/chromium/patch/ |
D | 0001-cve.patch | 120211 - alist = string.split(alias[1],',') 120213 + alist = alias[1].split(',') 120214 for comp in alist:
|