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

1 2 3 4 5 6 7 8 91011>>

  /system/core/libdiskconfig/
write_lst.c 51 wlist_add(struct write_list **lst, struct write_list *item)
53 item->next = (*lst);
54 *lst = item;
59 wlist_free(struct write_list *lst)
62 while (lst) {
63 temp_wr = lst->next;
64 free_wl(lst);
65 lst = temp_wr;
70 wlist_commit(int fd, struct write_list *lst, int test)
72 for(; lst; lst = lst->next)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/crashers/
mutation_inside_cyclegc.py 19 del lst[:]
25 lst = [str(i)]
30 while lst:
31 keepalive.append(lst[:])
borrowed_ref_2.py 32 lst = [None] * 1000000 variable
37 lst[i] = c.g # consume the free list of instancemethod objects
  /external/python/cpython2/Lib/test/crashers/
mutation_inside_cyclegc.py 19 del lst[:]
25 lst = [str(i)]
30 while lst:
31 keepalive.append(lst[:])
borrowed_ref_2.py 32 lst = [None] * 1000000 variable
37 lst[i] = c.g # consume the free list of instancemethod objects
  /external/python/cpython3/Lib/test/crashers/
mutation_inside_cyclegc.py 19 del lst[:]
25 lst = [str(i)]
30 while lst:
31 keepalive.append(lst[:])
  /prebuilts/misc/common/swig/include/2.0.11/chicken/
swigclosprefix.scm 17 (let ((getter (let search-get ((lst slot))
18 (if (null? lst)
20 (if (eq? (car lst) ':swig-get)
21 (cadr lst)
22 (search-get (cdr lst))))))
23 (setter (let search-set ((lst slot))
24 (if (null? lst)
26 (if (eq? (car lst) ':swig-set)
27 (cadr lst)
28 (search-set (cdr lst)))))))
    [all...]
  /external/fonttools/Lib/fontTools/
merge.py 35 def equal(lst):
36 lst = list(lst)
37 t = iter(lst)
39 assert all(item == first for item in t), "Expected all items to be equal: %s" % lst
42 def first(lst):
43 return next(iter(lst))
45 def recalculate(lst):
48 def current_time(lst):
51 def bitwise_and(lst)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/json/tests/
test_check_circular.py 14 lst = []
15 lst.append(lst)
16 self.assertRaises(ValueError, self.dumps, lst)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/json/tests/
test_check_circular.py 14 lst = []
15 lst.append(lst)
16 self.assertRaises(ValueError, self.dumps, lst)
  /external/python/cpython2/Demo/turtle/
tdemo_tree.py 28 lst = []
34 lst.append(p)
35 lst.append(q)
36 for x in tree(lst, l*f, a, f):
  /external/python/cpython2/Lib/json/tests/
test_check_circular.py 14 lst = []
15 lst.append(lst)
16 self.assertRaises(ValueError, self.dumps, lst)
  /external/python/cpython3/Lib/turtledemo/
tree.py 28 lst = []
34 lst.append(p)
35 lst.append(q)
36 for x in tree(lst, l*f, a, f):
  /external/syslinux/mbr/
Makefile 27 $(CC) $(MAKEDEPS) $(SFLAGS) -Wa,-a=$*.lst -c -o $@ $<
30 $(CC) $(MAKEDEPS) $(SFLAGS) -Wa,-a=$*_c.lst -DCTRL_80 -c -o $@ $<
33 $(CC) $(MAKEDEPS) $(SFLAGS) -Wa,-a=$*_f.lst -DFORCE_80 -c -o $@ $<
50 rm -f *.o *.elf *.lst .*.d
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/tests/
test_check_circular.py 14 lst = []
15 lst.append(lst)
16 self.assertRaises(ValueError, self.dumps, lst)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/tests/
test_check_circular.py 14 lst = []
15 lst.append(lst)
16 self.assertRaises(ValueError, self.dumps, lst)
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/rx/
make-d 20 # Utility to create *.d files from *.lst files. Not normally needed.
24 next unless $f =~ /\.lst/;
25 $f =~ s@\.lst@@;
32 open (I, "/tmp/lsts/$f.lst");
  /external/skia/tools/skqp/
gn_to_bp.py 157 def strip_slashes(lst):
158 return {str(p.lstrip('/')) for p in lst}
189 def bpfmt(indent, lst, sort=True):
191 lst = sorted(lst)
192 return ('\n' + ' '*indent).join('"%s",' % v for v in lst)
  /external/skqp/tools/skqp/
gn_to_bp.py 159 def strip_slashes(lst):
160 return {str(p.lstrip('/')) for p in lst}
191 def bpfmt(indent, lst, sort=True):
193 lst = sorted(lst)
194 return ('\n' + ' '*indent).join('"%s",' % v for v in lst)
  /art/test/004-ReferenceMap/
build 24 ${DX} -JXmx256m --debug --dex --dump-to=classes.lst --output=classes.dex \
  /art/test/004-StackWalk/
build 24 ${DX} -JXmx256m --debug --dex --dump-to=classes.lst --output=classes.dex \
  /art/test/022-interface/
build 26 ${DX} --debug --dex --dump-to=classes.lst --output=classes.dex classes
  /art/test/023-many-interfaces/
build 33 ${DX} --debug --dex --dump-to=classes.lst --output=classes.dex classes
  /external/scapy/scapy/modules/
voip.py 48 def voip_play(s1, lst=None, **kargs):
56 :param lst: (optional) A list of packets to load
58 :type lst: list
65 >>> voip_play("64.2.142.189", lst)
87 if lst is None:
90 for p in lst:
96 def voip_play1(s1, lst=None, **kargs):
99 return voip_play(s1, lst, **kargs)
133 def voip_play3(lst=None,**kargs):
146 if lst is None
    [all...]
  /external/syslinux/com32/gfxboot/
Makefile 28 $(NASM) -f bin -O99 -o $*.tmp -l $*.lst $<
36 $(NASM) -f bin -O99 -o $*.tmp -l $*.lst $<
45 rm -f *.o *.lo *.a *.lst .*.d *.tmp

Completed in 337 milliseconds

1 2 3 4 5 6 7 8 91011>>